Codebase list virt-viewer / 1dc7765
New upstream release. Debian Janitor 2 years ago
279 changed file(s) with 46181 addition(s) and 41688 deletion(s). Raw diff Collapse all Expand all
1010
1111 With additional patches & translations from:
1212
13 Aleksei Nikiforov <darktemplar@basealt.ru>
14 Andrea Bolognani <abologna@redhat.com>
15 Ben Mathews <beniam@yahoo.com>
1316 Charles Arnold <carnold@suse.com>
1417 Christophe Fergeau <cfergeau@redhat.com>
1518 Christophe de Dinechin <cdupontd@redhat.com>
1922 Doug Goldstein <cardoe@cardoe.com>
2023 Eduardo Lima (Etrunko) <etrunko@redhat.com>
2124 Fabiano Fidêncio <fidencio@redhat.com>
25 Francesco Giudici <fgiudici@redhat.com>
2226 Frediano Ziglio <fziglio@redhat.com>
2327 Guannan Ren <gren@redhat.com>
2428 Guido Günther <agx@sigxcpu.org>
2529 Hans de Goede <hdegoede@redhat.com>
2630 Jiri Denemark <Jiri.Denemark@gmail.com>
2731 Jonathon Jongsma <jjongsma@redhat.com>
32 Julien ROPE <jrope@redhat.com>
33 Julien Ropé <jrope@redhat.com>
2834 Ján Tomko <jtomko@redhat.com>
35 Kevin Pouget <kpouget@redhat.com>
2936 Lukas Venhoda <lvenhoda@redhat.com>
3037 Lukáš Venhoda <lvenhoda@redhat.com>
3138 Marc-André Lureau <marcandre.lureau@redhat.com>
3239 Martin Kletzander <mkletzan@redhat.com>
3340 Michal Privoznik <mprivozn@redhat.com>
41 Paul Donohue <virt-tools@PaulSD.com>
3442 Pavel Grunt <pgrunt@redhat.com>
3543 Pavel Hrdina <phrdina@redhat.com>
44 Pavel Moseev <mars@altlinux.org>
3645 Pavel Raiskup <praiskup@redhat.com>
46 Qiu Wenbo <qiuwenbo@kylinos.com.cn>
3747 Rex Dieter <rdieter@math.unl.edu>
3848 Richard W.M. Jones <rjones@redhat.com>
3949 Ronnie Sahlberg <ronniesahlberg@gmail.com>
0 2020-05-01 Daniel P. Berrangé <berrange@redhat.com>
1
2 Update NEWS for 9.0 release
3
4 2020-04-09 Ján Tomko <jtomko@redhat.com>
5
6 README: prefer https over http
7
8 2020-04-03 Daniel P. Berrangé <berrange@redhat.com>
9
10 gitlab: introduce minimal CI job for checking DCO signoff
11
12 docs: update to point users to gitlab.com project
13 The project primary git repo has moved from pagure.io to
14 gitlab.com/virt-viewer/virt-viewer. We want users to submit
15 code contributions, bug reports and support questions to the
16 gitlab project, not the mailing list, nor bugzilla, nor the
17 virt-manager.org site.
18
19 We're still using virt-manager.org for hosting downloads of
20 source and pagure.io for MSIs, but we'll aim to change that
21 too.
22
23 2020-04-03 Julien Ropé <jrope@redhat.com>
24
25 Fix potential file descriptor leaks found by Coverity.
26 The error code returned by virt_viewer_session_open_fd() and
27 virt_viewer_session_channel_open_fd() were not checked. The file
28 descriptor passed to them could then be left opened even if the function
29 failed, causing a leak of resources.
30
31 This was reported by a Coverity scan, logged under
32 https://bugzilla.redhat.com/show_bug.cgi?id=1655792
33
34 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
35
36 2020-02-19 Julien ROPE <jrope@redhat.com>
37
38 remote-viewer: add a default extension to screenshot filenames
39 When doing a screenshot, if the user provides a filename without a file
40 extension, an error occurs because the image format could not be determined.
41 This patch adds a .png extension to such filenames, so that there is a default
42 file format for screenshots.
43
44 Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1752514
45
46 Reviewed-by: Victor Toso <victortoso@redhat.com>
47
48 2020-02-07 Julien Ropé <jrope@redhat.com>
49
50 Remember monitor mapping on close.
51 When the application is stopped, if the windows are in fullscreen, their
52 position on the client will be remembered.
53
54 This change uses the existing option 'monitor-mapping' in the settings
55 file to save the position and reuse it on next launch.
56
57 This implements part of the requirement from
58 https://bugzilla.redhat.com/show_bug.cgi?id=1179070
59
60 NOTE: this feature is effective only with GTK >= 3.22
61
62 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
63
64 2020-01-17 Francesco Giudici <fgiudici@redhat.com>
65
66 remote-viewer: add handler for SIGINT signal
67 When remote-viewer is started from terminal, CTRL-C sends a SIGINT
68 signal to the program causing immediate termination. On linux clients
69 usb redirected devices are left without any kernel driver attached,
70 causing them to appear as no more available to the host.
71 Add a SIGINT handler to allow a clean exit, in particular to allow
72 the kernel to attach back the host driver.
73 The issue is present on linux only.
74
75 To perform usb device redirection, virt-viewer leverages spice-gtk
76 library, which in turn relies on usbredir library, which uses libusb.
77 In order to take control of the usb device the auto-loaded kernel
78 driver must be detached. This is achieved (in the very end) with
79 libusb_detach_kernel_driver(). Then the device interfaces can be claimed
80 with libusb_claim_interface() and get in control to the application.
81 During normal application termination, the usb channel is teared down,
82 performing a reset of the usb device and giving back the control of the
83 device to the kernel (libusb_attach_kernel_driver()).
84 If the application quits without doing this, the device interfaces will
85 end up with no driver attached, making them not usable in the host
86 system.
87
88 Note that enabling libusb_set_auto_detach_kernel_driver() does not solve
89 the issue, as this is just a convenient API from libusb: libusb will
90 take care of detaching/attaching the driver to the interfaces of the usb
91 device each time a call to libusb_release_interface() and
92 libusb_claim_interface() is performed. An unexpected quit of the
93 application will skip the libusb_release_interface() call too, leaving
94 the interfaces without any driver attached.
95
96 Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1713311
97
98 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
99
100 2019-12-16 Daniel P. Berrangé <berrange@redhat.com>
101
102 po: refresh translations from zanata
103
104 2019-10-11 Eduardo Lima (Etrunko) <etrunko@redhat.com>
105
106 remote-viewer: Prefer ca-cert from display instead of proxy
107 Since oVirt engine version 4.3.2.1, the API returns certificate data for
108 display connection in the VM XML, so users do not need to specify it
109 from the command line anymore. The certificate obtained from the XML
110 gets precedence over the one from the command line, which is still kept
111 to keep compatibility of older versions of oVirt.
112
113 Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1402909
114
115 2019-10-04 Victor Toso <me@victortoso.com>
116
117 remote-viewer: fix free on dangling pointer
118 On remote_viewer_session_connected() we are passing a dup of URI of
119 connection and freeing it afterwards. Problem is, we don't disconnect
120 from listening "session-connected" and on an eventual second emission
121 of this signal, remote-viewer crashes as seen in the backtrace below.
122
123 This can happen over switch-host migration message from
124 SpiceMainChannel.
125
126 A fix trying to use VirtViewerApp URI avoid the crash but introduces
127 regression while running remote-viewer with ovirt so, keeping the
128 changes to a minimum to avoid it, just use g_intern_string() for now.
129
130 Found it while improving migrate.py from spice/tests (server):
131 | Invalid free() / delete / delete[] / realloc()
132 | at 0x4839A0C: free (vg_replace_malloc.c:540)
133 | by 0x56EBD8C: g_free (in /usr/lib64/libglib-2.0.so.0.6000.6)
134 | by 0x11DED0: remote_viewer_session_connected (remote-viewer.c:658)
135 | by 0x564D741: g_closure_invoke (in /usr/lib64/libgobject-2.0.so.0.6000.6)
136 | by 0x56614F3: ??? (in /usr/lib64/libgobject-2.0.so.0.6000.6)
137 | by 0x566A34D: g_signal_emit_valist (in /usr/lib64/libgobject-2.0.so.0.6000.6)
138 | by 0x566AF68: g_signal_emit_by_name (in /usr/lib64/libgobject-2.0.so.0.6000.6)
139 | by 0x135E5D: virt_viewer_session_spice_main_channel_event (virt-viewer-session-spice.c:699)
140 | by 0x564D741: g_closure_invoke (in /usr/lib64/libgobject-2.0.so.0.6000.6)
141 | by 0x56614F3: ??? (in /usr/lib64/libgobject-2.0.so.0.6000.6)
142 | by 0x566A34D: g_signal_emit_valist (in /usr/lib64/libgobject-2.0.so.0.6000.6)
143 | by 0x53149E3: emit_main_context (gio-coroutine.c:198)
144 | Address 0x18f1ecc0 is 0 bytes inside a block of size 23 free'd
145 | at 0x4839A0C: free (vg_replace_malloc.c:540)
146 | by 0x56EBD8C: g_free (in /usr/lib64/libglib-2.0.so.0.6000.6)
147 | by 0x11DED0: remote_viewer_session_connected (remote-viewer.c:658)
148 | by 0x564D741: g_closure_invoke (in /usr/lib64/libgobject-2.0.so.0.6000.6)
149 | by 0x56614F3: ??? (in /usr/lib64/libgobject-2.0.so.0.6000.6)
150 | by 0x566A34D: g_signal_emit_valist (in /usr/lib64/libgobject-2.0.so.0.6000.6)
151 | by 0x566AF68: g_signal_emit_by_name (in /usr/lib64/libgobject-2.0.so.0.6000.6)
152 | by 0x135E5D: virt_viewer_session_spice_main_channel_event (virt-viewer-session-spice.c:699)
153 | by 0x564D741: g_closure_invoke (in /usr/lib64/libgobject-2.0.so.0.6000.6)
154 | by 0x56614F3: ??? (in /usr/lib64/libgobject-2.0.so.0.6000.6)
155 | by 0x566A34D: g_signal_emit_valist (in /usr/lib64/libgobject-2.0.so.0.6000.6)
156 | by 0x53149E3: emit_main_context (gio-coroutine.c:198)
157 | Block was alloc'd at
158 | at 0x483880B: malloc (vg_replace_malloc.c:309)
159 | by 0x56EBC98: g_malloc (in /usr/lib64/libglib-2.0.so.0.6000.6)
160 | by 0x5705C43: g_strdup (in /usr/lib64/libglib-2.0.so.0.6000.6)
161 | by 0x11EB80: remote_viewer_initial_connect (remote-viewer.c:696)
162 | by 0x11EB80: remote_viewer_start (remote-viewer.c:790)
163 | by 0x1250D3: virt_viewer_app_start (virt-viewer-app.c:1727)
164 | by 0x127108: virt_viewer_app_on_application_startup (virt-viewer-app.c:1870)
165 | by 0x564D741: g_closure_invoke (in /usr/lib64/libgobject-2.0.so.0.6000.6)
166 | by 0x5661638: ??? (in /usr/lib64/libgobject-2.0.so.0.6000.6)
167 | by 0x566A34D: g_signal_emit_valist (in /usr/lib64/libgobject-2.0.so.0.6000.6)
168 | by 0x566A972: g_signal_emit (in /usr/lib64/libgobject-2.0.so.0.6000.6)
169 | by 0x553ECA1: g_application_register (in /usr/lib64/libgio-2.0.so.0.6000.6)
170 | by 0x553F41D: g_application_run (in /usr/lib64/libgio-2.0.so.0.6000.6)
171
172 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
173
174 2019-08-30 Eduardo Lima (Etrunko) <etrunko@redhat.com>
175
176 ovirt-foreign-menu: Plug memory leak
177 Error caught by valgrind, the OvirtCollection object created in function
178 ovirt_foreign_menu_fetch_vm_async() was never freed.
179
180 433 (40 direct, 393 indirect) bytes in 1 blocks are definitely lost in loss record 16,708 of 17,677
181 at 0x5868FDF: g_type_create_instance (in /usr/lib64/libgobject-2.0.so.0.6000.6)
182 by 0x584B42C: ??? (in /usr/lib64/libgobject-2.0.so.0.6000.6)
183 by 0x584D347: g_object_new_valist (in /usr/lib64/libgobject-2.0.so.0.6000.6)
184 by 0x584D69C: g_object_new (in /usr/lib64/libgobject-2.0.so.0.6000.6)
185 by 0x558E823: ovirt_collection_new (ovirt-collection.c:304)
186 by 0x558E98C: ovirt_sub_collection_new_from_resource_search (ovirt-collection.c:375)
187 by 0x42D510: ovirt_foreign_menu_fetch_vm_async (ovirt-foreign-menu.c:994)
188 by 0x42D510: ovirt_foreign_menu_next_async_step (ovirt-foreign-menu.c:316)
189 by 0x42D70D: api_fetched_cb (ovirt-foreign-menu.c:1025)
190 by 0x570BC19: ??? (in /usr/lib64/libgio-2.0.so.0.6000.6)
191 by 0x570C7EC: ??? (in /usr/lib64/libgio-2.0.so.0.6000.6)
192 by 0x559005D: call_async_cb (ovirt-proxy.c:279)
193 by 0x55B5A07: ??? (in /usr/lib64/librest-0.7.so.0.0.0)
194
195 Acked-by: Victor Toso <victortoso@redhat.com>
196
197 2019-08-26 Eduardo Lima (Etrunko) <etrunko@redhat.com>
198
199 ovirt-foreign-menu: Factor out code to set file collection
200 Acked-by: Victor Toso <victortoso@redhat.com>
201
202 2019-08-21 Eduardo Lima (Etrunko) <etrunko@redhat.com>
203
204 ovirt-foreign-menu: Only set domain_valid once
205 In the case of having a valid storage domain without any ISO files, this
206 variable can be reset to FALSE again in the next iteration of the loop,
207 resulting in a misleading error message presented to the user.
208
209 Acked-by: Victor Toso <victortoso@redhat.com>
210
211 2019-08-15 Fabiano Fidêncio <fidencio@redhat.com>
212
213 ovirt-foreign-menu: Fix warnings on Rawhide
214 gmaovirt-foreign-menu.c: In function 'storage_domains_fetched_cb':
215 ovirt-foreign-menu.c:721:9: error: format not a string literal and no format arguments [-Werror=format-security]
216 721 | g_debug(msg);
217 | ^~~~~~~
218 ovirt-foreign-menu.c:722:9: error: format not a string literal and no format arguments [-Werror=format-security]
219 722 | g_task_return_new_error(task, OVIRT_ERROR, OVIRT_ERROR_FAILED, msg);
220 | ^~~~~~~~~~~~~~~~~~~~~~~
221 cc1: some warnings being treated as errors
222 gmake[3]: *** [Makefile:963: libvirt_viewer_la-ovirt-foreign-menu.lo] Error 1
223 gmake[2]: *** [Makefile:647: all] Error 2
224 gmake[1]: *** [Makefile:482: all-recursive] Error 1
225 make: *** [Makefile:410: all] Error 2
226 error: Bad exit status from /var/tmp/rpm-tmp.f14Lmj (%build)
227
228 Errors have been caught by https://ci.centos.org/job/virt-viewer-rpm/systems=libvirt-fedora-rawhide/589/
229
230 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
231
232 2019-08-12 Eduardo Lima (Etrunko) <etrunko@redhat.com>
233
234 ovirt-foreign-menu: Fix endpoint for storage domains query
235 Instead of fetching toplevel REST API query, we use the one relative
236 from the data center, which returns more detailed information,
237 especially the status of the storage domain.
238
239 This fixes https://bugzilla.redhat.com/show_bug.cgi?id=1427467
240
241 Acked-by: Victor Toso <victortoso@redhat.com>
242
243 2019-08-08 Kevin Pouget <kpouget@redhat.com>
244
245 virt-viewer-file-transfer-dialog: improve error message
246 This patch improves the error shown to the user when a file transfer
247 fails.
248
249 The previous behavior was to create a simple message dialog box, with
250 the error description and the full list of the files that failed to be
251 transferred. When the list of files was long, the dialog box would
252 grow bigger than the screen.
253
254 Now, the file list is inserted inside a scrollable widget, whose
255 height is limited to 170px.
256
257 NB: these two calls would be more adapted, but they require GTK >=
258 3.22:
259
260 > gtk_scrolled_window_set_max_content_height(GTK_SCROLLED_WINDOW(scrolled_window), 170);
261 > gtk_scrolled_window_set_propagate_natural_height(GTK_SCROLLED_WINDOW(scrolled_window), TRUE);
262
263 Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1496356
264
265 Acked-by: Victor Toso <victortoso@redhat.com>
266
267 2019-06-19 Michal Privoznik <mprivozn@redhat.com>
268
269 Introduce bash completion
270 With this change one can get list of domains on the command line:
271
272 $ virt-viewer -c qemu:///system <TAB><TAB>
273 dom1 dom2 ... domN
274
275 The list of domains is fetched using virsh, hence the dependency
276 on libvirt-client recorded in the spec file. I think it's fair
277 to assume that Linux hosts with virt-viewer will have virsh
278 available too. If they don't, nothing breaks and no error message
279 is printed.
280
281 The completer script is inspired by libvirt.
282
283 Reviewed-by: Fabiano Fidêncio <fidencio@redhat.com>
284 Reviewed-by: Jonathon Jongsma <jjongsma@redhat.com>
285
286 2019-05-31 Eduardo Lima (Etrunko) <etrunko@redhat.com>
287
288 configure: Fix check for govirt functions
289 Use saved CFLAGS and LIBS to avoid errors in the check programs.
290
291 Acked-by: Victor Toso <victortoso@redhat.com>
292
293 2019-05-28 Pavel Moseev <mars@altlinux.org>
294
295 virt-viewer add translatable string
296 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
297
298 2019-04-16 Jonathon Jongsma <jjongsma@redhat.com>
299
300 Fix a regression when initial connection fails
301 Due to changes in commit 65ef66e4, when the initial connection fails,
302 virt-viewer just sat quietly and didn't indicate what was wrong. It also
303 did not exit as it did before. This is because we were using
304 virt_viewer_session_spice_channel_destroy() incorrectly. This function
305 was intended to be a callback that is called to clean up the VV session
306 when the SpiceSession tells us that a channel has been destroyed. It
307 does not actually destroy the channel, it only cleans up references to
308 that channel within virt-viewer. After calling this function, the
309 channel is not affected in any way. If the channel object was valid
310 before calling the function, it will be valid and unchanged after
311 calling the function as well.
312
313 The problem is that before commit 65ef66e4, this function
314 (_channel_destroy()) also had a side-effect of emitting a signal that
315 made us think that the SpiceSession was disconnected when it was not.
316 The application responded to this signal by exiting even though the
317 session was not properly disconnected and cleaned up.
318
319 We now no longer exit the application until the SpiceSession is properly
320 disconnected and cleaned up. So we need to make sure that this happens
321 when our initial connection fails. Therefore, when the main channel
322 receives an error channel-event, we should not call
323 virt_viewer_session_spice_channel_destroy(). This function should only
324 be called when a channel has actually been destroyed, and the channel is
325 not destroyed at this point. We should instead explicitly disconnect
326 the session, which will result in the channels being destroyed properly.
327 After the session destroys all of the channels, the 'channel-destroy' signal
328 will be emitted by SpiceSession, so the _channel_destroy() function will
329 eventually get called by the signal handler.
330
331 To make the proper use of the function more obvious, I also changed the
332 function name from _channel_destroy() to _channel_destroyed() and added
333 a comment.
334
335 Fixes: rhbz#1666869
336 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
337
338 2019-03-15 Christophe Fergeau <cfergeau@redhat.com>
339
340 Mark PrintScreen as translatable
341 It's for example ImprÉcran on French keyboards.
342
343
344 https://bugzilla.redhat.com/show_bug.cgi?id=1510411
345 Fabiano Fidêncio <fidencio@redhat.com>
346
347 2019-03-12 Daniel P. Berrangé <berrange@redhat.com>
348
349 po: refresh translations from zanata
350
351 po: minimize uk ur vi wba yo zh_CN zh_HK zh_TW zu
352
353 po: minimize sq sr@latin sr sv ta te tg th tr tw
354
355 po: minimize or pa pl pt_BR pt ro ru si sk sl
356
357 po: minimize mn mr ms nb nds ne nl nn nso
358
359 po: minimize kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml
360
361 po: minimize id ilo is it ja ka kk km kn ko
362
363 po: minimize fr gl gu he hi hr hu ia
364
365 po: minimize de_CH de el en_GB eo es et eu fa fi
366
367 po: minimize bn_IN bn bo br brx bs ca cs cy da
368
369 po: minimize af am anp ar as ast bal be bg
370
371 po: minimize & canonicalize translations stored in git
372 Similar to the virt-viewer.pot, .po files contain line numbers and file
373 names identifying where in the source a translatable string comes from.
374 The source locations in the .po files are thrown away and replaced with
375 content from the virt-viewer.pot whenever msgmerge is run, so this is not
376 precious information that needs to be stored in git.
377
378 When msgmerge processes a .po file, it will add in any msgids from the
379 virt-viewer.pot that were not already present. Thus, if a particular msgid
380 currently has no translation, it can be considered redundant and again
381 does not need storing in git.
382
383 When msgmerge processes a .po file and can't find an exact existing
384 translation match, it will try todo fuzzy matching instead, marking such
385 entries with a "# fuzzy" comment to alert the translator to take a
386 look and either discard, edit or accept the match. Looking at the
387 existing fuzzy matches in .po files shows that the quality is awful,
388 with many having a completely different set of printf format specifiers
389 between the msgid and fuzzy msgstr entry. Fortunately when msgfmt
390 generates the .gmo, the fuzzy entries are all ignored anyway. The fuzzy
391 entries could be useful to translators if they were working on the .po
392 files directly from git, but Virt-Viewer outsourced translation to the
393 Fedora Zanata system, so keeping fuzzy matches in git is not much help.
394
395 Finally, by default msgids are sorted based on source location. Thus, if
396 a bit of code with translatable text is moved from one file to another,
397 it may shift around in the .po file, despite the msgid not itself changing.
398 If the msgids were sorted alphabetically, the .po files would have
399 stable ordering when code is refactored.
400
401 This patch takes advantage of the above observations to canonicalize
402 and minimize the content stored for .po files in git. Instead of storing
403 the real .po files, we now store .mini.po files.
404
405 The .mini.po files are the same file format as .po files, but have no
406 source location comments, are sorted alphabetically, and all fuzzy
407 msgstrs and msgids with no translation are discarded. This cuts the size
408 of content in the po directory.
409
410 Users working from a virt-viewer git checkout who need the full .po files
411 can run "make update-po", which merges the virt-viewer.pot and .mini.po
412 file to create a .po file containing all the content previously stored
413 in git.
414
415 Conversely if a full .po file has been modified, for example, by
416 downloading new content from Zanata, the .mini.po files can be updated
417 by running "make update-mini-po". The resulting diffs of the .mini.po
418 file will clearly show the changed translations without any of the noise
419 that previously obscured content. Being able to see content changes
420 clearly actually identified a bug in the zanata python client where it
421 was adding bogus "fuzzy" annotations to many messages:
422
423 https://bugzilla.redhat.com/show_bug.cgi?id=1564497
424
425 Users working from virt-viewer releases should not see any difference in
426 behaviour, since the tarballs only contain the full .po files, not the
427 .mini.po files.
428
429 As an added benefit, generating tarballs with "make dist", will no
430 longer cause creation of dirty files in git, since it won't touch the
431 .mini.po files, only the .po files which are no longer kept in git.
432
433 The languages are minimized in the following commit since it is a
434 large mechanical process.
435
436 po: add rules for integration with zanata
437 Add rules to handle pushing virt-viewer.pot to zanata, and refreshing .po
438 files with new content from zanata.
439
440 po: remove language list from zanata configuration
441 The <locales> element in zanata.xml is no longer relevant as this info
442 is recorded server side.
443
444 po: provide custom make rules for po file management
445 Historically we have relied on intltool to install a standard
446 po/Makefile.in.in which has very limited scope for customization.
447 intltool is deprecated in favour of standard gettextize tools,
448 but these share the same disadvantages.
449
450 Writing make rules for po file management is no more difficult
451 than any other rules virt-viewer has, so stop using intltool
452 and don't use gettextize ether.
453
454 po: fix syntax error in plural forms for lt language
455
456 2019-03-07 Aleksei Nikiforov <darktemplar@basealt.ru>
457
458 remote-viewer: Allow toggling shared clipboard
459 Message-Id: <20190304143712.27989-1-darktemplar@basealt.ru>
460
461 2019-03-04 Daniel P. Berrangé <berrange@redhat.com>
462
463 Add a git-publish configuration file
464
465 2019-03-01 Daniel P. Berrangé <berrange@redhat.com>
466
467 rpm: remove obsolete Group tag purged from Fedora RPMs
468
469 Post release verson bump to 9.0
470
471 Update NEWS for 8.0 release
472
473 rpm: use the mingw hicolor icon theme not native
474
475 Add glib2-devel for mingw build
476 The native glib2-devel package is needed for mingw builds in order to
477 get the glib-compile-schemas binary.
478
479 2019-02-22 Eduardo Lima (Etrunko) <etrunko@redhat.com>
480
481 iso-dialog: Move type definitions from header to source file
482 There is no reason for this object to define a private structure, so it
483 is fine to make everything private to the dialog itself.
484
485 Update usage of GObject private structures
486 New functions and macros have been added in glib 2.38 to better handle
487 this case.
488
489 https://gitlab.gnome.org/GNOME/glib/blob/c8de2b11bbbf5705ee20bf68d0c11e455b441312/NEWS
490
491 The old method is being deprecated as of version 2.58.
492
493 https://gitlab.gnome.org/GNOME/glib/merge_requests/7/commits
494
495 2019-02-19 Daniel P. Berrangé <berrange@redhat.com>
496
497 msi: record full build environment in MSI installer
498 For proper compliance with the GPL and other licenses we need to be
499 clear about exactly what toolchain and dependent packages we used in
500 order to build the MSI installer we distribute.
501
502 Historically we've done this by including a "deps.txt" file which
503 provides a list of all the mingw{32,64}-* RPMs on the host system.
504
505 This is not sufficient information, however, because the build system
506 will in fact use various native packages too from the toolchain too,
507 notably including any program run by "configure" which covers various
508 shell utilities, and pkg-config, and then of course make & msitools
509 itself.
510
511 Rather than try to figure out which subset of host RPMs are used,
512 just list every single host RPM that is installed.
513
514 A key implication of this is that formal release builds should always
515 be done in a pristine build root populated with the minimal content
516 required for the build.
517
518 Declare VirtViewerFile variable at start of method
519 virt_viewer_session_vnc_auth_credential uses gotos which jump over the
520 declaration of 'file', meaning its contents are uninitialized in the
521 jump target.
522
523 Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
524
525 Fix prototype of function with no arguments
526 Modern C standard requires the function to be "void"
527
528 Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
529
530 Fix signed/unsigned mixup in format args
531 Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
532
533 2019-02-13 Eduardo Lima (Etrunko) <etrunko@redhat.com>
534
535 window: Use proper define from glib for ignoring deprecated warning
536 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
537
538 2019-02-12 Daniel P. Berrangé <berrange@redhat.com>
539
540 Disable deprecation warnings for gtk_window_fullscreen_on_monitor
541 We use GLIB_VERSION_MAX_ALLOWED to prevent use of functions from
542 GTK >= 3.12. When we do conditional compilation based on a GTK
543 version check, we must thus suppress the warning:
544
545 CC libvirt_viewer_la-virt-viewer-window.lo
546 ../../src/virt-viewer-window.c: In function 'virt_viewer_window_enter_fullscreen':
547 ../../src/virt-viewer-window.c:608:9: error: 'gtk_window_fullscreen_on_monitor' is deprecated: Not available before 3.18 [-Werror=deprecated-declarations]
548 gtk_window_fullscreen_on_monitor(GTK_WINDOW(priv->window),
549 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
550 In file included from /usr/include/gtk-3.0/gtk/gtkdialog.h:32,
551 from /usr/include/gtk-3.0/gtk/gtkaboutdialog.h:30,
552 from /usr/include/gtk-3.0/gtk/gtk.h:31,
553 from ../../src/virt-viewer-window.c:28:
554 /usr/include/gtk-3.0/gtk/gtkwindow.h:391:10: note: declared here
555 void gtk_window_fullscreen_on_monitor(GtkWindow *window,
556 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
557 cc1: all warnings being treated as errors
558
559 2019-02-04 Marc-André Lureau <marcandre.lureau@redhat.com>
560
561 build-sys: lower spice-gtk requirement to 0.35 again
562 Compile out QMP channel support if spice-gtk version < 0.36.
563
564 (note: I didn't bother adding configure switch to enable it
565 explicitly, this could be added later if necessary)
566
567 Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
568
569 2019-02-01 Paul Donohue <virt-tools@PaulSD.com>
570
571 Report gtk_accel_map_change_entry() failures
572 Message-Id: <1533340753-24176-2-git-send-email-virt-tools@PaulSD.com>
573 Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
574
575 2019-02-01 Marc-André Lureau <marcandre.lureau@redhat.com>
576
577 spice: hook into QMP port
578 If the "org.qemu.monitor.qmp.0" port is available:
579 - enable the VM UI
580 - get and follow the VM state
581 - send the requested VM actions
582
583 This requires spice-gtk version 0.36 with SpiceQmpPort helper.
584
585 Acked-by: Victor Toso <victortoso@redhat.com>
586
587 spice: hook into port channel to create VTE terminals
588 QEMU defines a few Spice port channel names in
589 docs/spice-port-fqdn.txt that can be interacted with a terminal.
590
591 Create VirtViewerDisplayVte display for all known terminal channel,
592 and redirect read/write signals.
593
594 Note that if VTE support is disabled, or if the VTE console isn't
595 shown, spice-gtk will still process those port channels (discarding
596 the read if VTE is disabled).
597
598 Acked-by: Victor Toso <victortoso@redhat.com>
599
600 session: do not take VTE display into account for geometry changes
601 Acked-by: Victor Toso <victortoso@redhat.com>
602
603 2019-01-28 Jonathon Jongsma <jjongsma@redhat.com>
604
605 Fix regression when showing disconnect error
606 Commit 65ef66e42 introduced a regression due to lack of type-safety on
607 signals. We mistakenly passed a GError rather than a string error
608 message to the signal.
609
610 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
611
612 2019-01-18 Eduardo Lima (Etrunko) <etrunko@redhat.com>
613
614 Add missing G_MODULE_EXPORT to signal handler
615 Fixes the Windows case where the dialog fails to show with the following
616 message:
617
618 warning: "Could not find signal handler 'virt_viewer_window_menu_change_cd_activate'"
619
620 2018-12-21 Daniel P. Berrangé <berrange@redhat.com>
621
622 Add src/virt-viewer-display-vte.c to POTFILES
623
624 2018-12-21 Marc-André Lureau <marcandre.lureau@redhat.com>
625
626 app: add "vm-running" property
627 Add "vm-running" property and modify "menu-vm-pause" check button
628 state when the running state changes.
629
630 Acked-by: Victor Toso <victortoso@redhat.com>
631
632 app: add "machine" UI
633 Add a new "Machine" menu, which allows to Pause/Reset/Power Down a VM.
634
635 The menu is only visible if "vm-ui" app property is set.
636
637 When the application quits, it will also send a quit action to the VM.
638
639 This is a similar behaviour/UI as qemu -display gtk.
640
641 Acked-by: Victor Toso <victortoso@redhat.com>
642
643 app: create a window for VTE displays
644 virt_viewer_app_display_added() now handles VTE displays. They should
645 be skipped for monitor configuration, and they don't emit "show-hint".
646
647 (a VTE display has a monitor nth == -1, which is now a valid value)
648
649 The associated window will be hidden when virt-viewer is started.
650
651 Acked-by: Victor Toso <victortoso@redhat.com>
652
653 spice: add unix-path in .vv file support
654 This will allow to connect to a Spice server using a unix socket path,
655 for example:
656
657 [virt-viewer]
658 type=spice
659 unix-path=/var/run/user/1000/qemu/test/spice.sock
660
661 Reviewed-by: Christophe Fergeau <cfergeau@redhat.com>
662
663 display: allow display without associated monitor number
664 The VTE display will have monitor id -1.
665
666 Eventually, having a base "console" class without monitor id could
667 avoid this allowance.
668
669 Acked-by: Victor Toso <victortoso@redhat.com>
670
671 app: append VTE consoles to display submenu
672 Acked-by: Victor Toso <victortoso@redhat.com>
673
674 app: set subtitle using VTE name
675 Currently, subtitle indicate the monitor number, ex: "Fedora (1)".
676
677 Custom subtitle use %d to place the monitor number.
678
679 Let's make this placeholder more generic to place the name of the
680 console, ex: "Fedora (Serial)".
681
682 Acked-by: Victor Toso <victortoso@redhat.com>
683
684 session: skip monitor changes if there is no sized monitors
685 spice-gtk discards configurations without any sized monitors.
686
687 Also shuts extra warnings when shifting the monitors.
688
689 Acked-by: Victor Toso <victortoso@redhat.com>
690
691 display: ignore display that do not have toplevel window
692 virt_viewer_display_get_preferred_monitor_geometry() may be called
693 during application initialization (when the VTE console is being
694 shown, virt_viewer_session_update_displays_geometry() is called when
695 the visibility menu item is toggled). But the other displays may not
696 yet be associated with a window, ignore them.
697
698 Acked-by: Victor Toso <victortoso@redhat.com>
699
700 window/zoom: deal with VTE display differently
701 VTE display doesn't use the desktop / window aspect ratio, let's just
702 call directly the functions handling zoom.
703
704 Acked-by: Victor Toso <victortoso@redhat.com>
705
706 Add a VirtViewerDisplayVte display kind
707 This is not a graphical display, so the application will have to deal
708 with it with care.
709
710 You may argue that we need a large refactoring to introduce a more
711 generic "console" object, that could be either graphical or textual.
712 For now, this does work well enough for me.
713
714 Acked-by: Victor Toso <victortoso@redhat.com>
715
716 build-sys: check for VTE library
717 Acked-by: Victor Toso <victortoso@redhat.com>
718
719 window: set sensitivity based on display capability
720 A following patch is adding a new display (VTE) that won't have the
721 send_key() or screenshot() callbacks. Activating those menu/actions
722 would lead to nothing or a crash. I chose to keep the UI consistent
723 for all display, but disable the menu sensitivity.
724
725 Acked-by: Victor Toso <victortoso@redhat.com>
726
727 window: do not reset sensitivity of menu-send in rebuild
728 The sensitivy of "menu-send" is getting more complex in the following
729 patch. Let's have the logic in a single place,
730 virt_viewer_window_set_menus_sensitive().
731
732 rebuild_combo_menu() is called in 2 cases:
733
734 1. notify::enable-accel: there is no need to update the sensitivy of
735 "menu-send"
736
737 2. on construction: default to false since display == NULL. It will be
738 later updated when virt_viewer_window_set_menus_sensitive(). The
739 default sensitivity is covered by previous .ui patch change.
740
741 Acked-by: Victor Toso <victortoso@redhat.com>
742
743 2018-12-06 Christophe Fergeau <cfergeau@redhat.com>
744
745 ovirt: Fix initial connection
746 After commit df42f78d46 "remote-viewer: factor our
747 remote_viewer_initial_connect()", the initial connection code only gets
748 run in the !ovirt case. When ovirt is in use, the initial connection
749 never happens, meaning all we get when using ovirt:// is a blank
750 virt-viewer window.
751
752 This commit fixes that by moving creation of the ovirt session to
753 remote_viewer_initial_connect, and unconditionnally calling the
754 remote_viewer_initial_connect rather than only doing it in the !ovirt
755 case.
756
757 https://bugzilla.redhat.com/show_bug.cgi?id=1655537
758
759 2018-12-05 Ben Mathews <beniam@yahoo.com>
760
761 Set window title to VM name
762 The attached patch address an issue with virt-view not setting the
763 titlebar text to be the title of the VM (previously discussed on:
764 https://www.redhat.com/archives/virt-tools-list/2018-September/msg00064.html).
765
766 2018-12-04 Jonathon Jongsma <jjongsma@redhat.com>
767
768 Silence coverity warning about dead code
769 For some reason, coverity was complaining that the definition of
770 cred_type_to_str was dead code, even though it wasn't. Changing the
771 storage to static silences the warning. Since that's a benficial change
772 anyway, let's change it. At the same time, make the pointer constant as
773 well and move it outside of the loop since it doesn't need to be inside
774 the loop.
775
776 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
777
778 Avoid potential memory leak in spice session
779 If j == -1, the memory allocated for rect will leak. So move the
780 allocation after the test.
781
782 Acked-by: Victor Toso <victortoso@redhat.com>
783
784 2018-11-13 Andrea Bolognani <abologna@redhat.com>
785
786 spec: Drop %{extra_release}
787 It was mainly meant to be used for automatic builds through
788 Test::AutoBuild, so it can be removed now.
789
790 prepare-release: Drop references to Test::AutoBuild
791 They are misleading, and no longer relevant anyway.
792
793 maint: Rename autobuild.sh to prepare-release.sh
794 The script was originally used by the Test::AutoBuild
795 project to perform periodic automatic builds; however, that
796 effort has been abandoned a long time ago, and these days
797 virt-viewer CI builds are happening on the Jenkins-based
798 CentOS CI environment under the libvirt umbrella[1], where
799 build recipes are maintained separately from the projects
800 themselves.
801
802 The script is still used to prepare releases, so it can't
803 be dropped from the repository: rename it so that its
804 purpose is more clearly communicated instead.
805
806 [1] https://ci.centos.org/view/libvirt/
807
808 2018-11-09 Jonathon Jongsma <jjongsma@redhat.com>
809
810 Relax Gtk+ requirement slightly
811 We previously bumped the gtk+ requirement to 3.18 for the function
812 gtk_window_fullscreen_on_monitor(). But this function is only necessary
813 in Wayland. So add some preprocessor version checks to allow it to
814 compile on older distributions if they don't care about wayland support.
815
816 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
817
818 2018-10-16 Qiu Wenbo <qiuwenbo@kylinos.com.cn>
819
820 win32: fix command line encoding on windows platform
821 On Windows, the arguments we get in GApplication::ocal_command_line
822 come from g_win32_get_command_line(), and g_option_context_parse_strv()
823 documentation says:
824 « On Windows, the strings are expected to be in UTF-8. This is in
825 contrast to g_option_context_parse() which expects them to be in the
826 system codepage, which is how they are passed as argv to main(). See
827 g_win32_get_command_line() for a solution. »
828
829 This was causing issues on Windows when running:
830 remote-viewer -t "你好" spice://<target-host>:5900
831
832 2018-10-15 Jonathon Jongsma <jjongsma@redhat.com>
833
834 Fullscreen displays on wrong monitors in Wayland
835 In fullscreen mode, we attempt to enable a guest display for each client
836 monitor and then place a fullscreen window for each display on the
837 appropriate monitor. Previously, we were using gtk_window_move() to move
838 the window to the proper monitor, and then calling
839 gtk_window_fullscreen() to enter fullscreen mode on that monitor.
840 However, under wayland, gtk_window_move() no longer has any effect for
841 toplevel windows, so all displays were showing up on top of eachother on
842 the same client monitor.
843
844 Fortunately, Gtk+ 3.18 added a new gtk_window_fullscreen_on_monitor()
845 API that works on Wayland. In theory this allows us to remove the call
846 to gtk_window_move() from the code. But to avoid potentially changing
847 behavior on xorg or older systems, I left the existing logic.
848
849 This requires a dependency bump for gtk+ from 3.12 to 3.18. Gtk 3.18 is
850 provided by the following distributions (or newer):
851 - RHEL 7.4
852 - Fedora 23
853 - Ubuntu 16.04LTS
854
855 Resolves: rhbz#1584561
856
857 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
858
859 2018-09-25 Marc-André Lureau <marcandre.lureau@redhat.com>
860
861 display: make klass->close() optional
862 Spice and VTE display do not need to implement it.
863
864 Acked-by: Victor Toso <victortoso@redhat.com>
865
866 window: move default sensitivity in .ui
867 Instead of modifying it in object initialization.
868
869 Acked-by: Victor Toso <victortoso@redhat.com>
870
871 window: use virt_viewer_window_set_menus_sensitive()
872 virt_viewer_window_set_menus_sensitive() is the common function to set
873 sensitivity on menu items.
874
875 It was lacking "toolbar_send_key", so add it there too.
876
877 Acked-by: Victor Toso <victortoso@redhat.com>
878
879 app: simplify toggling visibility
880 There is a hack to maintain the toggle state to a desired state within
881 the "toggled" handler.
882
883 However it is only necessary for the ask-quit case. In this case, we
884 want to maintain the item active, which is simpler to handle than the
885 general case. Simplify the code by folding
886 virt_viewer_app_window_set_visible() and removing the static
887 "reentering" hack, only maintaining "active" on the last item.
888
889 Note that the hack was needed since there is no way to hook a signal
890 handler on "clicked" before "toggled" is emitted and handled by Gtk,
891 to avoid the recursion.
892
893 Acked-by: Victor Toso <victortoso@redhat.com>
894
895 Remove class signal handlers
896 We don't use class signal handlers, remove the extra pointers.
897
898 g_signal_override_class_handler() could be used instead when needed.
899
900 Acked-by: Victor Toso <victortoso@redhat.com>
901
902 remote-viewer: add handling of spice+unix and spice+tls schemes
903 - spice+unix:// was added in spice-gtk v0.28
904 - spice+tls:// was added in spice-gtk v0.35
905
906 This allows launchers to start remote-viewer when they encounter a
907 Spice URI with +unix or +tls.
908
909 Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
910 Acked-by: Victor Toso <victortoso@redhat.com>
911
912 2018-09-18 Jonathon Jongsma <jjongsma@redhat.com>
913
914 Spice: listen for new 'SpiceSession::disconnected' signal
915 Previously we were emitting the VirtViewerSession::session-disconnected
916 when we got the Spice::session::channel-destroy signal for the last
917 channel. However, since the channels are still valid at this point, and
918 because VirtViewerApp quits the application in response to the
919 session-disconnected signal, that means that the channels were never
920 being properly freed. This was particularly problematic for the usbredir
921 channel, which must disconnect any connected USB devices as part of its
922 destruction. By using the new SpiceSession::disconnected signal instead,
923 we can ensure that all channels have been disconnected and properly
924 destroyed before quitting the application.
925
926 2018-09-12 Eduardo Lima (Etrunko) <etrunko@redhat.com>
927
928 ovirt-foreign-menu: New function storage_domain_validate()
929 It may be useful to know why the storage domain has not been listed,
930 given that there are different reasons for that. To make it easier to
931 provide more detailed debug messages, we move code from the callback
932 function to this new one.
933
934 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
935
936 build: Update govirt and rest requirements
937 With these new values, 0.3.3 for libgovirt and 0.8 for librest, we can
938 remove checks for OVIRT_REST_CALL_ERROR_CANCELLED and correspondent
939 rest_proxy_auth_cancel().
940
941 Distros that already ship these versions, such as Fedora, RHEL 7.4
942 onwards, and Ubuntu since 17.10.
943
944 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
945
946 2018-09-03 Victor Toso <me@victortoso.com>
947
948 app: Always add guest name comment
949 Even when the user adds comments, we should place the guest's name
950 unless it is present already.
951
952 Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1623756
953
954 Acked-by: Christophe Fergeau <cfergeau@redhat.com>
955
956 2018-08-31 Christophe Fergeau <cfergeau@redhat.com>
957
958 ovirt: Filter everything which does not end in .iso
959 oVirt REST API does not provide a way to know what is a valid ISO image
960 which can be assigned to a running VM. I've seen floppy disk images
961 (.vfd) in a domain, which is already filtered. Now I've seen an ISO
962 domain with .qcow2 files in it, which can't be assigned to a VM either.
963 This commit filters every file which does not have a .iso extension as
964 it's unlikely to be possible to use it.
965
966 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
967
968 2018-08-07 Christophe Fergeau <cfergeau@redhat.com>
969
970 ovirt: Improve handling of g_strv_contains()
971 The ovirt code uses g_strv_contains() with fallback code in
972 glib-compat.h when we are using a glib version where it's not available.
973 However, when we use a glib version where g_strv_contains is available,
974 we get a compilation warning since we are compiling GLIB_VERSION_MAX_ALLOWED
975 set to 2.38.
976
977 This commit wraps both the compat code and the g_strv_contains() call in
978 a strv_contains() helper where we can hide the magic needed to avoid
979 deprecation warnings.
980
981 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
982
983 window: Adjust get_image_format() prototype
984 This adds an unused parameter, but lets us get rid of this new warning
985 with gcc 8:
986
987 virt-viewer-window.c: In function 'get_image_format':
988 virt-viewer-window.c:930:33: warning: cast between incompatible function types from 'GHashTable * (*)(void)' {aka 'struct _GHashTable * (*)(void)'} to 'void * (*)(void *)' [-Wcast-function-type]
989 g_once(&image_formats_once, (GThreadFunc)init_image_formats, NULL);
990
991 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
992
993 2018-08-06 Christophe Fergeau <cfergeau@redhat.com>
994
995 app: Remove VirtViewerApp::has-focus
996 This is no longer needed since 140cb84
997 'remote-viewer: remove --spice-controller'
998
999 Acked-by: Eduardo Lima (Etrunko) <etrunko@redhat.com>
1000
01001 2018-07-27 Daniel P. Berrangé <berrange@redhat.com>
1002
1003 rpm: import spec changes from fedora
1004
1005 Post release version bump to 8.0
11006
21007 Add NEWS for 7.0 release
31008
11
22 ACLOCAL_AMFLAGS = -I m4
33
4 SUBDIRS = icons src man po data tests
4 SUBDIRS = bash-completion icons src man po data tests
55
66 AM_DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb
77 EXTRA_DIST = \
88 $(PACKAGE).spec $(PACKAGE).spec.in \
99 mingw-$(PACKAGE).spec.in \
10 intltool-extract.in \
11 intltool-merge.in \
12 intltool-update.in \
1310 GNUmakefile \
1411 maint.mk \
1512 cfg.mk \
2320 DISTCLEAN_FILES = \
2421 $(PACKAGE).spec \
2522 mingw-$(PACKAGE).spec \
26 intltool-extract \
27 intltool-merge \
28 intltool-update \
2923 $(NULL)
3024
3125 MAINTAINERCLEANFILES = \
3327 $(srcdir)/INSTALL \
3428 $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
3529 $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
36 $(srcdir)/m4/intltool.m4 \
3730 $(NULL)
3831
3932 dist-hook: gen-ChangeLog gen-AUTHORS
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8888 host_triplet = @host@
8989 subdir = .
9090 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
91 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
92 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
93 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
94 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
91 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
92 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
93 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
94 $(top_srcdir)/m4/virt-bash-completion.m4 \
95 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9596 $(top_srcdir)/configure.ac
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
137138 $(RECURSIVE_CLEAN_TARGETS) \
138139 $(am__extra_recursive_targets)
139140 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
140 cscope distdir dist dist-all distcheck
141 cscope distdir distdir-am dist dist-all distcheck
141142 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
142143 $(LISP)config.h.in
143144 # Read a list of newline-separated strings from the standard input,
213214 | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
214215 distcleancheck_listfiles = find . -type f -print
215216 ACLOCAL = @ACLOCAL@
216 ALL_LINGUAS = @ALL_LINGUAS@
217217 AMTAR = @AMTAR@
218218 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
219219 AR = @AR@
221221 AUTOHEADER = @AUTOHEADER@
222222 AUTOMAKE = @AUTOMAKE@
223223 AWK = @AWK@
224 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
225 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
226 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
227 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
224228 BUILDID = @BUILDID@
225 CATALOGS = @CATALOGS@
226 CATOBJEXT = @CATOBJEXT@
227229 CC = @CC@
228230 CCDEPMODE = @CCDEPMODE@
229231 CFLAGS = @CFLAGS@
230232 CPP = @CPP@
231233 CPPFLAGS = @CPPFLAGS@
232234 CYGPATH_W = @CYGPATH_W@
233 DATADIRNAME = @DATADIRNAME@
234235 DEFS = @DEFS@
235236 DEPDIR = @DEPDIR@
236237 DLLTOOL = @DLLTOOL@
248249 GLIB2_REQUIRED = @GLIB2_REQUIRED@
249250 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
250251 GLIB_MKENUMS = @GLIB_MKENUMS@
251 GMOFILES = @GMOFILES@
252 GMSGFMT = @GMSGFMT@
253252 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
254253 GREP = @GREP@
255254 GTK_CFLAGS = @GTK_CFLAGS@
264263 INSTALL_PROGRAM = @INSTALL_PROGRAM@
265264 INSTALL_SCRIPT = @INSTALL_SCRIPT@
266265 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
267 INSTOBJEXT = @INSTOBJEXT@
268 INTLLIBS = @INTLLIBS@
269 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
270 INTLTOOL_MERGE = @INTLTOOL_MERGE@
271 INTLTOOL_PERL = @INTLTOOL_PERL@
272 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
273 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
274 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
275 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
276 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
277 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
278266 LD = @LD@
279267 LDFLAGS = @LDFLAGS@
280268 LIBOBJS = @LIBOBJS@
294282 MAKEINFO = @MAKEINFO@
295283 MANIFEST_TOOL = @MANIFEST_TOOL@
296284 MKDIR_P = @MKDIR_P@
297 MKINSTALLDIRS = @MKINSTALLDIRS@
298285 MSGFMT = @MSGFMT@
299 MSGFMT_OPTS = @MSGFMT_OPTS@
300286 MSGMERGE = @MSGMERGE@
301287 NM = @NM@
302288 NMEDIT = @NMEDIT@
317303 PKG_CONFIG = @PKG_CONFIG@
318304 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
319305 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
320 POFILES = @POFILES@
321 POSUB = @POSUB@
322 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
323 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
324306 RANLIB = @RANLIB@
307 REST_REQUIRED = @REST_REQUIRED@
325308 SED = @SED@
326309 SET_MAKE = @SET_MAKE@
327310 SHELL = @SHELL@
333316 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
334317 STRIP = @STRIP@
335318 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
336 USE_NLS = @USE_NLS@
337319 VERSION = @VERSION@
320 VTE_CFLAGS = @VTE_CFLAGS@
321 VTE_LIBS = @VTE_LIBS@
338322 WARN_CFLAGS = @WARN_CFLAGS@
339323 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
340324 WINDRES = @WINDRES@
373357 includedir = @includedir@
374358 infodir = @infodir@
375359 install_sh = @install_sh@
376 intltool__v_merge_options_ = @intltool__v_merge_options_@
377 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
378360 libdir = @libdir@
379361 libexecdir = @libexecdir@
380362 localedir = @localedir@
396378 top_srcdir = @top_srcdir@
397379 NULL =
398380 ACLOCAL_AMFLAGS = -I m4
399 SUBDIRS = icons src man po data tests
381 SUBDIRS = bash-completion icons src man po data tests
400382 AM_DISTCHECK_CONFIGURE_FLAGS = --disable-update-mimedb
401383 EXTRA_DIST = \
402384 $(PACKAGE).spec $(PACKAGE).spec.in \
403385 mingw-$(PACKAGE).spec.in \
404 intltool-extract.in \
405 intltool-merge.in \
406 intltool-update.in \
407386 GNUmakefile \
408387 maint.mk \
409388 cfg.mk \
417396 DISTCLEAN_FILES = \
418397 $(PACKAGE).spec \
419398 mingw-$(PACKAGE).spec \
420 intltool-extract \
421 intltool-merge \
422 intltool-update \
423399 $(NULL)
424400
425401 MAINTAINERCLEANFILES = \
427403 $(srcdir)/INSTALL \
428404 $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
429405 $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
430 $(srcdir)/m4/intltool.m4 \
431406 $(NULL)
432407
433408 all: config.h
455430 echo ' $(SHELL) ./config.status'; \
456431 $(SHELL) ./config.status;; \
457432 *) \
458 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
459 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
433 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
434 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
460435 esac;
461436
462437 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
602577 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
603578 -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
604579
605 distdir: $(DISTFILES)
580 distdir: $(BUILT_SOURCES)
581 $(MAKE) $(AM_MAKEFLAGS) distdir-am
582
583 distdir-am: $(DISTFILES)
606584 $(am__remove_distdir)
607585 test -d "$(distdir)" || mkdir "$(distdir)"
608586 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
00 Virt Viewer News
11 ================
2
3 9.0: May 1, 2020
4 -----------------
5
6 - Project moved to https://gitlab.com/virt-viewer/virt-viewer
7 - Allow toggling shared clipboard in remote-viewer
8 - Fix handling when initial spice connection fails
9 - Fix check for govirt library
10 - Add bash completion of cli args
11 - Improve errors in file transfer dialog
12 - Fix ovirt foreign menu storage domains query
13 - Prefer TLS certs from oVirt instead of CLI
14 - Improve USB device cleanup when Ctrl-C is used
15 - Remember monitor mappings across restarts
16 - Add a default file extension to screenshots
17 - Updated translations
18 - Fix misc memory leaks
19
20 8.0: Mar 1, 2019
21 -----------------
22
23 - Fix warnings with latest GCC versions
24 - More strictly filter out non-ISO images in ovirt menu
25 - Require libgovirt >= 0.3.3
26 - Require librest >= 0.8
27 - Support UNIX and TLS URI schemes for spice
28 - Fix full screen monitor placement under wayland
29 - Fix command line encoding on Windows
30 - Ensure VM name is set in window title
31 - Support unix-path in .vv files
32 - Support text console windows via VTE
33 - Add machine power control menu options
34 - Record full build env in MSI installer
235
336 7.0: Jul 27, 2018
437 -----------------
2626 Virt Viewer uses libvirt to lookup information about the
2727 guest OS display. This is available from
2828
29 http://libvirt.org/
29 https://libvirt.org/
3030
31 Further information about the Virt Viewer application can be
32 found on the Virt Manager website:
31 Bug reports / support questions should be submitted to
3332
34 http://virt-manager.org/
33 https://gitlab.com/virt-viewer/virt-viewer/-/issues
3534
36 Feedback should be directed to the mailing list at
35 Code contributions should be submitted as merge requests to
3736
38 http://www.redhat.com/mailman/listinfo/virt-tools-list
37 https://gitlab.com/virt-viewer/virt-viewer/-/merge_requests
0 # generated automatically by aclocal 1.15.1 -*- Autoconf -*-
1
2 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
0 # generated automatically by aclocal 1.16.1 -*- Autoconf -*-
1
2 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
33
44 # This file is free software; the Free Software Foundation
55 # gives unlimited permission to copy and/or distribute it,
1818 You have another version of autoconf. It may work, but is not guaranteed to.
1919 If you have problems, you may need to regenerate the build system entirely.
2020 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
21
22 # Copyright (C) 1995-2002 Free Software Foundation, Inc.
23 # Copyright (C) 2001-2003,2004 Red Hat, Inc.
24 #
25 # This file is free software, distributed under the terms of the GNU
26 # General Public License. As a special exception to the GNU General
27 # Public License, this file may be distributed as part of a program
28 # that contains a configuration script generated by Autoconf, under
29 # the same distribution terms as the rest of that program.
30 #
31 # This file can be copied and used freely without restrictions. It can
32 # be used in projects which are not available under the GNU Public License
33 # but which still want to provide support for the GNU gettext functionality.
34 #
35 # Macro to add for using GNU gettext.
36 # Ulrich Drepper <drepper@cygnus.com>, 1995, 1996
37 #
38 # Modified to never use included libintl.
39 # Owen Taylor <otaylor@redhat.com>, 12/15/1998
40 #
41 # Major rework to remove unused code
42 # Owen Taylor <otaylor@redhat.com>, 12/11/2002
43 #
44 # Added better handling of ALL_LINGUAS from GNU gettext version
45 # written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002
46 #
47 # Modified to require ngettext
48 # Matthias Clasen <mclasen@redhat.com> 08/06/2004
49
50 # Increment this whenever this file is changed.
51 #serial 1
52
53 # We need this here as well, since someone might use autoconf-2.5x
54 # to configure GLib then an older version to configure a package
55 # using AM_GLIB_GNU_GETTEXT
56 AC_PREREQ(2.53)
57
58 dnl
59 dnl We go to great lengths to make sure that aclocal won't
60 dnl try to pull in the installed version of these macros
61 dnl when running aclocal in the glib directory.
62 dnl
63 m4_copy([AC_DEFUN],[glib_DEFUN])
64 m4_copy([AC_REQUIRE],[glib_REQUIRE])
65 dnl
66 dnl At the end, if we're not within glib, we'll define the public
67 dnl definitions in terms of our private definitions.
68 dnl
69
70 # GLIB_LC_MESSAGES
71 #--------------------
72 glib_DEFUN([GLIB_LC_MESSAGES],
73 [AC_CHECK_HEADERS([locale.h])
74 if test $ac_cv_header_locale_h = yes; then
75 AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
76 [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
77 am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
78 if test $am_cv_val_LC_MESSAGES = yes; then
79 AC_DEFINE(HAVE_LC_MESSAGES, 1,
80 [Define if your <locale.h> file defines LC_MESSAGES.])
81 fi
82 fi])
83
84 # GLIB_PATH_PROG_WITH_TEST
85 #----------------------------
86 dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR,
87 dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
88 glib_DEFUN([GLIB_PATH_PROG_WITH_TEST],
89 [# Extract the first word of "$2", so it can be a program name with args.
90 set dummy $2; ac_word=[$]2
91 AC_MSG_CHECKING([for $ac_word])
92 AC_CACHE_VAL(ac_cv_path_$1,
93 [case "[$]$1" in
94 /*)
95 ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
96 ;;
97 *)
98 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
99 for ac_dir in ifelse([$5], , $PATH, [$5]); do
100 test -z "$ac_dir" && ac_dir=.
101 if test -f $ac_dir/$ac_word; then
102 if [$3]; then
103 ac_cv_path_$1="$ac_dir/$ac_word"
104 break
105 fi
106 fi
107 done
108 IFS="$ac_save_ifs"
109 dnl If no 4th arg is given, leave the cache variable unset,
110 dnl so AC_PATH_PROGS will keep looking.
111 ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
112 ])dnl
113 ;;
114 esac])dnl
115 $1="$ac_cv_path_$1"
116 if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
117 AC_MSG_RESULT([$]$1)
118 else
119 AC_MSG_RESULT(no)
120 fi
121 AC_SUBST($1)dnl
122 ])
123
124 dnl Checks for special options needed on Mac OS X.
125 dnl Defines INTL_MACOSX_LIBS.
126 dnl
127 dnl Copied from intlmacosx.m4 in gettext, GPL.
128 dnl Copyright (C) 2004-2013 Free Software Foundation, Inc.
129 glib_DEFUN([glib_gt_INTL_MACOSX],
130 [
131 dnl Check for API introduced in Mac OS X 10.2.
132 AC_CACHE_CHECK([for CFPreferencesCopyAppValue],
133 [gt_cv_func_CFPreferencesCopyAppValue],
134 [gt_save_LIBS="$LIBS"
135 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
136 AC_LINK_IFELSE(
137 [AC_LANG_PROGRAM(
138 [[#include <CoreFoundation/CFPreferences.h>]],
139 [[CFPreferencesCopyAppValue(NULL, NULL)]])],
140 [gt_cv_func_CFPreferencesCopyAppValue=yes],
141 [gt_cv_func_CFPreferencesCopyAppValue=no])
142 LIBS="$gt_save_LIBS"])
143 if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
144 AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1],
145 [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
146 fi
147 dnl Check for API introduced in Mac OS X 10.3.
148 AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent],
149 [gt_save_LIBS="$LIBS"
150 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
151 AC_LINK_IFELSE(
152 [AC_LANG_PROGRAM(
153 [[#include <CoreFoundation/CFLocale.h>]],
154 [[CFLocaleCopyCurrent();]])],
155 [gt_cv_func_CFLocaleCopyCurrent=yes],
156 [gt_cv_func_CFLocaleCopyCurrent=no])
157 LIBS="$gt_save_LIBS"])
158 if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
159 AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1],
160 [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
161 fi
162 INTL_MACOSX_LIBS=
163 if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
164 INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
165 fi
166 AC_SUBST([INTL_MACOSX_LIBS])
167 ])
168
169 # GLIB_WITH_NLS
170 #-----------------
171 glib_DEFUN([GLIB_WITH_NLS],
172 dnl NLS is obligatory
173 [USE_NLS=yes
174 AC_SUBST(USE_NLS)
175
176 gt_cv_have_gettext=no
177
178 CATOBJEXT=NONE
179 XGETTEXT=:
180 INTLLIBS=
181
182 glib_gt_INTL_MACOSX
183
184 AC_CHECK_HEADER(libintl.h,
185 [gt_cv_func_dgettext_libintl="no"
186 libintl_extra_libs=""
187
188 #
189 # First check in libc
190 #
191 AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc,
192 [AC_TRY_LINK([
193 #include <libintl.h>
194 ],
195 [return !ngettext ("","", 1)],
196 gt_cv_func_ngettext_libc=yes,
197 gt_cv_func_ngettext_libc=no)
198 ])
199
200 if test "$gt_cv_func_ngettext_libc" = "yes" ; then
201 AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc,
202 [AC_TRY_LINK([
203 #include <libintl.h>
204 ],
205 [return !dgettext ("","")],
206 gt_cv_func_dgettext_libc=yes,
207 gt_cv_func_dgettext_libc=no)
208 ])
209 fi
210
211 if test "$gt_cv_func_ngettext_libc" = "yes" ; then
212 AC_CHECK_FUNCS(bind_textdomain_codeset)
213 fi
214
215 #
216 # If we don't have everything we want, check in libintl
217 #
218 if test "$gt_cv_func_dgettext_libc" != "yes" \
219 || test "$gt_cv_func_ngettext_libc" != "yes" \
220 || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
221
222 AC_CHECK_LIB(intl, bindtextdomain,
223 [AC_CHECK_LIB(intl, ngettext,
224 [AC_CHECK_LIB(intl, dgettext,
225 gt_cv_func_dgettext_libintl=yes)])])
226
227 if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
228 AC_MSG_CHECKING([if -liconv is needed to use gettext])
229 AC_MSG_RESULT([])
230 AC_CHECK_LIB(intl, ngettext,
231 [AC_CHECK_LIB(intl, dcgettext,
232 [gt_cv_func_dgettext_libintl=yes
233 libintl_extra_libs=-liconv],
234 :,-liconv)],
235 :,-liconv)
236 fi
237
238 #
239 # If we found libintl, then check in it for bind_textdomain_codeset();
240 # we'll prefer libc if neither have bind_textdomain_codeset(),
241 # and both have dgettext and ngettext
242 #
243 if test "$gt_cv_func_dgettext_libintl" = "yes" ; then
244 glib_save_LIBS="$LIBS"
245 LIBS="$LIBS -lintl $libintl_extra_libs"
246 unset ac_cv_func_bind_textdomain_codeset
247 AC_CHECK_FUNCS(bind_textdomain_codeset)
248 LIBS="$glib_save_LIBS"
249
250 if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then
251 gt_cv_func_dgettext_libc=no
252 else
253 if test "$gt_cv_func_dgettext_libc" = "yes" \
254 && test "$gt_cv_func_ngettext_libc" = "yes"; then
255 gt_cv_func_dgettext_libintl=no
256 fi
257 fi
258 fi
259 fi
260
261 if test "$gt_cv_func_dgettext_libc" = "yes" \
262 || test "$gt_cv_func_dgettext_libintl" = "yes"; then
263 gt_cv_have_gettext=yes
264 fi
265
266 if test "$gt_cv_func_dgettext_libintl" = "yes"; then
267 INTLLIBS="-lintl $libintl_extra_libs $INTL_MACOSX_LIBS"
268 fi
269
270 if test "$gt_cv_have_gettext" = "yes"; then
271 AC_DEFINE(HAVE_GETTEXT,1,
272 [Define if the GNU gettext() function is already present or preinstalled.])
273 GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
274 [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl
275 if test "$MSGFMT" != "no"; then
276 glib_save_LIBS="$LIBS"
277 LIBS="$LIBS $INTLLIBS"
278 AC_CHECK_FUNCS(dcgettext)
279 MSGFMT_OPTS=
280 AC_MSG_CHECKING([if msgfmt accepts -c])
281 GLIB_RUN_PROG([$MSGFMT -c -o /dev/null],[
282 msgid ""
283 msgstr ""
284 "Content-Type: text/plain; charset=UTF-8\n"
285 "Project-Id-Version: test 1.0\n"
286 "PO-Revision-Date: 2007-02-15 12:01+0100\n"
287 "Last-Translator: test <foo@bar.xx>\n"
288 "Language-Team: C <LL@li.org>\n"
289 "MIME-Version: 1.0\n"
290 "Content-Transfer-Encoding: 8bit\n"
291 ], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
292 AC_SUBST(MSGFMT_OPTS)
293 AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
294 GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
295 [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
296 AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
297 return _nl_msg_cat_cntr],
298 [CATOBJEXT=.gmo
299 DATADIRNAME=share],
300 [case $host in
301 *-*-solaris*)
302 dnl On Solaris, if bind_textdomain_codeset is in libc,
303 dnl GNU format message catalog is always supported,
304 dnl since both are added to the libc all together.
305 dnl Hence, we'd like to go with DATADIRNAME=share and
306 dnl and CATOBJEXT=.gmo in this case.
307 AC_CHECK_FUNC(bind_textdomain_codeset,
308 [CATOBJEXT=.gmo
309 DATADIRNAME=share],
310 [CATOBJEXT=.mo
311 DATADIRNAME=lib])
312 ;;
313 *-*-openbsd*)
314 CATOBJEXT=.mo
315 DATADIRNAME=share
316 ;;
317 *)
318 CATOBJEXT=.mo
319 DATADIRNAME=lib
320 ;;
321 esac])
322 LIBS="$glib_save_LIBS"
323 INSTOBJEXT=.mo
324 else
325 gt_cv_have_gettext=no
326 fi
327 fi
328 ])
329
330 if test "$gt_cv_have_gettext" = "yes" ; then
331 AC_DEFINE(ENABLE_NLS, 1,
332 [always defined to indicate that i18n is enabled])
333 fi
334
335 dnl Test whether we really found GNU xgettext.
336 if test "$XGETTEXT" != ":"; then
337 dnl If it is not GNU xgettext we define it as : so that the
338 dnl Makefiles still can work.
339 if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
340 : ;
341 else
342 AC_MSG_RESULT(
343 [found xgettext program is not GNU xgettext; ignore it])
344 XGETTEXT=":"
345 fi
346 fi
347
348 # We need to process the po/ directory.
349 POSUB=po
350
351 AC_OUTPUT_COMMANDS(
352 [case "$CONFIG_FILES" in *po/Makefile.in*)
353 sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
354 esac])
355
356 dnl These rules are solely for the distribution goal. While doing this
357 dnl we only have to keep exactly one list of the available catalogs
358 dnl in configure.ac.
359 for lang in $ALL_LINGUAS; do
360 GMOFILES="$GMOFILES $lang.gmo"
361 POFILES="$POFILES $lang.po"
362 done
363
364 dnl Make all variables we use known to autoconf.
365 AC_SUBST(CATALOGS)
366 AC_SUBST(CATOBJEXT)
367 AC_SUBST(DATADIRNAME)
368 AC_SUBST(GMOFILES)
369 AC_SUBST(INSTOBJEXT)
370 AC_SUBST(INTLLIBS)
371 AC_SUBST(PO_IN_DATADIR_TRUE)
372 AC_SUBST(PO_IN_DATADIR_FALSE)
373 AC_SUBST(POFILES)
374 AC_SUBST(POSUB)
375 ])
376
377 # AM_GLIB_GNU_GETTEXT
378 # -------------------
379 # Do checks necessary for use of gettext. If a suitable implementation
380 # of gettext is found in either in libintl or in the C library,
381 # it will set INTLLIBS to the libraries needed for use of gettext
382 # and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable
383 # gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST()
384 # on various variables needed by the Makefile.in.in installed by
385 # glib-gettextize.
386 dnl
387 AU_DEFUN([GLIB_GNU_GETTEXT],
388 [AC_REQUIRE([AC_PROG_CC])dnl
389
390 GLIB_LC_MESSAGES
391 GLIB_WITH_NLS
392
393 if test "$gt_cv_have_gettext" = "yes"; then
394 if test "x$ALL_LINGUAS" = "x"; then
395 LINGUAS=
396 else
397 AC_MSG_CHECKING(for catalogs to be installed)
398 NEW_LINGUAS=
399 for presentlang in $ALL_LINGUAS; do
400 useit=no
401 if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then
402 desiredlanguages="$LINGUAS"
403 else
404 desiredlanguages="$ALL_LINGUAS"
405 fi
406 for desiredlang in $desiredlanguages; do
407 # Use the presentlang catalog if desiredlang is
408 # a. equal to presentlang, or
409 # b. a variant of presentlang (because in this case,
410 # presentlang can be used as a fallback for messages
411 # which are not translated in the desiredlang catalog).
412 case "$desiredlang" in
413 "$presentlang"*) useit=yes;;
414 esac
415 done
416 if test $useit = yes; then
417 NEW_LINGUAS="$NEW_LINGUAS $presentlang"
418 fi
419 done
420 LINGUAS=$NEW_LINGUAS
421 AC_MSG_RESULT($LINGUAS)
422 fi
423
424 dnl Construct list of names of catalog files to be constructed.
425 if test -n "$LINGUAS"; then
426 for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
427 fi
428 fi
429
430 dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
431 dnl find the mkinstalldirs script in another subdir but ($top_srcdir).
432 dnl Try to locate is.
433 MKINSTALLDIRS=
434 if test -n "$ac_aux_dir"; then
435 MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
436 fi
437 if test -z "$MKINSTALLDIRS"; then
438 MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
439 fi
440 AC_SUBST(MKINSTALLDIRS)
441
442 dnl Generate list of files to be processed by xgettext which will
443 dnl be included in po/Makefile.
444 test -d po || mkdir po
445 if test "x$srcdir" != "x."; then
446 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
447 posrcprefix="$srcdir/"
448 else
449 posrcprefix="../$srcdir/"
450 fi
451 else
452 posrcprefix="../"
453 fi
454 rm -f po/POTFILES
455 sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
456 < $srcdir/po/POTFILES.in > po/POTFILES
457 ],
458 [[$0: This macro is deprecated. You should use upstream gettext instead.]])
459
460 # AM_GLIB_DEFINE_LOCALEDIR(VARIABLE)
461 # -------------------------------
462 # Define VARIABLE to the location where catalog files will
463 # be installed by po/Makefile.
464 glib_DEFUN([GLIB_DEFINE_LOCALEDIR],
465 [glib_REQUIRE([GLIB_GNU_GETTEXT])dnl
466 glib_save_prefix="$prefix"
467 glib_save_exec_prefix="$exec_prefix"
468 glib_save_datarootdir="$datarootdir"
469 test "x$prefix" = xNONE && prefix=$ac_default_prefix
470 test "x$exec_prefix" = xNONE && exec_prefix=$prefix
471 datarootdir=`eval echo "${datarootdir}"`
472 if test "x$CATOBJEXT" = "x.mo" ; then
473 localedir=`eval echo "${libdir}/locale"`
474 else
475 localedir=`eval echo "${datadir}/locale"`
476 fi
477 prefix="$glib_save_prefix"
478 exec_prefix="$glib_save_exec_prefix"
479 datarootdir="$glib_save_datarootdir"
480 AC_DEFINE_UNQUOTED($1, "$localedir",
481 [Define the location where the catalogs will be installed])
482 ])
483
484 dnl
485 dnl Now the definitions that aclocal will find
486 dnl
487 ifdef(glib_configure_ac,[],[
488 AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)])
489 AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)])
490 ])dnl
491
492 # GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL])
493 #
494 # Create a temporary file with TEST-FILE as its contents and pass the
495 # file name to PROGRAM. Perform ACTION-IF-PASS if PROGRAM exits with
496 # 0 and perform ACTION-IF-FAIL for any other exit status.
497 AC_DEFUN([GLIB_RUN_PROG],
498 [cat >conftest.foo <<_ACEOF
499 $2
500 _ACEOF
501 if AC_RUN_LOG([$1 conftest.foo]); then
502 m4_ifval([$3], [$3], [:])
503 m4_ifvaln([$4], [else $4])dnl
504 echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD
505 sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD
506 fi])
507
508
509 # nls.m4 serial 5 (gettext-0.18)
510 dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014, 2016 Free Software
511 dnl Foundation, Inc.
512 dnl This file is free software; the Free Software Foundation
513 dnl gives unlimited permission to copy and/or distribute it,
514 dnl with or without modifications, as long as this notice is preserved.
515 dnl
516 dnl This file can be used in projects which are not available under
517 dnl the GNU General Public License or the GNU Library General Public
518 dnl License but which still want to provide support for the GNU gettext
519 dnl functionality.
520 dnl Please note that the actual code of the GNU gettext library is covered
521 dnl by the GNU Library General Public License, and the rest of the GNU
522 dnl gettext package is covered by the GNU General Public License.
523 dnl They are *not* in the public domain.
524
525 dnl Authors:
526 dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
527 dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
528
529 AC_PREREQ([2.50])
530
531 AC_DEFUN([AM_NLS],
532 [
533 AC_MSG_CHECKING([whether NLS is requested])
534 dnl Default is enabled NLS
535 AC_ARG_ENABLE([nls],
536 [ --disable-nls do not use Native Language Support],
537 USE_NLS=$enableval, USE_NLS=yes)
538 AC_MSG_RESULT([$USE_NLS])
539 AC_SUBST([USE_NLS])
540 ])
54121
54222 # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
54323 # serial 11 (pkg-config-0.29.1)
883363 [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
884364 ])dnl PKG_HAVE_DEFINE_WITH_MODULES
885365
886 # Copyright (C) 2002-2017 Free Software Foundation, Inc.
366 # Copyright (C) 2002-2018 Free Software Foundation, Inc.
887367 #
888368 # This file is free software; the Free Software Foundation
889369 # gives unlimited permission to copy and/or distribute it,
895375 # generated from the m4 files accompanying Automake X.Y.
896376 # (This private macro should not be called outside this file.)
897377 AC_DEFUN([AM_AUTOMAKE_VERSION],
898 [am__api_version='1.15'
378 [am__api_version='1.16'
899379 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
900380 dnl require some minimum version. Point them to the right macro.
901 m4_if([$1], [1.15.1], [],
381 m4_if([$1], [1.16.1], [],
902382 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
903383 ])
904384
914394 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
915395 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
916396 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
917 [AM_AUTOMAKE_VERSION([1.15.1])dnl
397 [AM_AUTOMAKE_VERSION([1.16.1])dnl
918398 m4_ifndef([AC_AUTOCONF_VERSION],
919399 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
920400 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
921401
922402 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
923403
924 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
404 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
925405 #
926406 # This file is free software; the Free Software Foundation
927407 # gives unlimited permission to copy and/or distribute it,
973453
974454 # AM_CONDITIONAL -*- Autoconf -*-
975455
976 # Copyright (C) 1997-2017 Free Software Foundation, Inc.
456 # Copyright (C) 1997-2018 Free Software Foundation, Inc.
977457 #
978458 # This file is free software; the Free Software Foundation
979459 # gives unlimited permission to copy and/or distribute it,
1004484 Usually this means the macro was only invoked conditionally.]])
1005485 fi])])
1006486
1007 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
487 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
1008488 #
1009489 # This file is free software; the Free Software Foundation
1010490 # gives unlimited permission to copy and/or distribute it,
1195675
1196676 # Generate code to set up dependency tracking. -*- Autoconf -*-
1197677
1198 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
1199 #
1200 # This file is free software; the Free Software Foundation
1201 # gives unlimited permission to copy and/or distribute it,
1202 # with or without modifications, as long as this notice is preserved.
1203
678 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
679 #
680 # This file is free software; the Free Software Foundation
681 # gives unlimited permission to copy and/or distribute it,
682 # with or without modifications, as long as this notice is preserved.
1204683
1205684 # _AM_OUTPUT_DEPENDENCY_COMMANDS
1206685 # ------------------------------
1209688 # Older Autoconf quotes --file arguments for eval, but not when files
1210689 # are listed without --file. Let's play safe and only enable the eval
1211690 # if we detect the quoting.
1212 case $CONFIG_FILES in
1213 *\'*) eval set x "$CONFIG_FILES" ;;
1214 *) set x $CONFIG_FILES ;;
1215 esac
691 # TODO: see whether this extra hack can be removed once we start
692 # requiring Autoconf 2.70 or later.
693 AS_CASE([$CONFIG_FILES],
694 [*\'*], [eval set x "$CONFIG_FILES"],
695 [*], [set x $CONFIG_FILES])
1216696 shift
1217 for mf
697 # Used to flag and report bootstrapping failures.
698 am_rc=0
699 for am_mf
1218700 do
1219701 # Strip MF so we end up with the name of the file.
1220 mf=`echo "$mf" | sed -e 's/:.*$//'`
1221 # Check whether this is an Automake generated Makefile or not.
1222 # We used to match only the files named 'Makefile.in', but
1223 # some people rename them; so instead we look at the file content.
1224 # Grep'ing the first line is not enough: some people post-process
1225 # each Makefile.in and add a new line on top of each file to say so.
1226 # Grep'ing the whole file is not good either: AIX grep has a line
702 am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
703 # Check whether this is an Automake generated Makefile which includes
704 # dependency-tracking related rules and includes.
705 # Grep'ing the whole file directly is not great: AIX grep has a line
1227706 # limit of 2048, but all sed's we know have understand at least 4000.
1228 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1229 dirpart=`AS_DIRNAME("$mf")`
1230 else
1231 continue
1232 fi
1233 # Extract the definition of DEPDIR, am__include, and am__quote
1234 # from the Makefile without running 'make'.
1235 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1236 test -z "$DEPDIR" && continue
1237 am__include=`sed -n 's/^am__include = //p' < "$mf"`
1238 test -z "$am__include" && continue
1239 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1240 # Find all dependency output files, they are included files with
1241 # $(DEPDIR) in their names. We invoke sed twice because it is the
1242 # simplest approach to changing $(DEPDIR) to its actual value in the
1243 # expansion.
1244 for file in `sed -n "
1245 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1246 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
1247 # Make sure the directory exists.
1248 test -f "$dirpart/$file" && continue
1249 fdir=`AS_DIRNAME(["$file"])`
1250 AS_MKDIR_P([$dirpart/$fdir])
1251 # echo "creating $dirpart/$file"
1252 echo '# dummy' > "$dirpart/$file"
1253 done
707 sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
708 || continue
709 am_dirpart=`AS_DIRNAME(["$am_mf"])`
710 am_filepart=`AS_BASENAME(["$am_mf"])`
711 AM_RUN_LOG([cd "$am_dirpart" \
712 && sed -e '/# am--include-marker/d' "$am_filepart" \
713 | $MAKE -f - am--depfiles]) || am_rc=$?
1254714 done
715 if test $am_rc -ne 0; then
716 AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
717 for automatic dependency tracking. Try re-running configure with the
718 '--disable-dependency-tracking' option to at least be able to build
719 the package (albeit without support for automatic dependency tracking).])
720 fi
721 AS_UNSET([am_dirpart])
722 AS_UNSET([am_filepart])
723 AS_UNSET([am_mf])
724 AS_UNSET([am_rc])
725 rm -f conftest-deps.mk
1255726 }
1256727 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
1257728
1260731 # -----------------------------
1261732 # This macro should only be invoked once -- use via AC_REQUIRE.
1262733 #
1263 # This code is only required when automatic dependency tracking
1264 # is enabled. FIXME. This creates each '.P' file that we will
1265 # need in order to bootstrap the dependency handling code.
734 # This code is only required when automatic dependency tracking is enabled.
735 # This creates each '.Po' and '.Plo' makefile fragment that we'll need in
736 # order to bootstrap the dependency handling code.
1266737 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
1267738 [AC_CONFIG_COMMANDS([depfiles],
1268739 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
1269 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
1270 ])
740 [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
1271741
1272742 # Do all the work for Automake. -*- Autoconf -*-
1273743
1274 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
744 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
1275745 #
1276746 # This file is free software; the Free Software Foundation
1277747 # gives unlimited permission to copy and/or distribute it,
1358828 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
1359829 # For better backward compatibility. To be removed once Automake 1.9.x
1360830 # dies out for good. For more background, see:
1361 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
1362 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
831 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
832 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
1363833 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
1364834 # We need awk for the "check" target (and possibly the TAP driver). The
1365835 # system "awk" is bad on some platforms.
1426896 Aborting the configuration process, to ensure you take notice of the issue.
1427897
1428898 You can download and install GNU coreutils to get an 'rm' implementation
1429 that behaves properly: <http://www.gnu.org/software/coreutils/>.
899 that behaves properly: <https://www.gnu.org/software/coreutils/>.
1430900
1431901 If you want to complete the configuration process using your problematic
1432902 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
1468938 done
1469939 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
1470940
1471 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
941 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
1472942 #
1473943 # This file is free software; the Free Software Foundation
1474944 # gives unlimited permission to copy and/or distribute it,
1489959 fi
1490960 AC_SUBST([install_sh])])
1491961
1492 # Copyright (C) 2003-2017 Free Software Foundation, Inc.
962 # Copyright (C) 2003-2018 Free Software Foundation, Inc.
1493963 #
1494964 # This file is free software; the Free Software Foundation
1495965 # gives unlimited permission to copy and/or distribute it,
1510980
1511981 # Check to see how 'make' treats includes. -*- Autoconf -*-
1512982
1513 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
983 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
1514984 #
1515985 # This file is free software; the Free Software Foundation
1516986 # gives unlimited permission to copy and/or distribute it,
1518988
1519989 # AM_MAKE_INCLUDE()
1520990 # -----------------
1521 # Check to see how make treats includes.
991 # Check whether make has an 'include' directive that can support all
992 # the idioms we need for our automatic dependency tracking code.
1522993 AC_DEFUN([AM_MAKE_INCLUDE],
1523 [am_make=${MAKE-make}
1524 cat > confinc << 'END'
994 [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
995 cat > confinc.mk << 'END'
1525996 am__doit:
1526 @echo this is the am__doit target
997 @echo this is the am__doit target >confinc.out
1527998 .PHONY: am__doit
1528999 END
1529 # If we don't find an include directive, just comment out the code.
1530 AC_MSG_CHECKING([for style of include used by $am_make])
15311000 am__include="#"
15321001 am__quote=
1533 _am_result=none
1534 # First try GNU make style include.
1535 echo "include confinc" > confmf
1536 # Ignore all kinds of additional output from 'make'.
1537 case `$am_make -s -f confmf 2> /dev/null` in #(
1538 *the\ am__doit\ target*)
1539 am__include=include
1540 am__quote=
1541 _am_result=GNU
1542 ;;
1543 esac
1544 # Now try BSD make style include.
1545 if test "$am__include" = "#"; then
1546 echo '.include "confinc"' > confmf
1547 case `$am_make -s -f confmf 2> /dev/null` in #(
1548 *the\ am__doit\ target*)
1549 am__include=.include
1550 am__quote="\""
1551 _am_result=BSD
1552 ;;
1553 esac
1554 fi
1555 AC_SUBST([am__include])
1556 AC_SUBST([am__quote])
1557 AC_MSG_RESULT([$_am_result])
1558 rm -f confinc confmf
1559 ])
1002 # BSD make does it like this.
1003 echo '.include "confinc.mk" # ignored' > confmf.BSD
1004 # Other make implementations (GNU, Solaris 10, AIX) do it like this.
1005 echo 'include confinc.mk # ignored' > confmf.GNU
1006 _am_result=no
1007 for s in GNU BSD; do
1008 AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
1009 AS_CASE([$?:`cat confinc.out 2>/dev/null`],
1010 ['0:this is the am__doit target'],
1011 [AS_CASE([$s],
1012 [BSD], [am__include='.include' am__quote='"'],
1013 [am__include='include' am__quote=''])])
1014 if test "$am__include" != "#"; then
1015 _am_result="yes ($s style)"
1016 break
1017 fi
1018 done
1019 rm -f confinc.* confmf.*
1020 AC_MSG_RESULT([${_am_result}])
1021 AC_SUBST([am__include])])
1022 AC_SUBST([am__quote])])
15601023
15611024 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
15621025
1563 # Copyright (C) 1997-2017 Free Software Foundation, Inc.
1026 # Copyright (C) 1997-2018 Free Software Foundation, Inc.
15641027 #
15651028 # This file is free software; the Free Software Foundation
15661029 # gives unlimited permission to copy and/or distribute it,
15991062
16001063 # Helper functions for option handling. -*- Autoconf -*-
16011064
1602 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
1065 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
16031066 #
16041067 # This file is free software; the Free Software Foundation
16051068 # gives unlimited permission to copy and/or distribute it,
16281091 AC_DEFUN([_AM_IF_OPTION],
16291092 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
16301093
1631 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
1094 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
16321095 #
16331096 # This file is free software; the Free Software Foundation
16341097 # gives unlimited permission to copy and/or distribute it,
16751138 # For backward compatibility.
16761139 AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
16771140
1678 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
1141 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
16791142 #
16801143 # This file is free software; the Free Software Foundation
16811144 # gives unlimited permission to copy and/or distribute it,
16941157
16951158 # Check to make sure that the build environment is sane. -*- Autoconf -*-
16961159
1697 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
1160 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
16981161 #
16991162 # This file is free software; the Free Software Foundation
17001163 # gives unlimited permission to copy and/or distribute it,
17751238 rm -f conftest.file
17761239 ])
17771240
1778 # Copyright (C) 2009-2017 Free Software Foundation, Inc.
1241 # Copyright (C) 2009-2018 Free Software Foundation, Inc.
17791242 #
17801243 # This file is free software; the Free Software Foundation
17811244 # gives unlimited permission to copy and/or distribute it,
18351298 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
18361299 ])
18371300
1838 # Copyright (C) 2001-2017 Free Software Foundation, Inc.
1301 # Copyright (C) 2001-2018 Free Software Foundation, Inc.
18391302 #
18401303 # This file is free software; the Free Software Foundation
18411304 # gives unlimited permission to copy and/or distribute it,
18631326 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
18641327 AC_SUBST([INSTALL_STRIP_PROGRAM])])
18651328
1866 # Copyright (C) 2006-2017 Free Software Foundation, Inc.
1329 # Copyright (C) 2006-2018 Free Software Foundation, Inc.
18671330 #
18681331 # This file is free software; the Free Software Foundation
18691332 # gives unlimited permission to copy and/or distribute it,
18821345
18831346 # Check how to create a tarball. -*- Autoconf -*-
18841347
1885 # Copyright (C) 2004-2017 Free Software Foundation, Inc.
1348 # Copyright (C) 2004-2018 Free Software Foundation, Inc.
18861349 #
18871350 # This file is free software; the Free Software Foundation
18881351 # gives unlimited permission to copy and/or distribute it,
20131476 AC_SUBST([am__untar])
20141477 ]) # _AM_PROG_TAR
20151478
2016 m4_include([m4/intltool.m4])
20171479 m4_include([m4/libtool.m4])
20181480 m4_include([m4/ltoptions.m4])
20191481 m4_include([m4/ltsugar.m4])
20201482 m4_include([m4/ltversion.m4])
20211483 m4_include([m4/lt~obsolete.m4])
1484 m4_include([m4/virt-bash-completion.m4])
1485 m4_include([m4/virt-nls.m4])
20221486 m4_include([acinclude.m4])
0 EXTRA_DIST = \
1 $(PACKAGE)
2
3 install-data-local: install-bash-completion
4
5 uninstall-local: uninstall-bash-completion
6
7 if WITH_BASH_COMPLETION
8 install-bash-completion:
9 $(MKDIR_P) "$(DESTDIR)$(BASH_COMPLETIONS_DIR)"
10 $(INSTALL_SCRIPT) $(srcdir)/$(PACKAGE) \
11 "$(DESTDIR)$(BASH_COMPLETIONS_DIR)/$(PACKAGE)"
12
13 uninstall-bash-completion:
14 rm -f $(DESTDIR)$(BASH_COMPLETIONS_DIR)/$(PACKAGE)
15 rmdir $(DESTDIR)$(BASH_COMPLETIONS_DIR) ||:
16 else ! WITH_BASH_COMPLETION
17 install-bash-completion:
18 uninstall-bash-completion:
19 endif ! WITH_BASH_COMPLETION
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
1 # @configure_input@
2
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
4
5 # This Makefile.in is free software; the Free Software Foundation
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
13
14 @SET_MAKE@
15 VPATH = @srcdir@
16 am__is_gnu_make = { \
17 if test -z '$(MAKELEVEL)'; then \
18 false; \
19 elif test -n '$(MAKE_HOST)'; then \
20 true; \
21 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
22 true; \
23 else \
24 false; \
25 fi; \
26 }
27 am__make_running_with_option = \
28 case $${target_option-} in \
29 ?) ;; \
30 *) echo "am__make_running_with_option: internal error: invalid" \
31 "target option '$${target_option-}' specified" >&2; \
32 exit 1;; \
33 esac; \
34 has_opt=no; \
35 sane_makeflags=$$MAKEFLAGS; \
36 if $(am__is_gnu_make); then \
37 sane_makeflags=$$MFLAGS; \
38 else \
39 case $$MAKEFLAGS in \
40 *\\[\ \ ]*) \
41 bs=\\; \
42 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
43 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
44 esac; \
45 fi; \
46 skip_next=no; \
47 strip_trailopt () \
48 { \
49 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
50 }; \
51 for flg in $$sane_makeflags; do \
52 test $$skip_next = yes && { skip_next=no; continue; }; \
53 case $$flg in \
54 *=*|--*) continue;; \
55 -*I) strip_trailopt 'I'; skip_next=yes;; \
56 -*I?*) strip_trailopt 'I';; \
57 -*O) strip_trailopt 'O'; skip_next=yes;; \
58 -*O?*) strip_trailopt 'O';; \
59 -*l) strip_trailopt 'l'; skip_next=yes;; \
60 -*l?*) strip_trailopt 'l';; \
61 -[dEDm]) skip_next=yes;; \
62 -[JT]) skip_next=yes;; \
63 esac; \
64 case $$flg in \
65 *$$target_option*) has_opt=yes; break;; \
66 esac; \
67 done; \
68 test $$has_opt = yes
69 am__make_dryrun = (target_option=n; $(am__make_running_with_option))
70 am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
71 pkgdatadir = $(datadir)/@PACKAGE@
72 pkgincludedir = $(includedir)/@PACKAGE@
73 pkglibdir = $(libdir)/@PACKAGE@
74 pkglibexecdir = $(libexecdir)/@PACKAGE@
75 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
76 install_sh_DATA = $(install_sh) -c -m 644
77 install_sh_PROGRAM = $(install_sh) -c
78 install_sh_SCRIPT = $(install_sh) -c
79 INSTALL_HEADER = $(INSTALL_DATA)
80 transform = $(program_transform_name)
81 NORMAL_INSTALL = :
82 PRE_INSTALL = :
83 POST_INSTALL = :
84 NORMAL_UNINSTALL = :
85 PRE_UNINSTALL = :
86 POST_UNINSTALL = :
87 build_triplet = @build@
88 host_triplet = @host@
89 subdir = bash-completion
90 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
91 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
92 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
93 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
94 $(top_srcdir)/m4/virt-bash-completion.m4 \
95 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
96 $(top_srcdir)/configure.ac
97 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
98 $(ACLOCAL_M4)
99 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
100 mkinstalldirs = $(install_sh) -d
101 CONFIG_HEADER = $(top_builddir)/config.h
102 CONFIG_CLEAN_FILES =
103 CONFIG_CLEAN_VPATH_FILES =
104 AM_V_P = $(am__v_P_@AM_V@)
105 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
106 am__v_P_0 = false
107 am__v_P_1 = :
108 AM_V_GEN = $(am__v_GEN_@AM_V@)
109 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
110 am__v_GEN_0 = @echo " GEN " $@;
111 am__v_GEN_1 =
112 AM_V_at = $(am__v_at_@AM_V@)
113 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
114 am__v_at_0 = @
115 am__v_at_1 =
116 SOURCES =
117 DIST_SOURCES =
118 am__can_run_installinfo = \
119 case $$AM_UPDATE_INFO_DIR in \
120 n|no|NO) false;; \
121 *) (install-info --version) >/dev/null 2>&1;; \
122 esac
123 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
124 am__DIST_COMMON = $(srcdir)/Makefile.in
125 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
126 ACLOCAL = @ACLOCAL@
127 AMTAR = @AMTAR@
128 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
129 AR = @AR@
130 AUTOCONF = @AUTOCONF@
131 AUTOHEADER = @AUTOHEADER@
132 AUTOMAKE = @AUTOMAKE@
133 AWK = @AWK@
134 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
135 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
136 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
137 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
138 BUILDID = @BUILDID@
139 CC = @CC@
140 CCDEPMODE = @CCDEPMODE@
141 CFLAGS = @CFLAGS@
142 CPP = @CPP@
143 CPPFLAGS = @CPPFLAGS@
144 CYGPATH_W = @CYGPATH_W@
145 DEFS = @DEFS@
146 DEPDIR = @DEPDIR@
147 DLLTOOL = @DLLTOOL@
148 DSYMUTIL = @DSYMUTIL@
149 DUMPBIN = @DUMPBIN@
150 ECHO_C = @ECHO_C@
151 ECHO_N = @ECHO_N@
152 ECHO_T = @ECHO_T@
153 EGREP = @EGREP@
154 EXEEXT = @EXEEXT@
155 FGREP = @FGREP@
156 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
157 GLIB2_CFLAGS = @GLIB2_CFLAGS@
158 GLIB2_LIBS = @GLIB2_LIBS@
159 GLIB2_REQUIRED = @GLIB2_REQUIRED@
160 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
161 GLIB_MKENUMS = @GLIB_MKENUMS@
162 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
163 GREP = @GREP@
164 GTK_CFLAGS = @GTK_CFLAGS@
165 GTK_LIBS = @GTK_LIBS@
166 GTK_REQUIRED = @GTK_REQUIRED@
167 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
168 GTK_VNC_LIBS = @GTK_VNC_LIBS@
169 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
170 ICOTOOL = @ICOTOOL@
171 INSTALL = @INSTALL@
172 INSTALL_DATA = @INSTALL_DATA@
173 INSTALL_PROGRAM = @INSTALL_PROGRAM@
174 INSTALL_SCRIPT = @INSTALL_SCRIPT@
175 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
176 LD = @LD@
177 LDFLAGS = @LDFLAGS@
178 LIBOBJS = @LIBOBJS@
179 LIBS = @LIBS@
180 LIBTOOL = @LIBTOOL@
181 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
182 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
183 LIBVIRT_LIBS = @LIBVIRT_LIBS@
184 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
185 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
186 LIBXML2_LIBS = @LIBXML2_LIBS@
187 LIBXML2_REQUIRED = @LIBXML2_REQUIRED@
188 LIPO = @LIPO@
189 LN_S = @LN_S@
190 LTLIBOBJS = @LTLIBOBJS@
191 LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
192 MAKEINFO = @MAKEINFO@
193 MANIFEST_TOOL = @MANIFEST_TOOL@
194 MKDIR_P = @MKDIR_P@
195 MSGFMT = @MSGFMT@
196 MSGMERGE = @MSGMERGE@
197 NM = @NM@
198 NMEDIT = @NMEDIT@
199 OBJDUMP = @OBJDUMP@
200 OBJEXT = @OBJEXT@
201 OTOOL = @OTOOL@
202 OTOOL64 = @OTOOL64@
203 OVIRT_CFLAGS = @OVIRT_CFLAGS@
204 OVIRT_LIBS = @OVIRT_LIBS@
205 PACKAGE = @PACKAGE@
206 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
207 PACKAGE_NAME = @PACKAGE_NAME@
208 PACKAGE_STRING = @PACKAGE_STRING@
209 PACKAGE_TARNAME = @PACKAGE_TARNAME@
210 PACKAGE_URL = @PACKAGE_URL@
211 PACKAGE_VERSION = @PACKAGE_VERSION@
212 PATH_SEPARATOR = @PATH_SEPARATOR@
213 PKG_CONFIG = @PKG_CONFIG@
214 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
215 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
216 RANLIB = @RANLIB@
217 REST_REQUIRED = @REST_REQUIRED@
218 SED = @SED@
219 SET_MAKE = @SET_MAKE@
220 SHELL = @SHELL@
221 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
222 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
223 SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@
224 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
225 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
226 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
227 STRIP = @STRIP@
228 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
229 VERSION = @VERSION@
230 VTE_CFLAGS = @VTE_CFLAGS@
231 VTE_LIBS = @VTE_LIBS@
232 WARN_CFLAGS = @WARN_CFLAGS@
233 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
234 WINDRES = @WINDRES@
235 WIXL_ARCH = @WIXL_ARCH@
236 XGETTEXT = @XGETTEXT@
237 abs_builddir = @abs_builddir@
238 abs_srcdir = @abs_srcdir@
239 abs_top_builddir = @abs_top_builddir@
240 abs_top_srcdir = @abs_top_srcdir@
241 ac_ct_AR = @ac_ct_AR@
242 ac_ct_CC = @ac_ct_CC@
243 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
244 am__include = @am__include@
245 am__leading_dot = @am__leading_dot@
246 am__quote = @am__quote@
247 am__tar = @am__tar@
248 am__untar = @am__untar@
249 bindir = @bindir@
250 build = @build@
251 build_alias = @build_alias@
252 build_cpu = @build_cpu@
253 build_os = @build_os@
254 build_vendor = @build_vendor@
255 builddir = @builddir@
256 datadir = @datadir@
257 datarootdir = @datarootdir@
258 docdir = @docdir@
259 dvidir = @dvidir@
260 exec_prefix = @exec_prefix@
261 host = @host@
262 host_alias = @host_alias@
263 host_cpu = @host_cpu@
264 host_os = @host_os@
265 host_vendor = @host_vendor@
266 htmldir = @htmldir@
267 includedir = @includedir@
268 infodir = @infodir@
269 install_sh = @install_sh@
270 libdir = @libdir@
271 libexecdir = @libexecdir@
272 localedir = @localedir@
273 localstatedir = @localstatedir@
274 mandir = @mandir@
275 mkdir_p = @mkdir_p@
276 oldincludedir = @oldincludedir@
277 pdfdir = @pdfdir@
278 prefix = @prefix@
279 program_transform_name = @program_transform_name@
280 psdir = @psdir@
281 sbindir = @sbindir@
282 sharedstatedir = @sharedstatedir@
283 srcdir = @srcdir@
284 sysconfdir = @sysconfdir@
285 target_alias = @target_alias@
286 top_build_prefix = @top_build_prefix@
287 top_builddir = @top_builddir@
288 top_srcdir = @top_srcdir@
289 EXTRA_DIST = \
290 $(PACKAGE)
291
292 all: all-am
293
294 .SUFFIXES:
295 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
296 @for dep in $?; do \
297 case '$(am__configure_deps)' in \
298 *$$dep*) \
299 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
300 && { if test -f $@; then exit 0; else break; fi; }; \
301 exit 1;; \
302 esac; \
303 done; \
304 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign bash-completion/Makefile'; \
305 $(am__cd) $(top_srcdir) && \
306 $(AUTOMAKE) --foreign bash-completion/Makefile
307 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
308 @case '$?' in \
309 *config.status*) \
310 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
311 *) \
312 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
313 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
314 esac;
315
316 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
317 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
318
319 $(top_srcdir)/configure: $(am__configure_deps)
320 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
321 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
322 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
323 $(am__aclocal_m4_deps):
324
325 mostlyclean-libtool:
326 -rm -f *.lo
327
328 clean-libtool:
329 -rm -rf .libs _libs
330 tags TAGS:
331
332 ctags CTAGS:
333
334 cscope cscopelist:
335
336
337 distdir: $(BUILT_SOURCES)
338 $(MAKE) $(AM_MAKEFLAGS) distdir-am
339
340 distdir-am: $(DISTFILES)
341 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
342 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
343 list='$(DISTFILES)'; \
344 dist_files=`for file in $$list; do echo $$file; done | \
345 sed -e "s|^$$srcdirstrip/||;t" \
346 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
347 case $$dist_files in \
348 */*) $(MKDIR_P) `echo "$$dist_files" | \
349 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
350 sort -u` ;; \
351 esac; \
352 for file in $$dist_files; do \
353 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
354 if test -d $$d/$$file; then \
355 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
356 if test -d "$(distdir)/$$file"; then \
357 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
358 fi; \
359 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
360 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
361 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
362 fi; \
363 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
364 else \
365 test -f "$(distdir)/$$file" \
366 || cp -p $$d/$$file "$(distdir)/$$file" \
367 || exit 1; \
368 fi; \
369 done
370 check-am: all-am
371 check: check-am
372 all-am: Makefile
373 installdirs:
374 install: install-am
375 install-exec: install-exec-am
376 install-data: install-data-am
377 uninstall: uninstall-am
378
379 install-am: all-am
380 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
381
382 installcheck: installcheck-am
383 install-strip:
384 if test -z '$(STRIP)'; then \
385 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
386 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
387 install; \
388 else \
389 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
390 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
391 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
392 fi
393 mostlyclean-generic:
394
395 clean-generic:
396
397 distclean-generic:
398 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
399 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
400
401 maintainer-clean-generic:
402 @echo "This command is intended for maintainers to use"
403 @echo "it deletes files that may require special tools to rebuild."
404 clean: clean-am
405
406 clean-am: clean-generic clean-libtool mostlyclean-am
407
408 distclean: distclean-am
409 -rm -f Makefile
410 distclean-am: clean-am distclean-generic
411
412 dvi: dvi-am
413
414 dvi-am:
415
416 html: html-am
417
418 html-am:
419
420 info: info-am
421
422 info-am:
423
424 install-data-am: install-data-local
425
426 install-dvi: install-dvi-am
427
428 install-dvi-am:
429
430 install-exec-am:
431
432 install-html: install-html-am
433
434 install-html-am:
435
436 install-info: install-info-am
437
438 install-info-am:
439
440 install-man:
441
442 install-pdf: install-pdf-am
443
444 install-pdf-am:
445
446 install-ps: install-ps-am
447
448 install-ps-am:
449
450 installcheck-am:
451
452 maintainer-clean: maintainer-clean-am
453 -rm -f Makefile
454 maintainer-clean-am: distclean-am maintainer-clean-generic
455
456 mostlyclean: mostlyclean-am
457
458 mostlyclean-am: mostlyclean-generic mostlyclean-libtool
459
460 pdf: pdf-am
461
462 pdf-am:
463
464 ps: ps-am
465
466 ps-am:
467
468 uninstall-am: uninstall-local
469
470 .MAKE: install-am install-strip
471
472 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
473 cscopelist-am ctags-am distclean distclean-generic \
474 distclean-libtool distdir dvi dvi-am html html-am info info-am \
475 install install-am install-data install-data-am \
476 install-data-local install-dvi install-dvi-am install-exec \
477 install-exec-am install-html install-html-am install-info \
478 install-info-am install-man install-pdf install-pdf-am \
479 install-ps install-ps-am install-strip installcheck \
480 installcheck-am installdirs maintainer-clean \
481 maintainer-clean-generic mostlyclean mostlyclean-generic \
482 mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
483 uninstall-am uninstall-local
484
485 .PRECIOUS: Makefile
486
487
488 install-data-local: install-bash-completion
489
490 uninstall-local: uninstall-bash-completion
491
492 @WITH_BASH_COMPLETION_TRUE@install-bash-completion:
493 @WITH_BASH_COMPLETION_TRUE@ $(MKDIR_P) "$(DESTDIR)$(BASH_COMPLETIONS_DIR)"
494 @WITH_BASH_COMPLETION_TRUE@ $(INSTALL_SCRIPT) $(srcdir)/$(PACKAGE) \
495 @WITH_BASH_COMPLETION_TRUE@ "$(DESTDIR)$(BASH_COMPLETIONS_DIR)/$(PACKAGE)"
496
497 @WITH_BASH_COMPLETION_TRUE@uninstall-bash-completion:
498 @WITH_BASH_COMPLETION_TRUE@ rm -f $(DESTDIR)$(BASH_COMPLETIONS_DIR)/$(PACKAGE)
499 @WITH_BASH_COMPLETION_TRUE@ rmdir $(DESTDIR)$(BASH_COMPLETIONS_DIR) ||:
500 @WITH_BASH_COMPLETION_FALSE@install-bash-completion:
501 @WITH_BASH_COMPLETION_FALSE@uninstall-bash-completion:
502
503 # Tell versions [3.59,3.63) of GNU make to not export all variables.
504 # Otherwise a system limit (for SysV at least) may be exceeded.
505 .NOEXPORT:
0 #
1 # virt-viewer completer
2 #
3
4 _virt_viewer_complete()
5 {
6 local words cword c w cur URI CMDLINE MODE DOMS
7
8 # Here, $COMP_WORDS is an array of words on the bash
9 # command line that user wants to complete. However, when
10 # parsing command line, the default set of word breaks is
11 # applied. This doesn't work for us as it mangles virt-viewer
12 # arguments, e.g. connection URI (with the default set it's
13 # split into multiple items within the array). Fortunately,
14 # there's a fixup function for the array.
15 _get_comp_words_by_ref -n "\"'><=;|&(:" -w words -i cword
16 COMP_WORDS=( "${words[@]}" )
17 COMP_CWORD=${cword}
18 cur=${COMP_WORDS[$COMP_CWORD]}
19
20 MODE="--name"
21 ALL="--all"
22 # See what URI is user trying to connect to. Honour that.
23 for ((c=1; c<=${COMP_CWORD}; c++)); do
24 case "${COMP_WORDS[c]}" in
25 -c|--connect)
26 if [[ -n "${COMP_WORDS[c+1]}" ]]; then
27 URI="${COMP_WORDS[c+1]}"
28 c=$((++c))
29 fi
30 ;;
31
32 --connect=*)
33 w=${COMP_WORDS[c]#*=}
34 if [[ -z "$w" ]] ; then
35 return
36 fi
37 URI=$w
38 ;;
39
40 --domain-name)
41 # Generate list of domain names which is done below
42 MODE="--name"
43 ALL="--all"
44 ;;
45
46 --uuid)
47 # Generate list of domain UUIDs which is done below
48 MODE="--uuid"
49 ALL="--all"
50 ;;
51
52 --id)
53 # Generate list of domain IDs which is done below
54 MODE=""
55 ALL=""
56 ;;
57 esac
58 done
59
60 case "$cur" in
61 --connect=*)
62 # Nada
63 return
64 ;;
65
66 --display=*)
67 cur=${cur#*=}
68 DISPLAYS=$(cd /tmp/.X11-unix && for x in X*; do echo ":${x#X}"; done)
69 COMPREPLY=($(compgen -W '${DISPLAYS}' -- "$cur"))
70 __ltrim_colon_completions "$cur"
71 return
72 ;;
73
74 --kiosk-quit=*)
75 cur=${cur#*=}
76 COMPREPLY=($(compgen -W 'never on-disconnect' -- "$cur"))
77 return
78 ;;
79
80 -*)
81 # If the current option already ends with '=' then don't generate
82 # any more --options
83 if [[ $cur == *= ]] ; then
84 return
85 fi
86 COMPREPLY=($(compgen -W '$( _parse_help "$1" -h )' -- "$cur"))
87 if [[ $COMPREPLY == *= ]] ; then
88 compopt -o nospace
89 fi
90 return
91 ;;
92 esac
93
94 CMDLINE=
95 if [ -n "${URI}" ]; then
96 CMDLINE="${CMDLINE} -c ${URI}"
97 fi
98
99 DOMS=($(virsh -q -r ${CMDLINE} list ${ALL} ${MODE} 2>/dev/null | awk '{print $1;}' ))
100
101 COMPREPLY=($(compgen -W "${DOMS[*]%--}" -- ${cur}))
102
103 __ltrim_colon_completions "${cur}"
104 return
105 } &&
106 complete -F _virt_viewer_complete virt-viewer
107
108 # vim: ft=sh:et:ts=4:sw=4:tw=80
0 #!/bin/sh
0 #! /bin/sh
11 # Wrapper for compilers which do not understand '-c -o'.
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
66 # Written by Tom Tromey <tromey@cygnus.com>.
77 #
88 # This program is free software; you can redistribute it and/or modify
1616 # GNU General Public License for more details.
1717 #
1818 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # along with this program. If not, see <https://www.gnu.org/licenses/>.
2020
2121 # As a special exception to the GNU General Public License, if you
2222 # distribute this file as part of a program that contains a
339339 # Local Variables:
340340 # mode: shell-script
341341 # sh-indentation: 2
342 # eval: (add-hook 'write-file-hooks 'time-stamp)
342 # eval: (add-hook 'before-save-hook 'time-stamp)
343343 # time-stamp-start: "scriptversion="
344344 # time-stamp-format: "%:y-%02m-%02d.%02H"
345345 # time-stamp-time-zone: "UTC0"
0 #!/bin/sh
0 #! /bin/sh
11 # Attempt to guess a canonical system name.
2 # Copyright 1992-2017 Free Software Foundation, Inc.
3
4 timestamp='2017-08-08'
2 # Copyright 1992-2018 Free Software Foundation, Inc.
3
4 timestamp='2018-08-29'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
1414 # General Public License for more details.
1515 #
1616 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
17 # along with this program; if not, see <https://www.gnu.org/licenses/>.
1818 #
1919 # As a special exception to the GNU General Public License, if you
2020 # distribute this file as part of a program that contains a
2626 # Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
2727 #
2828 # You can get the latest version of this script from:
29 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
29 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
3030 #
3131 # Please send patches to <config-patches@gnu.org>.
3232
3838
3939 Output the configuration name of the system \`$me' is run on.
4040
41 Operation modes:
41 Options:
4242 -h, --help print this help, then exit
4343 -t, --time-stamp print date of last modification, then exit
4444 -v, --version print version number, then exit
4949 GNU config.guess ($timestamp)
5050
5151 Originally written by Per Bothner.
52 Copyright 1992-2017 Free Software Foundation, Inc.
52 Copyright 1992-2018 Free Software Foundation, Inc.
5353
5454 This is free software; see the source for copying conditions. There is NO
5555 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
8383 exit 1
8484 fi
8585
86 trap 'exit 1' 1 2 15
87
8886 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a
8987 # compiler to aid in system detection is discouraged as it requires
9088 # temporary files to be created and, as you can see below, it is a
9593
9694 # Portable tmp directory creation inspired by the Autoconf team.
9795
98 set_cc_for_build='
99 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
100 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
101 : ${TMPDIR=/tmp} ;
102 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
103 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
104 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
105 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
106 dummy=$tmp/dummy ;
107 tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
108 case $CC_FOR_BUILD,$HOST_CC,$CC in
109 ,,) echo "int x;" > $dummy.c ;
110 for c in cc gcc c89 c99 ; do
111 if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
112 CC_FOR_BUILD="$c"; break ;
113 fi ;
114 done ;
115 if test x"$CC_FOR_BUILD" = x ; then
116 CC_FOR_BUILD=no_compiler_found ;
117 fi
118 ;;
119 ,,*) CC_FOR_BUILD=$CC ;;
120 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
121 esac ; set_cc_for_build= ;'
96 tmp=
97 # shellcheck disable=SC2172
98 trap 'test -z "$tmp" || rm -fr "$tmp"' 1 2 13 15
99 trap 'exitcode=$?; test -z "$tmp" || rm -fr "$tmp"; exit $exitcode' 0
100
101 set_cc_for_build() {
102 : "${TMPDIR=/tmp}"
103 # shellcheck disable=SC2039
104 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
105 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } ||
106 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } ||
107 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; }
108 dummy=$tmp/dummy
109 case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in
110 ,,) echo "int x;" > "$dummy.c"
111 for driver in cc gcc c89 c99 ; do
112 if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then
113 CC_FOR_BUILD="$driver"
114 break
115 fi
116 done
117 if test x"$CC_FOR_BUILD" = x ; then
118 CC_FOR_BUILD=no_compiler_found
119 fi
120 ;;
121 ,,*) CC_FOR_BUILD=$CC ;;
122 ,*,*) CC_FOR_BUILD=$HOST_CC ;;
123 esac
124 }
122125
123126 # This is needed to find uname on a Pyramid OSx when run in the BSD universe.
124127 # (ghazi@noc.rutgers.edu 1994-08-24)
125 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
128 if test -f /.attbin/uname ; then
126129 PATH=$PATH:/.attbin ; export PATH
127130 fi
128131
131134 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
132135 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
133136
134 case "${UNAME_SYSTEM}" in
137 case "$UNAME_SYSTEM" in
135138 Linux|GNU|GNU/*)
136139 # If the system lacks a compiler, then just pick glibc.
137140 # We could probably try harder.
138141 LIBC=gnu
139142
140 eval $set_cc_for_build
141 cat <<-EOF > $dummy.c
143 set_cc_for_build
144 cat <<-EOF > "$dummy.c"
142145 #include <features.h>
143146 #if defined(__UCLIBC__)
144147 LIBC=uclibc
148151 LIBC=gnu
149152 #endif
150153 EOF
151 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
154 eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
155
156 # If ldd exists, use it to detect musl libc.
157 if command -v ldd >/dev/null && \
158 ldd --version 2>&1 | grep -q ^musl
159 then
160 LIBC=musl
161 fi
152162 ;;
153163 esac
154164
155165 # Note: order is significant - the case branches are not exclusive.
156166
157 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
167 case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
158168 *:NetBSD:*:*)
159169 # NetBSD (nbsd) targets should (where applicable) match one or
160170 # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
168178 # portion of the name. We always set it to "unknown".
169179 sysctl="sysctl -n hw.machine_arch"
170180 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \
171 /sbin/$sysctl 2>/dev/null || \
172 /usr/sbin/$sysctl 2>/dev/null || \
181 "/sbin/$sysctl" 2>/dev/null || \
182 "/usr/sbin/$sysctl" 2>/dev/null || \
173183 echo unknown)`
174 case "${UNAME_MACHINE_ARCH}" in
184 case "$UNAME_MACHINE_ARCH" in
175185 armeb) machine=armeb-unknown ;;
176186 arm*) machine=arm-unknown ;;
177187 sh3el) machine=shl-unknown ;;
178188 sh3eb) machine=sh-unknown ;;
179189 sh5el) machine=sh5le-unknown ;;
180190 earmv*)
181 arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
182 endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`
183 machine=${arch}${endian}-unknown
191 arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
192 endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
193 machine="${arch}${endian}"-unknown
184194 ;;
185 *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
195 *) machine="$UNAME_MACHINE_ARCH"-unknown ;;
186196 esac
187197 # The Operating System including object format, if it has switched
188198 # to ELF recently (or will in the future) and ABI.
189 case "${UNAME_MACHINE_ARCH}" in
199 case "$UNAME_MACHINE_ARCH" in
190200 earm*)
191201 os=netbsdelf
192202 ;;
193203 arm*|i386|m68k|ns32k|sh3*|sparc|vax)
194 eval $set_cc_for_build
204 set_cc_for_build
195205 if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
196206 | grep -q __ELF__
197207 then
207217 ;;
208218 esac
209219 # Determine ABI tags.
210 case "${UNAME_MACHINE_ARCH}" in
220 case "$UNAME_MACHINE_ARCH" in
211221 earm*)
212222 expr='s/^earmv[0-9]/-eabi/;s/eb$//'
213 abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`
223 abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
214224 ;;
215225 esac
216226 # The OS release
218228 # thus, need a distinct triplet. However, they do not need
219229 # kernel version information, so it can be replaced with a
220230 # suitable tag, in the style of linux-gnu.
221 case "${UNAME_VERSION}" in
231 case "$UNAME_VERSION" in
222232 Debian*)
223233 release='-gnu'
224234 ;;
225235 *)
226 release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`
236 release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
227237 ;;
228238 esac
229239 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
230240 # contains redundant information, the shorter form:
231241 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
232 echo "${machine}-${os}${release}${abi}"
242 echo "$machine-${os}${release}${abi-}"
233243 exit ;;
234244 *:Bitrig:*:*)
235245 UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
236 echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
246 echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE"
237247 exit ;;
238248 *:OpenBSD:*:*)
239249 UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
240 echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
250 echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE"
241251 exit ;;
242252 *:LibertyBSD:*:*)
243253 UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
244 echo ${UNAME_MACHINE_ARCH}-unknown-libertybsd${UNAME_RELEASE}
254 echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE"
255 exit ;;
256 *:MidnightBSD:*:*)
257 echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE"
245258 exit ;;
246259 *:ekkoBSD:*:*)
247 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
260 echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE"
248261 exit ;;
249262 *:SolidBSD:*:*)
250 echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
263 echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE"
251264 exit ;;
252265 macppc:MirBSD:*:*)
253 echo powerpc-unknown-mirbsd${UNAME_RELEASE}
266 echo powerpc-unknown-mirbsd"$UNAME_RELEASE"
254267 exit ;;
255268 *:MirBSD:*:*)
256 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
269 echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE"
257270 exit ;;
258271 *:Sortix:*:*)
259 echo ${UNAME_MACHINE}-unknown-sortix
272 echo "$UNAME_MACHINE"-unknown-sortix
260273 exit ;;
261274 *:Redox:*:*)
262 echo ${UNAME_MACHINE}-unknown-redox
263 exit ;;
275 echo "$UNAME_MACHINE"-unknown-redox
276 exit ;;
277 mips:OSF1:*.*)
278 echo mips-dec-osf1
279 exit ;;
264280 alpha:OSF1:*:*)
265281 case $UNAME_RELEASE in
266282 *4.0)
312328 # A Tn.n version is a released field test version.
313329 # A Xn.n version is an unreleased experimental baselevel.
314330 # 1.2 uses "1.2" for uname -r.
315 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
331 echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
316332 # Reset EXIT trap before exiting to avoid spurious non-zero exit code.
317333 exitcode=$?
318334 trap '' 0
319335 exit $exitcode ;;
320 Alpha\ *:Windows_NT*:*)
321 # How do we know it's Interix rather than the generic POSIX subsystem?
322 # Should we change UNAME_MACHINE based on the output of uname instead
323 # of the specific Alpha model?
324 echo alpha-pc-interix
325 exit ;;
326 21064:Windows_NT:50:3)
327 echo alpha-dec-winnt3.5
328 exit ;;
329336 Amiga*:UNIX_System_V:4.0:*)
330337 echo m68k-unknown-sysv4
331338 exit ;;
332339 *:[Aa]miga[Oo][Ss]:*:*)
333 echo ${UNAME_MACHINE}-unknown-amigaos
340 echo "$UNAME_MACHINE"-unknown-amigaos
334341 exit ;;
335342 *:[Mm]orph[Oo][Ss]:*:*)
336 echo ${UNAME_MACHINE}-unknown-morphos
343 echo "$UNAME_MACHINE"-unknown-morphos
337344 exit ;;
338345 *:OS/390:*:*)
339346 echo i370-ibm-openedition
345352 echo powerpc-ibm-os400
346353 exit ;;
347354 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
348 echo arm-acorn-riscix${UNAME_RELEASE}
355 echo arm-acorn-riscix"$UNAME_RELEASE"
349356 exit ;;
350357 arm*:riscos:*:*|arm*:RISCOS:*:*)
351358 echo arm-unknown-riscos
372379 sparc) echo sparc-icl-nx7; exit ;;
373380 esac ;;
374381 s390x:SunOS:*:*)
375 echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
382 echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
376383 exit ;;
377384 sun4H:SunOS:5.*:*)
378 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
385 echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
379386 exit ;;
380387 sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
381 echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
388 echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
382389 exit ;;
383390 i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
384 echo i386-pc-auroraux${UNAME_RELEASE}
391 echo i386-pc-auroraux"$UNAME_RELEASE"
385392 exit ;;
386393 i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
387 eval $set_cc_for_build
388 SUN_ARCH=i386
389 # If there is a compiler, see if it is configured for 64-bit objects.
390 # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
391 # This test works for both compilers.
392 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
393 if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
394 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
395 grep IS_64BIT_ARCH >/dev/null
396 then
397 SUN_ARCH=x86_64
398 fi
399 fi
400 echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
394 UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
395 case `isainfo -b` in
396 32)
397 echo i386-pc-solaris2"$UNAME_REL"
398 ;;
399 64)
400 echo x86_64-pc-solaris2"$UNAME_REL"
401 ;;
402 esac
401403 exit ;;
402404 sun4*:SunOS:6*:*)
403405 # According to config.sub, this is the proper way to canonicalize
404406 # SunOS6. Hard to guess exactly what SunOS6 will be like, but
405407 # it's likely to be more like Solaris than SunOS4.
406 echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
408 echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
407409 exit ;;
408410 sun4*:SunOS:*:*)
409411 case "`/usr/bin/arch -k`" in
412414 ;;
413415 esac
414416 # Japanese Language versions have a version number like `4.1.3-JL'.
415 echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
417 echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
416418 exit ;;
417419 sun3*:SunOS:*:*)
418 echo m68k-sun-sunos${UNAME_RELEASE}
420 echo m68k-sun-sunos"$UNAME_RELEASE"
419421 exit ;;
420422 sun*:*:4.2BSD:*)
421423 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
422 test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3
424 test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
423425 case "`/bin/arch`" in
424426 sun3)
425 echo m68k-sun-sunos${UNAME_RELEASE}
427 echo m68k-sun-sunos"$UNAME_RELEASE"
426428 ;;
427429 sun4)
428 echo sparc-sun-sunos${UNAME_RELEASE}
430 echo sparc-sun-sunos"$UNAME_RELEASE"
429431 ;;
430432 esac
431433 exit ;;
432434 aushp:SunOS:*:*)
433 echo sparc-auspex-sunos${UNAME_RELEASE}
435 echo sparc-auspex-sunos"$UNAME_RELEASE"
434436 exit ;;
435437 # The situation for MiNT is a little confusing. The machine name
436438 # can be virtually everything (everything which is not
441443 # MiNT. But MiNT is downward compatible to TOS, so this should
442444 # be no problem.
443445 atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
444 echo m68k-atari-mint${UNAME_RELEASE}
446 echo m68k-atari-mint"$UNAME_RELEASE"
445447 exit ;;
446448 atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
447 echo m68k-atari-mint${UNAME_RELEASE}
449 echo m68k-atari-mint"$UNAME_RELEASE"
448450 exit ;;
449451 *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
450 echo m68k-atari-mint${UNAME_RELEASE}
452 echo m68k-atari-mint"$UNAME_RELEASE"
451453 exit ;;
452454 milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
453 echo m68k-milan-mint${UNAME_RELEASE}
455 echo m68k-milan-mint"$UNAME_RELEASE"
454456 exit ;;
455457 hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
456 echo m68k-hades-mint${UNAME_RELEASE}
458 echo m68k-hades-mint"$UNAME_RELEASE"
457459 exit ;;
458460 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
459 echo m68k-unknown-mint${UNAME_RELEASE}
461 echo m68k-unknown-mint"$UNAME_RELEASE"
460462 exit ;;
461463 m68k:machten:*:*)
462 echo m68k-apple-machten${UNAME_RELEASE}
464 echo m68k-apple-machten"$UNAME_RELEASE"
463465 exit ;;
464466 powerpc:machten:*:*)
465 echo powerpc-apple-machten${UNAME_RELEASE}
467 echo powerpc-apple-machten"$UNAME_RELEASE"
466468 exit ;;
467469 RISC*:Mach:*:*)
468470 echo mips-dec-mach_bsd4.3
469471 exit ;;
470472 RISC*:ULTRIX:*:*)
471 echo mips-dec-ultrix${UNAME_RELEASE}
473 echo mips-dec-ultrix"$UNAME_RELEASE"
472474 exit ;;
473475 VAX*:ULTRIX*:*:*)
474 echo vax-dec-ultrix${UNAME_RELEASE}
476 echo vax-dec-ultrix"$UNAME_RELEASE"
475477 exit ;;
476478 2020:CLIX:*:* | 2430:CLIX:*:*)
477 echo clipper-intergraph-clix${UNAME_RELEASE}
479 echo clipper-intergraph-clix"$UNAME_RELEASE"
478480 exit ;;
479481 mips:*:*:UMIPS | mips:*:*:RISCos)
480 eval $set_cc_for_build
481 sed 's/^ //' << EOF >$dummy.c
482 set_cc_for_build
483 sed 's/^ //' << EOF > "$dummy.c"
482484 #ifdef __cplusplus
483485 #include <stdio.h> /* for printf() prototype */
484486 int main (int argc, char *argv[]) {
487489 #endif
488490 #if defined (host_mips) && defined (MIPSEB)
489491 #if defined (SYSTYPE_SYSV)
490 printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
492 printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0);
491493 #endif
492494 #if defined (SYSTYPE_SVR4)
493 printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
495 printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0);
494496 #endif
495497 #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
496 printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
498 printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0);
497499 #endif
498500 #endif
499501 exit (-1);
500502 }
501503 EOF
502 $CC_FOR_BUILD -o $dummy $dummy.c &&
503 dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
504 SYSTEM_NAME=`$dummy $dummyarg` &&
504 $CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
505 dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
506 SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
505507 { echo "$SYSTEM_NAME"; exit; }
506 echo mips-mips-riscos${UNAME_RELEASE}
508 echo mips-mips-riscos"$UNAME_RELEASE"
507509 exit ;;
508510 Motorola:PowerMAX_OS:*:*)
509511 echo powerpc-motorola-powermax
529531 AViiON:dgux:*:*)
530532 # DG/UX returns AViiON for all architectures
531533 UNAME_PROCESSOR=`/usr/bin/uname -p`
532 if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
534 if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ]
533535 then
534 if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
535 [ ${TARGET_BINARY_INTERFACE}x = x ]
536 if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \
537 [ "$TARGET_BINARY_INTERFACE"x = x ]
536538 then
537 echo m88k-dg-dgux${UNAME_RELEASE}
539 echo m88k-dg-dgux"$UNAME_RELEASE"
538540 else
539 echo m88k-dg-dguxbcs${UNAME_RELEASE}
541 echo m88k-dg-dguxbcs"$UNAME_RELEASE"
540542 fi
541543 else
542 echo i586-dg-dgux${UNAME_RELEASE}
544 echo i586-dg-dgux"$UNAME_RELEASE"
543545 fi
544546 exit ;;
545547 M88*:DolphinOS:*:*) # DolphinOS (SVR3)
556558 echo m68k-tektronix-bsd
557559 exit ;;
558560 *:IRIX*:*:*)
559 echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
561 echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
560562 exit ;;
561563 ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
562564 echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
568570 if [ -x /usr/bin/oslevel ] ; then
569571 IBM_REV=`/usr/bin/oslevel`
570572 else
571 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
572 fi
573 echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
573 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
574 fi
575 echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV"
574576 exit ;;
575577 *:AIX:2:3)
576578 if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
577 eval $set_cc_for_build
578 sed 's/^ //' << EOF >$dummy.c
579 set_cc_for_build
580 sed 's/^ //' << EOF > "$dummy.c"
579581 #include <sys/systemcfg.h>
580582
581583 main()
586588 exit(0);
587589 }
588590 EOF
589 if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
591 if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
590592 then
591593 echo "$SYSTEM_NAME"
592594 else
600602 exit ;;
601603 *:AIX:*:[4567])
602604 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
603 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
605 if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
604606 IBM_ARCH=rs6000
605607 else
606608 IBM_ARCH=powerpc
609611 IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |
610612 awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`
611613 else
612 IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
613 fi
614 echo ${IBM_ARCH}-ibm-aix${IBM_REV}
614 IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
615 fi
616 echo "$IBM_ARCH"-ibm-aix"$IBM_REV"
615617 exit ;;
616618 *:AIX:*:*)
617619 echo rs6000-ibm-aix
618620 exit ;;
619 ibmrt:4.4BSD:*|romp-ibm:BSD:*)
621 ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*)
620622 echo romp-ibm-bsd4.4
621623 exit ;;
622624 ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
623 echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
625 echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to
624626 exit ;; # report: romp-ibm BSD 4.3
625627 *:BOSX:*:*)
626628 echo rs6000-bull-bosx
635637 echo m68k-hp-bsd4.4
636638 exit ;;
637639 9000/[34678]??:HP-UX:*:*)
638 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
639 case "${UNAME_MACHINE}" in
640 9000/31? ) HP_ARCH=m68000 ;;
641 9000/[34]?? ) HP_ARCH=m68k ;;
640 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
641 case "$UNAME_MACHINE" in
642 9000/31?) HP_ARCH=m68000 ;;
643 9000/[34]??) HP_ARCH=m68k ;;
642644 9000/[678][0-9][0-9])
643645 if [ -x /usr/bin/getconf ]; then
644646 sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
645647 sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
646 case "${sc_cpu_version}" in
648 case "$sc_cpu_version" in
647649 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0
648650 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1
649651 532) # CPU_PA_RISC2_0
650 case "${sc_kernel_bits}" in
652 case "$sc_kernel_bits" in
651653 32) HP_ARCH=hppa2.0n ;;
652654 64) HP_ARCH=hppa2.0w ;;
653655 '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20
654656 esac ;;
655657 esac
656658 fi
657 if [ "${HP_ARCH}" = "" ]; then
658 eval $set_cc_for_build
659 sed 's/^ //' << EOF >$dummy.c
659 if [ "$HP_ARCH" = "" ]; then
660 set_cc_for_build
661 sed 's/^ //' << EOF > "$dummy.c"
660662
661663 #define _HPUX_SOURCE
662664 #include <stdlib.h>
689691 exit (0);
690692 }
691693 EOF
692 (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
694 (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
693695 test -z "$HP_ARCH" && HP_ARCH=hppa
694696 fi ;;
695697 esac
696 if [ ${HP_ARCH} = hppa2.0w ]
698 if [ "$HP_ARCH" = hppa2.0w ]
697699 then
698 eval $set_cc_for_build
700 set_cc_for_build
699701
700702 # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
701703 # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
714716 HP_ARCH=hppa64
715717 fi
716718 fi
717 echo ${HP_ARCH}-hp-hpux${HPUX_REV}
719 echo "$HP_ARCH"-hp-hpux"$HPUX_REV"
718720 exit ;;
719721 ia64:HP-UX:*:*)
720 HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
721 echo ia64-hp-hpux${HPUX_REV}
722 HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
723 echo ia64-hp-hpux"$HPUX_REV"
722724 exit ;;
723725 3050*:HI-UX:*:*)
724 eval $set_cc_for_build
725 sed 's/^ //' << EOF >$dummy.c
726 set_cc_for_build
727 sed 's/^ //' << EOF > "$dummy.c"
726728 #include <unistd.h>
727729 int
728730 main ()
747749 exit (0);
748750 }
749751 EOF
750 $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
752 $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
751753 { echo "$SYSTEM_NAME"; exit; }
752754 echo unknown-hitachi-hiuxwe2
753755 exit ;;
754 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
756 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*)
755757 echo hppa1.1-hp-bsd
756758 exit ;;
757759 9000/8??:4.3bsd:*:*)
760762 *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
761763 echo hppa1.0-hp-mpeix
762764 exit ;;
763 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
765 hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*)
764766 echo hppa1.1-hp-osf
765767 exit ;;
766768 hp8??:OSF1:*:*)
768770 exit ;;
769771 i*86:OSF1:*:*)
770772 if [ -x /usr/sbin/sysversion ] ; then
771 echo ${UNAME_MACHINE}-unknown-osf1mk
773 echo "$UNAME_MACHINE"-unknown-osf1mk
772774 else
773 echo ${UNAME_MACHINE}-unknown-osf1
775 echo "$UNAME_MACHINE"-unknown-osf1
774776 fi
775777 exit ;;
776778 parisc*:Lites*:*:*)
795797 echo c4-convex-bsd
796798 exit ;;
797799 CRAY*Y-MP:*:*:*)
798 echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
800 echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
799801 exit ;;
800802 CRAY*[A-Z]90:*:*:*)
801 echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
803 echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \
802804 | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
803805 -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
804806 -e 's/\.[^.]*$/.X/'
805807 exit ;;
806808 CRAY*TS:*:*:*)
807 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
809 echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
808810 exit ;;
809811 CRAY*T3E:*:*:*)
810 echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
812 echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
811813 exit ;;
812814 CRAY*SV1:*:*:*)
813 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
815 echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
814816 exit ;;
815817 *:UNICOS/mp:*:*)
816 echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
818 echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
817819 exit ;;
818820 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
819821 FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
820822 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
821 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
823 FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
822824 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
823825 exit ;;
824826 5000:UNIX_System_V:4.*:*)
825827 FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
826 FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
828 FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
827829 echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
828830 exit ;;
829831 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
830 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
832 echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE"
831833 exit ;;
832834 sparc*:BSD/OS:*:*)
833 echo sparc-unknown-bsdi${UNAME_RELEASE}
835 echo sparc-unknown-bsdi"$UNAME_RELEASE"
834836 exit ;;
835837 *:BSD/OS:*:*)
836 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
838 echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE"
839 exit ;;
840 arm:FreeBSD:*:*)
841 UNAME_PROCESSOR=`uname -p`
842 set_cc_for_build
843 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
844 | grep -q __ARM_PCS_VFP
845 then
846 echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi
847 else
848 echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf
849 fi
837850 exit ;;
838851 *:FreeBSD:*:*)
839852 UNAME_PROCESSOR=`/usr/bin/uname -p`
840 case ${UNAME_PROCESSOR} in
853 case "$UNAME_PROCESSOR" in
841854 amd64)
842855 UNAME_PROCESSOR=x86_64 ;;
843856 i386)
844857 UNAME_PROCESSOR=i586 ;;
845858 esac
846 echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
859 echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
847860 exit ;;
848861 i*:CYGWIN*:*)
849 echo ${UNAME_MACHINE}-pc-cygwin
862 echo "$UNAME_MACHINE"-pc-cygwin
850863 exit ;;
851864 *:MINGW64*:*)
852 echo ${UNAME_MACHINE}-pc-mingw64
865 echo "$UNAME_MACHINE"-pc-mingw64
853866 exit ;;
854867 *:MINGW*:*)
855 echo ${UNAME_MACHINE}-pc-mingw32
868 echo "$UNAME_MACHINE"-pc-mingw32
856869 exit ;;
857870 *:MSYS*:*)
858 echo ${UNAME_MACHINE}-pc-msys
859 exit ;;
860 i*:windows32*:*)
861 # uname -m includes "-pc" on this system.
862 echo ${UNAME_MACHINE}-mingw32
871 echo "$UNAME_MACHINE"-pc-msys
863872 exit ;;
864873 i*:PW*:*)
865 echo ${UNAME_MACHINE}-pc-pw32
874 echo "$UNAME_MACHINE"-pc-pw32
866875 exit ;;
867876 *:Interix*:*)
868 case ${UNAME_MACHINE} in
877 case "$UNAME_MACHINE" in
869878 x86)
870 echo i586-pc-interix${UNAME_RELEASE}
879 echo i586-pc-interix"$UNAME_RELEASE"
871880 exit ;;
872881 authenticamd | genuineintel | EM64T)
873 echo x86_64-unknown-interix${UNAME_RELEASE}
882 echo x86_64-unknown-interix"$UNAME_RELEASE"
874883 exit ;;
875884 IA64)
876 echo ia64-unknown-interix${UNAME_RELEASE}
885 echo ia64-unknown-interix"$UNAME_RELEASE"
877886 exit ;;
878887 esac ;;
879 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
880 echo i${UNAME_MACHINE}-pc-mks
881 exit ;;
882 8664:Windows_NT:*)
883 echo x86_64-pc-mks
884 exit ;;
885 i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
886 # How do we know it's Interix rather than the generic POSIX subsystem?
887 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
888 # UNAME_MACHINE based on the output of uname instead of i386?
889 echo i586-pc-interix
890 exit ;;
891888 i*:UWIN*:*)
892 echo ${UNAME_MACHINE}-pc-uwin
889 echo "$UNAME_MACHINE"-pc-uwin
893890 exit ;;
894891 amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
895892 echo x86_64-unknown-cygwin
896893 exit ;;
897 p*:CYGWIN*:*)
898 echo powerpcle-unknown-cygwin
899 exit ;;
900894 prep*:SunOS:5.*:*)
901 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
895 echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
902896 exit ;;
903897 *:GNU:*:*)
904898 # the GNU system
905 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
899 echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
906900 exit ;;
907901 *:GNU/*:*:*)
908902 # other systems with GNU libc and userland
909 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
910 exit ;;
911 i*86:Minix:*:*)
912 echo ${UNAME_MACHINE}-pc-minix
903 echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
904 exit ;;
905 *:Minix:*:*)
906 echo "$UNAME_MACHINE"-unknown-minix
913907 exit ;;
914908 aarch64:Linux:*:*)
915 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
909 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
916910 exit ;;
917911 aarch64_be:Linux:*:*)
918912 UNAME_MACHINE=aarch64_be
919 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
913 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
920914 exit ;;
921915 alpha:Linux:*:*)
922916 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
930924 esac
931925 objdump --private-headers /bin/sh | grep -q ld.so.1
932926 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi
933 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
927 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
934928 exit ;;
935929 arc:Linux:*:* | arceb:Linux:*:*)
936 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
930 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
937931 exit ;;
938932 arm*:Linux:*:*)
939 eval $set_cc_for_build
933 set_cc_for_build
940934 if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
941935 | grep -q __ARM_EABI__
942936 then
943 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
937 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
944938 else
945939 if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
946940 | grep -q __ARM_PCS_VFP
947941 then
948 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
942 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi
949943 else
950 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
944 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf
951945 fi
952946 fi
953947 exit ;;
954948 avr32*:Linux:*:*)
955 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
949 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
956950 exit ;;
957951 cris:Linux:*:*)
958 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
952 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
959953 exit ;;
960954 crisv32:Linux:*:*)
961 echo ${UNAME_MACHINE}-axis-linux-${LIBC}
955 echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
962956 exit ;;
963957 e2k:Linux:*:*)
964 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
958 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
965959 exit ;;
966960 frv:Linux:*:*)
967 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
961 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
968962 exit ;;
969963 hexagon:Linux:*:*)
970 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
964 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
971965 exit ;;
972966 i*86:Linux:*:*)
973 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
967 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
974968 exit ;;
975969 ia64:Linux:*:*)
976 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
970 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
977971 exit ;;
978972 k1om:Linux:*:*)
979 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
973 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
980974 exit ;;
981975 m32r*:Linux:*:*)
982 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
976 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
983977 exit ;;
984978 m68*:Linux:*:*)
985 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
979 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
986980 exit ;;
987981 mips:Linux:*:* | mips64:Linux:*:*)
988 eval $set_cc_for_build
989 sed 's/^ //' << EOF >$dummy.c
982 set_cc_for_build
983 sed 's/^ //' << EOF > "$dummy.c"
990984 #undef CPU
991985 #undef ${UNAME_MACHINE}
992986 #undef ${UNAME_MACHINE}el
1000994 #endif
1001995 #endif
1002996 EOF
1003 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
1004 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
997 eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
998 test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
1005999 ;;
10061000 mips64el:Linux:*:*)
1007 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1001 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10081002 exit ;;
10091003 openrisc*:Linux:*:*)
1010 echo or1k-unknown-linux-${LIBC}
1004 echo or1k-unknown-linux-"$LIBC"
10111005 exit ;;
10121006 or32:Linux:*:* | or1k*:Linux:*:*)
1013 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1007 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10141008 exit ;;
10151009 padre:Linux:*:*)
1016 echo sparc-unknown-linux-${LIBC}
1010 echo sparc-unknown-linux-"$LIBC"
10171011 exit ;;
10181012 parisc64:Linux:*:* | hppa64:Linux:*:*)
1019 echo hppa64-unknown-linux-${LIBC}
1013 echo hppa64-unknown-linux-"$LIBC"
10201014 exit ;;
10211015 parisc:Linux:*:* | hppa:Linux:*:*)
10221016 # Look for CPU level
10231017 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
1024 PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
1025 PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
1026 *) echo hppa-unknown-linux-${LIBC} ;;
1018 PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;;
1019 PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;;
1020 *) echo hppa-unknown-linux-"$LIBC" ;;
10271021 esac
10281022 exit ;;
10291023 ppc64:Linux:*:*)
1030 echo powerpc64-unknown-linux-${LIBC}
1024 echo powerpc64-unknown-linux-"$LIBC"
10311025 exit ;;
10321026 ppc:Linux:*:*)
1033 echo powerpc-unknown-linux-${LIBC}
1027 echo powerpc-unknown-linux-"$LIBC"
10341028 exit ;;
10351029 ppc64le:Linux:*:*)
1036 echo powerpc64le-unknown-linux-${LIBC}
1030 echo powerpc64le-unknown-linux-"$LIBC"
10371031 exit ;;
10381032 ppcle:Linux:*:*)
1039 echo powerpcle-unknown-linux-${LIBC}
1033 echo powerpcle-unknown-linux-"$LIBC"
10401034 exit ;;
10411035 riscv32:Linux:*:* | riscv64:Linux:*:*)
1042 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1036 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10431037 exit ;;
10441038 s390:Linux:*:* | s390x:Linux:*:*)
1045 echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
1039 echo "$UNAME_MACHINE"-ibm-linux-"$LIBC"
10461040 exit ;;
10471041 sh64*:Linux:*:*)
1048 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1042 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10491043 exit ;;
10501044 sh*:Linux:*:*)
1051 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1045 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10521046 exit ;;
10531047 sparc:Linux:*:* | sparc64:Linux:*:*)
1054 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1048 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10551049 exit ;;
10561050 tile*:Linux:*:*)
1057 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1051 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10581052 exit ;;
10591053 vax:Linux:*:*)
1060 echo ${UNAME_MACHINE}-dec-linux-${LIBC}
1054 echo "$UNAME_MACHINE"-dec-linux-"$LIBC"
10611055 exit ;;
10621056 x86_64:Linux:*:*)
1063 echo ${UNAME_MACHINE}-pc-linux-${LIBC}
1057 echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
10641058 exit ;;
10651059 xtensa*:Linux:*:*)
1066 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
1060 echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
10671061 exit ;;
10681062 i*86:DYNIX/ptx:4*:*)
10691063 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
10771071 # I am not positive that other SVR4 systems won't match this,
10781072 # I just have to hope. -- rms.
10791073 # Use sysv4.2uw... so that sysv4* matches it.
1080 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
1074 echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION"
10811075 exit ;;
10821076 i*86:OS/2:*:*)
10831077 # If we were able to find `uname', then EMX Unix compatibility
10841078 # is probably installed.
1085 echo ${UNAME_MACHINE}-pc-os2-emx
1079 echo "$UNAME_MACHINE"-pc-os2-emx
10861080 exit ;;
10871081 i*86:XTS-300:*:STOP)
1088 echo ${UNAME_MACHINE}-unknown-stop
1082 echo "$UNAME_MACHINE"-unknown-stop
10891083 exit ;;
10901084 i*86:atheos:*:*)
1091 echo ${UNAME_MACHINE}-unknown-atheos
1085 echo "$UNAME_MACHINE"-unknown-atheos
10921086 exit ;;
10931087 i*86:syllable:*:*)
1094 echo ${UNAME_MACHINE}-pc-syllable
1088 echo "$UNAME_MACHINE"-pc-syllable
10951089 exit ;;
10961090 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
1097 echo i386-unknown-lynxos${UNAME_RELEASE}
1091 echo i386-unknown-lynxos"$UNAME_RELEASE"
10981092 exit ;;
10991093 i*86:*DOS:*:*)
1100 echo ${UNAME_MACHINE}-pc-msdosdjgpp
1101 exit ;;
1102 i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
1103 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
1094 echo "$UNAME_MACHINE"-pc-msdosdjgpp
1095 exit ;;
1096 i*86:*:4.*:*)
1097 UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
11041098 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
1105 echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
1099 echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL"
11061100 else
1107 echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
1101 echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL"
11081102 fi
11091103 exit ;;
11101104 i*86:*:5:[678]*)
11141108 *Pentium) UNAME_MACHINE=i586 ;;
11151109 *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
11161110 esac
1117 echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
1111 echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}"
11181112 exit ;;
11191113 i*86:*:3.2:*)
11201114 if test -f /usr/options/cb.name; then
11211115 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
1122 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
1116 echo "$UNAME_MACHINE"-pc-isc"$UNAME_REL"
11231117 elif /bin/uname -X 2>/dev/null >/dev/null ; then
11241118 UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
11251119 (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
11291123 && UNAME_MACHINE=i686
11301124 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
11311125 && UNAME_MACHINE=i686
1132 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
1126 echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL"
11331127 else
1134 echo ${UNAME_MACHINE}-pc-sysv32
1128 echo "$UNAME_MACHINE"-pc-sysv32
11351129 fi
11361130 exit ;;
11371131 pc:*:*:*)
11511145 exit ;;
11521146 i860:*:4.*:*) # i860-SVR4
11531147 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
1154 echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
1148 echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4
11551149 else # Add other i860-SVR4 vendors below as they are discovered.
1156 echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
1150 echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4
11571151 fi
11581152 exit ;;
11591153 mini*:CTIX:SYS*5:*)
11731167 test -r /etc/.relid \
11741168 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
11751169 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1176 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1170 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
11771171 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1178 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1172 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
11791173 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
11801174 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
11811175 && { echo i486-ncr-sysv4; exit; } ;;
11841178 test -r /etc/.relid \
11851179 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
11861180 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1187 && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
1181 && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
11881182 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1189 && { echo i586-ncr-sysv4.3${OS_REL}; exit; }
1183 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; }
11901184 /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
1191 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
1185 && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
11921186 m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
1193 echo m68k-unknown-lynxos${UNAME_RELEASE}
1187 echo m68k-unknown-lynxos"$UNAME_RELEASE"
11941188 exit ;;
11951189 mc68030:UNIX_System_V:4.*:*)
11961190 echo m68k-atari-sysv4
11971191 exit ;;
11981192 TSUNAMI:LynxOS:2.*:*)
1199 echo sparc-unknown-lynxos${UNAME_RELEASE}
1193 echo sparc-unknown-lynxos"$UNAME_RELEASE"
12001194 exit ;;
12011195 rs6000:LynxOS:2.*:*)
1202 echo rs6000-unknown-lynxos${UNAME_RELEASE}
1196 echo rs6000-unknown-lynxos"$UNAME_RELEASE"
12031197 exit ;;
12041198 PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
1205 echo powerpc-unknown-lynxos${UNAME_RELEASE}
1199 echo powerpc-unknown-lynxos"$UNAME_RELEASE"
12061200 exit ;;
12071201 SM[BE]S:UNIX_SV:*:*)
1208 echo mips-dde-sysv${UNAME_RELEASE}
1202 echo mips-dde-sysv"$UNAME_RELEASE"
12091203 exit ;;
12101204 RM*:ReliantUNIX-*:*:*)
12111205 echo mips-sni-sysv4
12161210 *:SINIX-*:*:*)
12171211 if uname -p 2>/dev/null >/dev/null ; then
12181212 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1219 echo ${UNAME_MACHINE}-sni-sysv4
1213 echo "$UNAME_MACHINE"-sni-sysv4
12201214 else
12211215 echo ns32k-sni-sysv
12221216 fi
12361230 exit ;;
12371231 i*86:VOS:*:*)
12381232 # From Paul.Green@stratus.com.
1239 echo ${UNAME_MACHINE}-stratus-vos
1233 echo "$UNAME_MACHINE"-stratus-vos
12401234 exit ;;
12411235 *:VOS:*:*)
12421236 # From Paul.Green@stratus.com.
12431237 echo hppa1.1-stratus-vos
12441238 exit ;;
12451239 mc68*:A/UX:*:*)
1246 echo m68k-apple-aux${UNAME_RELEASE}
1240 echo m68k-apple-aux"$UNAME_RELEASE"
12471241 exit ;;
12481242 news*:NEWS-OS:6*:*)
12491243 echo mips-sony-newsos6
12501244 exit ;;
12511245 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
12521246 if [ -d /usr/nec ]; then
1253 echo mips-nec-sysv${UNAME_RELEASE}
1247 echo mips-nec-sysv"$UNAME_RELEASE"
12541248 else
1255 echo mips-unknown-sysv${UNAME_RELEASE}
1249 echo mips-unknown-sysv"$UNAME_RELEASE"
12561250 fi
12571251 exit ;;
12581252 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
12711265 echo x86_64-unknown-haiku
12721266 exit ;;
12731267 SX-4:SUPER-UX:*:*)
1274 echo sx4-nec-superux${UNAME_RELEASE}
1268 echo sx4-nec-superux"$UNAME_RELEASE"
12751269 exit ;;
12761270 SX-5:SUPER-UX:*:*)
1277 echo sx5-nec-superux${UNAME_RELEASE}
1271 echo sx5-nec-superux"$UNAME_RELEASE"
12781272 exit ;;
12791273 SX-6:SUPER-UX:*:*)
1280 echo sx6-nec-superux${UNAME_RELEASE}
1274 echo sx6-nec-superux"$UNAME_RELEASE"
12811275 exit ;;
12821276 SX-7:SUPER-UX:*:*)
1283 echo sx7-nec-superux${UNAME_RELEASE}
1277 echo sx7-nec-superux"$UNAME_RELEASE"
12841278 exit ;;
12851279 SX-8:SUPER-UX:*:*)
1286 echo sx8-nec-superux${UNAME_RELEASE}
1280 echo sx8-nec-superux"$UNAME_RELEASE"
12871281 exit ;;
12881282 SX-8R:SUPER-UX:*:*)
1289 echo sx8r-nec-superux${UNAME_RELEASE}
1283 echo sx8r-nec-superux"$UNAME_RELEASE"
12901284 exit ;;
12911285 SX-ACE:SUPER-UX:*:*)
1292 echo sxace-nec-superux${UNAME_RELEASE}
1286 echo sxace-nec-superux"$UNAME_RELEASE"
12931287 exit ;;
12941288 Power*:Rhapsody:*:*)
1295 echo powerpc-apple-rhapsody${UNAME_RELEASE}
1289 echo powerpc-apple-rhapsody"$UNAME_RELEASE"
12961290 exit ;;
12971291 *:Rhapsody:*:*)
1298 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
1292 echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE"
12991293 exit ;;
13001294 *:Darwin:*:*)
13011295 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
1302 eval $set_cc_for_build
1296 set_cc_for_build
13031297 if test "$UNAME_PROCESSOR" = unknown ; then
13041298 UNAME_PROCESSOR=powerpc
13051299 fi
1306 if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
1300 if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
13071301 if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
13081302 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
13091303 (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
13311325 # that Apple uses in portable devices.
13321326 UNAME_PROCESSOR=x86_64
13331327 fi
1334 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1328 echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE"
13351329 exit ;;
13361330 *:procnto*:*:* | *:QNX:[0123456789]*:*)
13371331 UNAME_PROCESSOR=`uname -p`
13391333 UNAME_PROCESSOR=i386
13401334 UNAME_MACHINE=pc
13411335 fi
1342 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
1336 echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE"
13431337 exit ;;
13441338 *:QNX:*:4*)
13451339 echo i386-pc-qnx
13461340 exit ;;
13471341 NEO-*:NONSTOP_KERNEL:*:*)
1348 echo neo-tandem-nsk${UNAME_RELEASE}
1342 echo neo-tandem-nsk"$UNAME_RELEASE"
13491343 exit ;;
13501344 NSE-*:NONSTOP_KERNEL:*:*)
1351 echo nse-tandem-nsk${UNAME_RELEASE}
1345 echo nse-tandem-nsk"$UNAME_RELEASE"
13521346 exit ;;
13531347 NSR-*:NONSTOP_KERNEL:*:*)
1354 echo nsr-tandem-nsk${UNAME_RELEASE}
1348 echo nsr-tandem-nsk"$UNAME_RELEASE"
1349 exit ;;
1350 NSV-*:NONSTOP_KERNEL:*:*)
1351 echo nsv-tandem-nsk"$UNAME_RELEASE"
13551352 exit ;;
13561353 NSX-*:NONSTOP_KERNEL:*:*)
1357 echo nsx-tandem-nsk${UNAME_RELEASE}
1354 echo nsx-tandem-nsk"$UNAME_RELEASE"
13581355 exit ;;
13591356 *:NonStop-UX:*:*)
13601357 echo mips-compaq-nonstopux
13631360 echo bs2000-siemens-sysv
13641361 exit ;;
13651362 DS/*:UNIX_System_V:*:*)
1366 echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
1363 echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE"
13671364 exit ;;
13681365 *:Plan9:*:*)
13691366 # "uname -m" is not consistent, so use $cputype instead. 386
13701367 # is converted to i386 for consistency with other x86
13711368 # operating systems.
1369 # shellcheck disable=SC2154
13721370 if test "$cputype" = 386; then
13731371 UNAME_MACHINE=i386
13741372 else
13751373 UNAME_MACHINE="$cputype"
13761374 fi
1377 echo ${UNAME_MACHINE}-unknown-plan9
1375 echo "$UNAME_MACHINE"-unknown-plan9
13781376 exit ;;
13791377 *:TOPS-10:*:*)
13801378 echo pdp10-unknown-tops10
13951393 echo pdp10-unknown-its
13961394 exit ;;
13971395 SEI:*:*:SEIUX)
1398 echo mips-sei-seiux${UNAME_RELEASE}
1396 echo mips-sei-seiux"$UNAME_RELEASE"
13991397 exit ;;
14001398 *:DragonFly:*:*)
1401 echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
1399 echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
14021400 exit ;;
14031401 *:*VMS:*:*)
14041402 UNAME_MACHINE=`(uname -p) 2>/dev/null`
1405 case "${UNAME_MACHINE}" in
1403 case "$UNAME_MACHINE" in
14061404 A*) echo alpha-dec-vms ; exit ;;
14071405 I*) echo ia64-dec-vms ; exit ;;
14081406 V*) echo vax-dec-vms ; exit ;;
14111409 echo i386-pc-xenix
14121410 exit ;;
14131411 i*86:skyos:*:*)
1414 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`
1412 echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
14151413 exit ;;
14161414 i*86:rdos:*:*)
1417 echo ${UNAME_MACHINE}-pc-rdos
1415 echo "$UNAME_MACHINE"-pc-rdos
14181416 exit ;;
14191417 i*86:AROS:*:*)
1420 echo ${UNAME_MACHINE}-pc-aros
1418 echo "$UNAME_MACHINE"-pc-aros
14211419 exit ;;
14221420 x86_64:VMkernel:*:*)
1423 echo ${UNAME_MACHINE}-unknown-esx
1421 echo "$UNAME_MACHINE"-unknown-esx
14241422 exit ;;
14251423 amd64:Isilon\ OneFS:*:*)
14261424 echo x86_64-unknown-onefs
14271425 exit ;;
14281426 esac
14291427
1428 echo "$0: unable to guess system type" >&2
1429
1430 case "$UNAME_MACHINE:$UNAME_SYSTEM" in
1431 mips:Linux | mips64:Linux)
1432 # If we got here on MIPS GNU/Linux, output extra information.
1433 cat >&2 <<EOF
1434
1435 NOTE: MIPS GNU/Linux systems require a C compiler to fully recognize
1436 the system type. Please install a C compiler and try again.
1437 EOF
1438 ;;
1439 esac
1440
14301441 cat >&2 <<EOF
1431 $0: unable to guess system type
14321442
14331443 This script (version $timestamp), has failed to recognize the
14341444 operating system you are using. If your script is old, overwrite *all*
14351445 copies of config.guess and config.sub with the latest versions from:
14361446
1437 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
1447 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
14381448 and
1439 http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
1449 https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
14401450
14411451 If $0 has already been updated, send the following data and any
14421452 information you think might be pertinent to config-patches@gnu.org to
14591469 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
14601470 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
14611471
1462 UNAME_MACHINE = ${UNAME_MACHINE}
1463 UNAME_RELEASE = ${UNAME_RELEASE}
1464 UNAME_SYSTEM = ${UNAME_SYSTEM}
1465 UNAME_VERSION = ${UNAME_VERSION}
1472 UNAME_MACHINE = "$UNAME_MACHINE"
1473 UNAME_RELEASE = "$UNAME_RELEASE"
1474 UNAME_SYSTEM = "$UNAME_SYSTEM"
1475 UNAME_VERSION = "$UNAME_VERSION"
14661476 EOF
14671477
14681478 exit 1
14691479
14701480 # Local variables:
1471 # eval: (add-hook 'write-file-hooks 'time-stamp)
1481 # eval: (add-hook 'before-save-hook 'time-stamp)
14721482 # time-stamp-start: "timestamp='"
14731483 # time-stamp-format: "%:y-%02m-%02d"
14741484 # time-stamp-end: "'"
0 #!/bin/sh
0 #! /bin/sh
11 # Configuration validation subroutine script.
2 # Copyright 1992-2017 Free Software Foundation, Inc.
3
4 timestamp='2017-04-02'
2 # Copyright 1992-2018 Free Software Foundation, Inc.
3
4 timestamp='2018-08-29'
55
66 # This file is free software; you can redistribute it and/or modify it
77 # under the terms of the GNU General Public License as published by
1414 # General Public License for more details.
1515 #
1616 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, see <http://www.gnu.org/licenses/>.
17 # along with this program; if not, see <https://www.gnu.org/licenses/>.
1818 #
1919 # As a special exception to the GNU General Public License, if you
2020 # distribute this file as part of a program that contains a
3232 # Otherwise, we print the canonical config type on stdout and succeed.
3333
3434 # You can get the latest version of this script from:
35 # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
35 # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
3636
3737 # This file is supposed to be the same for all GNU packages
3838 # and recognize all the CPU types, system types and aliases
5656
5757 Canonicalize a configuration name.
5858
59 Operation modes:
59 Options:
6060 -h, --help print this help, then exit
6161 -t, --time-stamp print date of last modification, then exit
6262 -v, --version print version number, then exit
6666 version="\
6767 GNU config.sub ($timestamp)
6868
69 Copyright 1992-2017 Free Software Foundation, Inc.
69 Copyright 1992-2018 Free Software Foundation, Inc.
7070
7171 This is free software; see the source for copying conditions. There is NO
7272 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
9393
9494 *local*)
9595 # First pass through any local machine types.
96 echo $1
96 echo "$1"
9797 exit ;;
9898
9999 * )
109109 exit 1;;
110110 esac
111111
112 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any).
113 # Here we must recognize all the valid KERNEL-OS combinations.
114 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
115 case $maybe_os in
116 nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
117 linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
118 knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \
119 kopensolaris*-gnu* | cloudabi*-eabi* | \
120 storm-chaos* | os2-emx* | rtmk-nova*)
121 os=-$maybe_os
122 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
123 ;;
124 android-linux)
125 os=-linux-android
126 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
127 ;;
128 *)
129 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
130 if [ $basic_machine != $1 ]
131 then os=`echo $1 | sed 's/.*-/-/'`
132 else os=; fi
133 ;;
112 # Split fields of configuration type
113 IFS="-" read -r field1 field2 field3 field4 <<EOF
114 $1
115 EOF
116
117 # Separate into logical components for further validation
118 case $1 in
119 *-*-*-*-*)
120 echo Invalid configuration \`"$1"\': more than four components >&2
121 exit 1
122 ;;
123 *-*-*-*)
124 basic_machine=$field1-$field2
125 os=$field3-$field4
126 ;;
127 *-*-*)
128 # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two
129 # parts
130 maybe_os=$field2-$field3
131 case $maybe_os in
132 nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc \
133 | linux-newlib* | linux-musl* | linux-uclibc* | uclinux-uclibc* \
134 | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
135 | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
136 | storm-chaos* | os2-emx* | rtmk-nova*)
137 basic_machine=$field1
138 os=$maybe_os
139 ;;
140 android-linux)
141 basic_machine=$field1-unknown
142 os=linux-android
143 ;;
144 *)
145 basic_machine=$field1-$field2
146 os=$field3
147 ;;
148 esac
149 ;;
150 *-*)
151 # A lone config we happen to match not fitting any patern
152 case $field1-$field2 in
153 decstation-3100)
154 basic_machine=mips-dec
155 os=
156 ;;
157 *-*)
158 # Second component is usually, but not always the OS
159 case $field2 in
160 # Prevent following clause from handling this valid os
161 sun*os*)
162 basic_machine=$field1
163 os=$field2
164 ;;
165 # Manufacturers
166 dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \
167 | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \
168 | unicom* | ibm* | next | hp | isi* | apollo | altos* \
169 | convergent* | ncr* | news | 32* | 3600* | 3100* \
170 | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \
171 | ultra | tti* | harris | dolphin | highlevel | gould \
172 | cbm | ns | masscomp | apple | axis | knuth | cray \
173 | microblaze* | sim | cisco \
174 | oki | wec | wrs | winbond)
175 basic_machine=$field1-$field2
176 os=
177 ;;
178 *)
179 basic_machine=$field1
180 os=$field2
181 ;;
182 esac
183 ;;
184 esac
185 ;;
186 *)
187 # Convert single-component short-hands not valid as part of
188 # multi-component configurations.
189 case $field1 in
190 386bsd)
191 basic_machine=i386-pc
192 os=bsd
193 ;;
194 a29khif)
195 basic_machine=a29k-amd
196 os=udi
197 ;;
198 adobe68k)
199 basic_machine=m68010-adobe
200 os=scout
201 ;;
202 alliant)
203 basic_machine=fx80-alliant
204 os=
205 ;;
206 altos | altos3068)
207 basic_machine=m68k-altos
208 os=
209 ;;
210 am29k)
211 basic_machine=a29k-none
212 os=bsd
213 ;;
214 amdahl)
215 basic_machine=580-amdahl
216 os=sysv
217 ;;
218 amiga)
219 basic_machine=m68k-unknown
220 os=
221 ;;
222 amigaos | amigados)
223 basic_machine=m68k-unknown
224 os=amigaos
225 ;;
226 amigaunix | amix)
227 basic_machine=m68k-unknown
228 os=sysv4
229 ;;
230 apollo68)
231 basic_machine=m68k-apollo
232 os=sysv
233 ;;
234 apollo68bsd)
235 basic_machine=m68k-apollo
236 os=bsd
237 ;;
238 aros)
239 basic_machine=i386-pc
240 os=aros
241 ;;
242 aux)
243 basic_machine=m68k-apple
244 os=aux
245 ;;
246 balance)
247 basic_machine=ns32k-sequent
248 os=dynix
249 ;;
250 blackfin)
251 basic_machine=bfin-unknown
252 os=linux
253 ;;
254 cegcc)
255 basic_machine=arm-unknown
256 os=cegcc
257 ;;
258 convex-c1)
259 basic_machine=c1-convex
260 os=bsd
261 ;;
262 convex-c2)
263 basic_machine=c2-convex
264 os=bsd
265 ;;
266 convex-c32)
267 basic_machine=c32-convex
268 os=bsd
269 ;;
270 convex-c34)
271 basic_machine=c34-convex
272 os=bsd
273 ;;
274 convex-c38)
275 basic_machine=c38-convex
276 os=bsd
277 ;;
278 cray)
279 basic_machine=j90-cray
280 os=unicos
281 ;;
282 crds | unos)
283 basic_machine=m68k-crds
284 os=
285 ;;
286 da30)
287 basic_machine=m68k-da30
288 os=
289 ;;
290 decstation | pmax | pmin | dec3100 | decstatn)
291 basic_machine=mips-dec
292 os=
293 ;;
294 delta88)
295 basic_machine=m88k-motorola
296 os=sysv3
297 ;;
298 dicos)
299 basic_machine=i686-pc
300 os=dicos
301 ;;
302 djgpp)
303 basic_machine=i586-pc
304 os=msdosdjgpp
305 ;;
306 ebmon29k)
307 basic_machine=a29k-amd
308 os=ebmon
309 ;;
310 es1800 | OSE68k | ose68k | ose | OSE)
311 basic_machine=m68k-ericsson
312 os=ose
313 ;;
314 gmicro)
315 basic_machine=tron-gmicro
316 os=sysv
317 ;;
318 go32)
319 basic_machine=i386-pc
320 os=go32
321 ;;
322 h8300hms)
323 basic_machine=h8300-hitachi
324 os=hms
325 ;;
326 h8300xray)
327 basic_machine=h8300-hitachi
328 os=xray
329 ;;
330 h8500hms)
331 basic_machine=h8500-hitachi
332 os=hms
333 ;;
334 harris)
335 basic_machine=m88k-harris
336 os=sysv3
337 ;;
338 hp300)
339 basic_machine=m68k-hp
340 ;;
341 hp300bsd)
342 basic_machine=m68k-hp
343 os=bsd
344 ;;
345 hp300hpux)
346 basic_machine=m68k-hp
347 os=hpux
348 ;;
349 hppaosf)
350 basic_machine=hppa1.1-hp
351 os=osf
352 ;;
353 hppro)
354 basic_machine=hppa1.1-hp
355 os=proelf
356 ;;
357 i386mach)
358 basic_machine=i386-mach
359 os=mach
360 ;;
361 vsta)
362 basic_machine=i386-pc
363 os=vsta
364 ;;
365 isi68 | isi)
366 basic_machine=m68k-isi
367 os=sysv
368 ;;
369 m68knommu)
370 basic_machine=m68k-unknown
371 os=linux
372 ;;
373 magnum | m3230)
374 basic_machine=mips-mips
375 os=sysv
376 ;;
377 merlin)
378 basic_machine=ns32k-utek
379 os=sysv
380 ;;
381 mingw64)
382 basic_machine=x86_64-pc
383 os=mingw64
384 ;;
385 mingw32)
386 basic_machine=i686-pc
387 os=mingw32
388 ;;
389 mingw32ce)
390 basic_machine=arm-unknown
391 os=mingw32ce
392 ;;
393 monitor)
394 basic_machine=m68k-rom68k
395 os=coff
396 ;;
397 morphos)
398 basic_machine=powerpc-unknown
399 os=morphos
400 ;;
401 moxiebox)
402 basic_machine=moxie-unknown
403 os=moxiebox
404 ;;
405 msdos)
406 basic_machine=i386-pc
407 os=msdos
408 ;;
409 msys)
410 basic_machine=i686-pc
411 os=msys
412 ;;
413 mvs)
414 basic_machine=i370-ibm
415 os=mvs
416 ;;
417 nacl)
418 basic_machine=le32-unknown
419 os=nacl
420 ;;
421 ncr3000)
422 basic_machine=i486-ncr
423 os=sysv4
424 ;;
425 netbsd386)
426 basic_machine=i386-pc
427 os=netbsd
428 ;;
429 netwinder)
430 basic_machine=armv4l-rebel
431 os=linux
432 ;;
433 news | news700 | news800 | news900)
434 basic_machine=m68k-sony
435 os=newsos
436 ;;
437 news1000)
438 basic_machine=m68030-sony
439 os=newsos
440 ;;
441 necv70)
442 basic_machine=v70-nec
443 os=sysv
444 ;;
445 nh3000)
446 basic_machine=m68k-harris
447 os=cxux
448 ;;
449 nh[45]000)
450 basic_machine=m88k-harris
451 os=cxux
452 ;;
453 nindy960)
454 basic_machine=i960-intel
455 os=nindy
456 ;;
457 mon960)
458 basic_machine=i960-intel
459 os=mon960
460 ;;
461 nonstopux)
462 basic_machine=mips-compaq
463 os=nonstopux
464 ;;
465 os400)
466 basic_machine=powerpc-ibm
467 os=os400
468 ;;
469 OSE68000 | ose68000)
470 basic_machine=m68000-ericsson
471 os=ose
472 ;;
473 os68k)
474 basic_machine=m68k-none
475 os=os68k
476 ;;
477 paragon)
478 basic_machine=i860-intel
479 os=osf
480 ;;
481 parisc)
482 basic_machine=hppa-unknown
483 os=linux
484 ;;
485 pw32)
486 basic_machine=i586-unknown
487 os=pw32
488 ;;
489 rdos | rdos64)
490 basic_machine=x86_64-pc
491 os=rdos
492 ;;
493 rdos32)
494 basic_machine=i386-pc
495 os=rdos
496 ;;
497 rom68k)
498 basic_machine=m68k-rom68k
499 os=coff
500 ;;
501 sa29200)
502 basic_machine=a29k-amd
503 os=udi
504 ;;
505 sei)
506 basic_machine=mips-sei
507 os=seiux
508 ;;
509 sequent)
510 basic_machine=i386-sequent
511 os=
512 ;;
513 sps7)
514 basic_machine=m68k-bull
515 os=sysv2
516 ;;
517 st2000)
518 basic_machine=m68k-tandem
519 os=
520 ;;
521 stratus)
522 basic_machine=i860-stratus
523 os=sysv4
524 ;;
525 sun2)
526 basic_machine=m68000-sun
527 os=
528 ;;
529 sun2os3)
530 basic_machine=m68000-sun
531 os=sunos3
532 ;;
533 sun2os4)
534 basic_machine=m68000-sun
535 os=sunos4
536 ;;
537 sun3)
538 basic_machine=m68k-sun
539 os=
540 ;;
541 sun3os3)
542 basic_machine=m68k-sun
543 os=sunos3
544 ;;
545 sun3os4)
546 basic_machine=m68k-sun
547 os=sunos4
548 ;;
549 sun4)
550 basic_machine=sparc-sun
551 os=
552 ;;
553 sun4os3)
554 basic_machine=sparc-sun
555 os=sunos3
556 ;;
557 sun4os4)
558 basic_machine=sparc-sun
559 os=sunos4
560 ;;
561 sun4sol2)
562 basic_machine=sparc-sun
563 os=solaris2
564 ;;
565 sun386 | sun386i | roadrunner)
566 basic_machine=i386-sun
567 os=
568 ;;
569 sv1)
570 basic_machine=sv1-cray
571 os=unicos
572 ;;
573 symmetry)
574 basic_machine=i386-sequent
575 os=dynix
576 ;;
577 t3e)
578 basic_machine=alphaev5-cray
579 os=unicos
580 ;;
581 t90)
582 basic_machine=t90-cray
583 os=unicos
584 ;;
585 toad1)
586 basic_machine=pdp10-xkl
587 os=tops20
588 ;;
589 tpf)
590 basic_machine=s390x-ibm
591 os=tpf
592 ;;
593 udi29k)
594 basic_machine=a29k-amd
595 os=udi
596 ;;
597 ultra3)
598 basic_machine=a29k-nyu
599 os=sym1
600 ;;
601 v810 | necv810)
602 basic_machine=v810-nec
603 os=none
604 ;;
605 vaxv)
606 basic_machine=vax-dec
607 os=sysv
608 ;;
609 vms)
610 basic_machine=vax-dec
611 os=vms
612 ;;
613 vxworks960)
614 basic_machine=i960-wrs
615 os=vxworks
616 ;;
617 vxworks68)
618 basic_machine=m68k-wrs
619 os=vxworks
620 ;;
621 vxworks29k)
622 basic_machine=a29k-wrs
623 os=vxworks
624 ;;
625 xbox)
626 basic_machine=i686-pc
627 os=mingw32
628 ;;
629 ymp)
630 basic_machine=ymp-cray
631 os=unicos
632 ;;
633 *)
634 basic_machine=$1
635 os=
636 ;;
637 esac
638 ;;
134639 esac
135640
136 ### Let's recognize common machines as not being operating systems so
137 ### that things like config.sub decstation-3100 work. We also
138 ### recognize some manufacturers as not being operating systems, so we
139 ### can provide default operating systems below.
140 case $os in
141 -sun*os*)
142 # Prevent following clause from handling this invalid input.
143 ;;
144 -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
145 -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
146 -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \
147 -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
148 -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
149 -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
150 -apple | -axis | -knuth | -cray | -microblaze*)
151 os=
152 basic_machine=$1
153 ;;
154 -bluegene*)
155 os=-cnk
156 ;;
157 -sim | -cisco | -oki | -wec | -winbond)
158 os=
159 basic_machine=$1
160 ;;
161 -scout)
162 ;;
163 -wrs)
164 os=-vxworks
165 basic_machine=$1
166 ;;
167 -chorusos*)
168 os=-chorusos
169 basic_machine=$1
170 ;;
171 -chorusrdb)
172 os=-chorusrdb
173 basic_machine=$1
174 ;;
175 -hiux*)
176 os=-hiuxwe2
177 ;;
178 -sco6)
179 os=-sco5v6
180 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
181 ;;
182 -sco5)
183 os=-sco3.2v5
184 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
185 ;;
186 -sco4)
187 os=-sco3.2v4
188 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
189 ;;
190 -sco3.2.[4-9]*)
191 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
192 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
193 ;;
194 -sco3.2v[4-9]*)
195 # Don't forget version if it is 3.2v4 or newer.
196 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
197 ;;
198 -sco5v6*)
199 # Don't forget version if it is 3.2v4 or newer.
200 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
201 ;;
202 -sco*)
203 os=-sco3.2v2
204 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
205 ;;
206 -udk*)
207 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
208 ;;
209 -isc)
210 os=-isc2.2
211 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
212 ;;
213 -clix*)
214 basic_machine=clipper-intergraph
215 ;;
216 -isc*)
217 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
218 ;;
219 -lynx*178)
220 os=-lynxos178
221 ;;
222 -lynx*5)
223 os=-lynxos5
224 ;;
225 -lynx*)
226 os=-lynxos
227 ;;
228 -ptx*)
229 basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
230 ;;
231 -windowsnt*)
232 os=`echo $os | sed -e 's/windowsnt/winnt/'`
233 ;;
234 -psos*)
235 os=-psos
236 ;;
237 -mint | -mint[0-9]*)
238 basic_machine=m68k-atari
239 os=-mint
240 ;;
241 esac
242
243 # Decode aliases for certain CPU-COMPANY combinations.
641 # Decode 1-component or ad-hoc basic machines
244642 case $basic_machine in
245 # Recognize the basic CPU types without company name.
246 # Some are omitted here because they have special meanings below.
247 1750a | 580 \
248 | a29k \
249 | aarch64 | aarch64_be \
250 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
251 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
252 | am33_2.0 \
253 | arc | arceb \
254 | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
255 | avr | avr32 \
256 | ba \
257 | be32 | be64 \
258 | bfin \
259 | c4x | c8051 | clipper \
260 | d10v | d30v | dlx | dsp16xx \
261 | e2k | epiphany \
262 | fido | fr30 | frv | ft32 \
263 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
264 | hexagon \
265 | i370 | i860 | i960 | ia16 | ia64 \
266 | ip2k | iq2000 \
267 | k1om \
268 | le32 | le64 \
269 | lm32 \
270 | m32c | m32r | m32rle | m68000 | m68k | m88k \
271 | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
272 | mips | mipsbe | mipseb | mipsel | mipsle \
273 | mips16 \
274 | mips64 | mips64el \
275 | mips64octeon | mips64octeonel \
276 | mips64orion | mips64orionel \
277 | mips64r5900 | mips64r5900el \
278 | mips64vr | mips64vrel \
279 | mips64vr4100 | mips64vr4100el \
280 | mips64vr4300 | mips64vr4300el \
281 | mips64vr5000 | mips64vr5000el \
282 | mips64vr5900 | mips64vr5900el \
283 | mipsisa32 | mipsisa32el \
284 | mipsisa32r2 | mipsisa32r2el \
285 | mipsisa32r6 | mipsisa32r6el \
286 | mipsisa64 | mipsisa64el \
287 | mipsisa64r2 | mipsisa64r2el \
288 | mipsisa64r6 | mipsisa64r6el \
289 | mipsisa64sb1 | mipsisa64sb1el \
290 | mipsisa64sr71k | mipsisa64sr71kel \
291 | mipsr5900 | mipsr5900el \
292 | mipstx39 | mipstx39el \
293 | mn10200 | mn10300 \
294 | moxie \
295 | mt \
296 | msp430 \
297 | nds32 | nds32le | nds32be \
298 | nios | nios2 | nios2eb | nios2el \
299 | ns16k | ns32k \
300 | open8 | or1k | or1knd | or32 \
301 | pdp10 | pdp11 | pj | pjl \
302 | powerpc | powerpc64 | powerpc64le | powerpcle \
303 | pru \
304 | pyramid \
305 | riscv32 | riscv64 \
306 | rl78 | rx \
307 | score \
308 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
309 | sh64 | sh64le \
310 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
311 | sparcv8 | sparcv9 | sparcv9b | sparcv9v \
312 | spu \
313 | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
314 | ubicom32 \
315 | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
316 | visium \
317 | wasm32 \
318 | we32k \
319 | x86 | xc16x | xstormy16 | xtensa \
320 | z8k | z80)
321 basic_machine=$basic_machine-unknown
322 ;;
323 c54x)
324 basic_machine=tic54x-unknown
325 ;;
326 c55x)
327 basic_machine=tic55x-unknown
328 ;;
329 c6x)
330 basic_machine=tic6x-unknown
643 # Here we handle the default manufacturer of certain CPU types. It is in
644 # some cases the only manufacturer, in others, it is the most popular.
645 w89k)
646 cpu=hppa1.1
647 vendor=winbond
648 ;;
649 op50n)
650 cpu=hppa1.1
651 vendor=oki
652 ;;
653 op60c)
654 cpu=hppa1.1
655 vendor=oki
656 ;;
657 ibm*)
658 cpu=i370
659 vendor=ibm
660 ;;
661 orion105)
662 cpu=clipper
663 vendor=highlevel
664 ;;
665 mac | mpw | mac-mpw)
666 cpu=m68k
667 vendor=apple
668 ;;
669 pmac | pmac-mpw)
670 cpu=powerpc
671 vendor=apple
672 ;;
673
674 # Recognize the various machine names and aliases which stand
675 # for a CPU type and a company and sometimes even an OS.
676 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
677 cpu=m68000
678 vendor=att
679 ;;
680 3b*)
681 cpu=we32k
682 vendor=att
683 ;;
684 bluegene*)
685 cpu=powerpc
686 vendor=ibm
687 os=cnk
688 ;;
689 decsystem10* | dec10*)
690 cpu=pdp10
691 vendor=dec
692 os=tops10
693 ;;
694 decsystem20* | dec20*)
695 cpu=pdp10
696 vendor=dec
697 os=tops20
698 ;;
699 delta | 3300 | motorola-3300 | motorola-delta \
700 | 3300-motorola | delta-motorola)
701 cpu=m68k
702 vendor=motorola
703 ;;
704 dpx2*)
705 cpu=m68k
706 vendor=bull
707 os=sysv3
708 ;;
709 encore | umax | mmax)
710 cpu=ns32k
711 vendor=encore
712 ;;
713 elxsi)
714 cpu=elxsi
715 vendor=elxsi
716 os=${os:-bsd}
717 ;;
718 fx2800)
719 cpu=i860
720 vendor=alliant
721 ;;
722 genix)
723 cpu=ns32k
724 vendor=ns
725 ;;
726 h3050r* | hiux*)
727 cpu=hppa1.1
728 vendor=hitachi
729 os=hiuxwe2
730 ;;
731 hp3k9[0-9][0-9] | hp9[0-9][0-9])
732 cpu=hppa1.0
733 vendor=hp
734 ;;
735 hp9k2[0-9][0-9] | hp9k31[0-9])
736 cpu=m68000
737 vendor=hp
738 ;;
739 hp9k3[2-9][0-9])
740 cpu=m68k
741 vendor=hp
742 ;;
743 hp9k6[0-9][0-9] | hp6[0-9][0-9])
744 cpu=hppa1.0
745 vendor=hp
746 ;;
747 hp9k7[0-79][0-9] | hp7[0-79][0-9])
748 cpu=hppa1.1
749 vendor=hp
750 ;;
751 hp9k78[0-9] | hp78[0-9])
752 # FIXME: really hppa2.0-hp
753 cpu=hppa1.1
754 vendor=hp
755 ;;
756 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
757 # FIXME: really hppa2.0-hp
758 cpu=hppa1.1
759 vendor=hp
760 ;;
761 hp9k8[0-9][13679] | hp8[0-9][13679])
762 cpu=hppa1.1
763 vendor=hp
764 ;;
765 hp9k8[0-9][0-9] | hp8[0-9][0-9])
766 cpu=hppa1.0
767 vendor=hp
768 ;;
769 i*86v32)
770 cpu=`echo "$1" | sed -e 's/86.*/86/'`
771 vendor=pc
772 os=sysv32
773 ;;
774 i*86v4*)
775 cpu=`echo "$1" | sed -e 's/86.*/86/'`
776 vendor=pc
777 os=sysv4
778 ;;
779 i*86v)
780 cpu=`echo "$1" | sed -e 's/86.*/86/'`
781 vendor=pc
782 os=sysv
783 ;;
784 i*86sol2)
785 cpu=`echo "$1" | sed -e 's/86.*/86/'`
786 vendor=pc
787 os=solaris2
788 ;;
789 j90 | j90-cray)
790 cpu=j90
791 vendor=cray
792 os=${os:-unicos}
793 ;;
794 iris | iris4d)
795 cpu=mips
796 vendor=sgi
797 case $os in
798 irix*)
799 ;;
800 *)
801 os=irix4
802 ;;
803 esac
804 ;;
805 miniframe)
806 cpu=m68000
807 vendor=convergent
808 ;;
809 *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*)
810 cpu=m68k
811 vendor=atari
812 os=mint
813 ;;
814 news-3600 | risc-news)
815 cpu=mips
816 vendor=sony
817 os=newsos
818 ;;
819 next | m*-next)
820 cpu=m68k
821 vendor=next
822 case $os in
823 nextstep* )
824 ;;
825 ns2*)
826 os=nextstep2
827 ;;
828 *)
829 os=nextstep3
830 ;;
831 esac
832 ;;
833 np1)
834 cpu=np1
835 vendor=gould
836 ;;
837 op50n-* | op60c-*)
838 cpu=hppa1.1
839 vendor=oki
840 os=proelf
841 ;;
842 pa-hitachi)
843 cpu=hppa1.1
844 vendor=hitachi
845 os=hiuxwe2
846 ;;
847 pbd)
848 cpu=sparc
849 vendor=tti
850 ;;
851 pbb)
852 cpu=m68k
853 vendor=tti
854 ;;
855 pc532)
856 cpu=ns32k
857 vendor=pc532
858 ;;
859 pn)
860 cpu=pn
861 vendor=gould
862 ;;
863 power)
864 cpu=power
865 vendor=ibm
866 ;;
867 ps2)
868 cpu=i386
869 vendor=ibm
870 ;;
871 rm[46]00)
872 cpu=mips
873 vendor=siemens
874 ;;
875 rtpc | rtpc-*)
876 cpu=romp
877 vendor=ibm
878 ;;
879 sde)
880 cpu=mipsisa32
881 vendor=sde
882 os=${os:-elf}
883 ;;
884 simso-wrs)
885 cpu=sparclite
886 vendor=wrs
887 os=vxworks
888 ;;
889 tower | tower-32)
890 cpu=m68k
891 vendor=ncr
892 ;;
893 vpp*|vx|vx-*)
894 cpu=f301
895 vendor=fujitsu
896 ;;
897 w65)
898 cpu=w65
899 vendor=wdc
900 ;;
901 w89k-*)
902 cpu=hppa1.1
903 vendor=winbond
904 os=proelf
905 ;;
906 none)
907 cpu=none
908 vendor=none
331909 ;;
332910 leon|leon[3-9])
333 basic_machine=sparc-$basic_machine
334 ;;
335 m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
336 basic_machine=$basic_machine-unknown
337 os=-none
338 ;;
339 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
340 ;;
341 ms1)
342 basic_machine=mt-unknown
343 ;;
344
345 strongarm | thumb | xscale)
346 basic_machine=arm-unknown
347 ;;
348 xgate)
349 basic_machine=$basic_machine-unknown
350 os=-none
351 ;;
352 xscaleeb)
353 basic_machine=armeb-unknown
354 ;;
355
356 xscaleel)
357 basic_machine=armel-unknown
358 ;;
359
911 cpu=sparc
912 vendor=$basic_machine
913 ;;
914 leon-*|leon[3-9]-*)
915 cpu=sparc
916 vendor=`echo "$basic_machine" | sed 's/-.*//'`
917 ;;
918
919 *-*)
920 IFS="-" read -r cpu vendor <<EOF
921 $basic_machine
922 EOF
923 ;;
360924 # We use `pc' rather than `unknown'
361925 # because (1) that's what they normally are, and
362926 # (2) the word "unknown" tends to confuse beginning users.
363927 i*86 | x86_64)
364 basic_machine=$basic_machine-pc
365 ;;
366 # Object if more than one company name word.
367 *-*-*)
368 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
369 exit 1
370 ;;
371 # Recognize the basic CPU types with company name.
372 580-* \
373 | a29k-* \
374 | aarch64-* | aarch64_be-* \
375 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
376 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
377 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
378 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
379 | avr-* | avr32-* \
380 | ba-* \
381 | be32-* | be64-* \
382 | bfin-* | bs2000-* \
383 | c[123]* | c30-* | [cjt]90-* | c4x-* \
384 | c8051-* | clipper-* | craynv-* | cydra-* \
385 | d10v-* | d30v-* | dlx-* \
386 | e2k-* | elxsi-* \
387 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
388 | h8300-* | h8500-* \
389 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
390 | hexagon-* \
391 | i*86-* | i860-* | i960-* | ia16-* | ia64-* \
392 | ip2k-* | iq2000-* \
393 | k1om-* \
394 | le32-* | le64-* \
395 | lm32-* \
396 | m32c-* | m32r-* | m32rle-* \
397 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
398 | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
399 | microblaze-* | microblazeel-* \
400 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
401 | mips16-* \
402 | mips64-* | mips64el-* \
403 | mips64octeon-* | mips64octeonel-* \
404 | mips64orion-* | mips64orionel-* \
405 | mips64r5900-* | mips64r5900el-* \
406 | mips64vr-* | mips64vrel-* \
407 | mips64vr4100-* | mips64vr4100el-* \
408 | mips64vr4300-* | mips64vr4300el-* \
409 | mips64vr5000-* | mips64vr5000el-* \
410 | mips64vr5900-* | mips64vr5900el-* \
411 | mipsisa32-* | mipsisa32el-* \
412 | mipsisa32r2-* | mipsisa32r2el-* \
413 | mipsisa32r6-* | mipsisa32r6el-* \
414 | mipsisa64-* | mipsisa64el-* \
415 | mipsisa64r2-* | mipsisa64r2el-* \
416 | mipsisa64r6-* | mipsisa64r6el-* \
417 | mipsisa64sb1-* | mipsisa64sb1el-* \
418 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
419 | mipsr5900-* | mipsr5900el-* \
420 | mipstx39-* | mipstx39el-* \
421 | mmix-* \
422 | mt-* \
423 | msp430-* \
424 | nds32-* | nds32le-* | nds32be-* \
425 | nios-* | nios2-* | nios2eb-* | nios2el-* \
426 | none-* | np1-* | ns16k-* | ns32k-* \
427 | open8-* \
428 | or1k*-* \
429 | orion-* \
430 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
431 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
432 | pru-* \
433 | pyramid-* \
434 | riscv32-* | riscv64-* \
435 | rl78-* | romp-* | rs6000-* | rx-* \
436 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
437 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
438 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
439 | sparclite-* \
440 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \
441 | tahoe-* \
442 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
443 | tile*-* \
444 | tron-* \
445 | ubicom32-* \
446 | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
447 | vax-* \
448 | visium-* \
449 | wasm32-* \
450 | we32k-* \
451 | x86-* | x86_64-* | xc16x-* | xps100-* \
452 | xstormy16-* | xtensa*-* \
453 | ymp-* \
454 | z8k-* | z80-*)
455 ;;
456 # Recognize the basic CPU types without company name, with glob match.
457 xtensa*)
458 basic_machine=$basic_machine-unknown
459 ;;
460 # Recognize the various machine names and aliases which stand
461 # for a CPU type and a company and sometimes even an OS.
462 386bsd)
463 basic_machine=i386-unknown
464 os=-bsd
465 ;;
466 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
467 basic_machine=m68000-att
468 ;;
469 3b*)
470 basic_machine=we32k-att
471 ;;
472 a29khif)
473 basic_machine=a29k-amd
474 os=-udi
475 ;;
476 abacus)
477 basic_machine=abacus-unknown
478 ;;
479 adobe68k)
480 basic_machine=m68010-adobe
481 os=-scout
482 ;;
483 alliant | fx80)
484 basic_machine=fx80-alliant
485 ;;
486 altos | altos3068)
487 basic_machine=m68k-altos
488 ;;
489 am29k)
490 basic_machine=a29k-none
491 os=-bsd
492 ;;
493 amd64)
494 basic_machine=x86_64-pc
495 ;;
928 cpu=$basic_machine
929 vendor=pc
930 ;;
931 # These rules are duplicated from below for sake of the special case above;
932 # i.e. things that normalized to x86 arches should also default to "pc"
933 pc98)
934 cpu=i386
935 vendor=pc
936 ;;
937 x64 | amd64)
938 cpu=x86_64
939 vendor=pc
940 ;;
941 # Recognize the basic CPU types without company name.
942 *)
943 cpu=$basic_machine
944 vendor=unknown
945 ;;
946 esac
947
948 unset -v basic_machine
949
950 # Decode basic machines in the full and proper CPU-Company form.
951 case $cpu-$vendor in
952 # Here we handle the default manufacturer of certain CPU types in cannonical form. It is in
953 # some cases the only manufacturer, in others, it is the most popular.
954 craynv-unknown)
955 vendor=cray
956 os=${os:-unicosmp}
957 ;;
958 c90-unknown | c90-cray)
959 vendor=cray
960 os=${os:-unicos}
961 ;;
962 fx80-unknown)
963 vendor=alliant
964 ;;
965 romp-unknown)
966 vendor=ibm
967 ;;
968 mmix-unknown)
969 vendor=knuth
970 ;;
971 microblaze-unknown | microblazeel-unknown)
972 vendor=xilinx
973 ;;
974 rs6000-unknown)
975 vendor=ibm
976 ;;
977 vax-unknown)
978 vendor=dec
979 ;;
980 pdp11-unknown)
981 vendor=dec
982 ;;
983 we32k-unknown)
984 vendor=att
985 ;;
986 cydra-unknown)
987 vendor=cydrome
988 ;;
989 i370-ibm*)
990 vendor=ibm
991 ;;
992 orion-unknown)
993 vendor=highlevel
994 ;;
995 xps-unknown | xps100-unknown)
996 cpu=xps100
997 vendor=honeywell
998 ;;
999
1000 # Here we normalize CPU types with a missing or matching vendor
1001 dpx20-unknown | dpx20-bull)
1002 cpu=rs6000
1003 vendor=bull
1004 os=${os:-bosx}
1005 ;;
1006
1007 # Here we normalize CPU types irrespective of the vendor
4961008 amd64-*)
497 basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
498 ;;
499 amdahl)
500 basic_machine=580-amdahl
501 os=-sysv
502 ;;
503 amiga | amiga-*)
504 basic_machine=m68k-unknown
505 ;;
506 amigaos | amigados)
507 basic_machine=m68k-unknown
508 os=-amigaos
509 ;;
510 amigaunix | amix)
511 basic_machine=m68k-unknown
512 os=-sysv4
513 ;;
514 apollo68)
515 basic_machine=m68k-apollo
516 os=-sysv
517 ;;
518 apollo68bsd)
519 basic_machine=m68k-apollo
520 os=-bsd
521 ;;
522 aros)
523 basic_machine=i386-pc
524 os=-aros
525 ;;
526 asmjs)
527 basic_machine=asmjs-unknown
528 ;;
529 aux)
530 basic_machine=m68k-apple
531 os=-aux
532 ;;
533 balance)
534 basic_machine=ns32k-sequent
535 os=-dynix
536 ;;
537 blackfin)
538 basic_machine=bfin-unknown
539 os=-linux
1009 cpu=x86_64
5401010 ;;
5411011 blackfin-*)
542 basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
543 os=-linux
1012 cpu=bfin
1013 os=linux
1014 ;;
1015 c54x-*)
1016 cpu=tic54x
1017 ;;
1018 c55x-*)
1019 cpu=tic55x
1020 ;;
1021 c6x-*)
1022 cpu=tic6x
1023 ;;
1024 e500v[12]-*)
1025 cpu=powerpc
1026 os=$os"spe"
1027 ;;
1028 mips3*-*)
1029 cpu=mips64
1030 ;;
1031 ms1-*)
1032 cpu=mt
1033 ;;
1034 m68knommu-*)
1035 cpu=m68k
1036 os=linux
1037 ;;
1038 m9s12z-* | m68hcs12z-* | hcs12z-* | s12z-*)
1039 cpu=s12z
1040 ;;
1041 openrisc-*)
1042 cpu=or32
1043 ;;
1044 parisc-*)
1045 cpu=hppa
1046 os=linux
1047 ;;
1048 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
1049 cpu=i586
1050 ;;
1051 pentiumpro-* | p6-* | 6x86-* | athlon-* | athalon_*-*)
1052 cpu=i686
1053 ;;
1054 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
1055 cpu=i686
1056 ;;
1057 pentium4-*)
1058 cpu=i786
1059 ;;
1060 pc98-*)
1061 cpu=i386
1062 ;;
1063 ppc-* | ppcbe-*)
1064 cpu=powerpc
1065 ;;
1066 ppcle-* | powerpclittle-*)
1067 cpu=powerpcle
1068 ;;
1069 ppc64-*)
1070 cpu=powerpc64
1071 ;;
1072 ppc64le-* | powerpc64little-*)
1073 cpu=powerpc64le
1074 ;;
1075 sb1-*)
1076 cpu=mipsisa64sb1
1077 ;;
1078 sb1el-*)
1079 cpu=mipsisa64sb1el
1080 ;;
1081 sh5e[lb]-*)
1082 cpu=`echo "$cpu" | sed 's/^\(sh.\)e\(.\)$/\1\2e/'`
1083 ;;
1084 spur-*)
1085 cpu=spur
1086 ;;
1087 strongarm-* | thumb-*)
1088 cpu=arm
1089 ;;
1090 tx39-*)
1091 cpu=mipstx39
1092 ;;
1093 tx39el-*)
1094 cpu=mipstx39el
1095 ;;
1096 x64-*)
1097 cpu=x86_64
1098 ;;
1099 xscale-* | xscalee[bl]-*)
1100 cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
1101 ;;
1102
1103 # Recognize the cannonical CPU Types that limit and/or modify the
1104 # company names they are paired with.
1105 cr16-*)
1106 os=${os:-elf}
1107 ;;
1108 crisv32-* | etraxfs*-*)
1109 cpu=crisv32
1110 vendor=axis
1111 ;;
1112 cris-* | etrax*-*)
1113 cpu=cris
1114 vendor=axis
1115 ;;
1116 crx-*)
1117 os=${os:-elf}
1118 ;;
1119 neo-tandem)
1120 cpu=neo
1121 vendor=tandem
1122 ;;
1123 nse-tandem)
1124 cpu=nse
1125 vendor=tandem
1126 ;;
1127 nsr-tandem)
1128 cpu=nsr
1129 vendor=tandem
1130 ;;
1131 nsv-tandem)
1132 cpu=nsv
1133 vendor=tandem
1134 ;;
1135 nsx-tandem)
1136 cpu=nsx
1137 vendor=tandem
1138 ;;
1139 s390-*)
1140 cpu=s390
1141 vendor=ibm
1142 ;;
1143 s390x-*)
1144 cpu=s390x
1145 vendor=ibm
1146 ;;
1147 tile*-*)
1148 os=${os:-linux-gnu}
1149 ;;
1150
1151 *)
1152 # Recognize the cannonical CPU types that are allowed with any
1153 # company name.
1154 case $cpu in
1155 1750a | 580 \
1156 | a29k \
1157 | aarch64 | aarch64_be \
1158 | abacus \
1159 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \
1160 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
1161 | alphapca5[67] | alpha64pca5[67] \
1162 | am33_2.0 \
1163 | arc | arceb \
1164 | arm | arm[lb]e | arme[lb] | armv* \
1165 | avr | avr32 \
1166 | asmjs \
1167 | ba \
1168 | be32 | be64 \
1169 | bfin | bs2000 \
1170 | c[123]* | c30 | [cjt]90 | c4x \
1171 | c8051 | clipper | craynv | csky | cydra \
1172 | d10v | d30v | dlx | dsp16xx \
1173 | e2k | elxsi | epiphany \
1174 | f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \
1175 | h8300 | h8500 \
1176 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
1177 | hexagon \
1178 | i370 | i*86 | i860 | i960 | ia16 | ia64 \
1179 | ip2k | iq2000 \
1180 | k1om \
1181 | le32 | le64 \
1182 | lm32 \
1183 | m32c | m32r | m32rle \
1184 | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | m68k | v70 | w65 \
1185 | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip \
1186 | m88110 | m88k | maxq | mb | mcore | mep | metag \
1187 | microblaze | microblazeel \
1188 | mips | mipsbe | mipseb | mipsel | mipsle \
1189 | mips16 \
1190 | mips64 | mips64el \
1191 | mips64octeon | mips64octeonel \
1192 | mips64orion | mips64orionel \
1193 | mips64r5900 | mips64r5900el \
1194 | mips64vr | mips64vrel \
1195 | mips64vr4100 | mips64vr4100el \
1196 | mips64vr4300 | mips64vr4300el \
1197 | mips64vr5000 | mips64vr5000el \
1198 | mips64vr5900 | mips64vr5900el \
1199 | mipsisa32 | mipsisa32el \
1200 | mipsisa32r2 | mipsisa32r2el \
1201 | mipsisa32r6 | mipsisa32r6el \
1202 | mipsisa64 | mipsisa64el \
1203 | mipsisa64r2 | mipsisa64r2el \
1204 | mipsisa64r6 | mipsisa64r6el \
1205 | mipsisa64sb1 | mipsisa64sb1el \
1206 | mipsisa64sr71k | mipsisa64sr71kel \
1207 | mipsr5900 | mipsr5900el \
1208 | mipstx39 | mipstx39el \
1209 | mmix \
1210 | mn10200 | mn10300 \
1211 | moxie \
1212 | mt \
1213 | msp430 \
1214 | nds32 | nds32le | nds32be \
1215 | nfp \
1216 | nios | nios2 | nios2eb | nios2el \
1217 | none | np1 | ns16k | ns32k \
1218 | open8 \
1219 | or1k* \
1220 | or32 \
1221 | orion \
1222 | pdp10 | pdp11 | pj | pjl | pn | power \
1223 | powerpc | powerpc64 | powerpc64le | powerpcle | powerpcspe \
1224 | pru \
1225 | pyramid \
1226 | riscv | riscv32 | riscv64 \
1227 | rl78 | romp | rs6000 | rx \
1228 | score \
1229 | sh | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] | sh[lb]e \
1230 | sh[1234]e[lb] | sh[12345][lb]e | sh[23]ele | sh64 | sh64le \
1231 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet \
1232 | sparclite \
1233 | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \
1234 | spu \
1235 | tahoe \
1236 | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \
1237 | tron \
1238 | ubicom32 \
1239 | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \
1240 | vax \
1241 | visium \
1242 | wasm32 \
1243 | we32k \
1244 | x86 | x86_64 | xc16x | xgate | xps100 \
1245 | xstormy16 | xtensa* \
1246 | ymp \
1247 | z8k | z80)
1248 ;;
1249
1250 *)
1251 echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
1252 exit 1
1253 ;;
1254 esac
1255 ;;
1256 esac
1257
1258 # Here we canonicalize certain aliases for manufacturers.
1259 case $vendor in
1260 digital*)
1261 vendor=dec
1262 ;;
1263 commodore*)
1264 vendor=cbm
1265 ;;
1266 *)
1267 ;;
1268 esac
1269
1270 # Decode manufacturer-specific aliases for certain operating systems.
1271
1272 if [ x$os != x ]
1273 then
1274 case $os in
1275 # First match some system type aliases that might get confused
1276 # with valid system types.
1277 # solaris* is a basic system type, with this one exception.
1278 auroraux)
1279 os=auroraux
5441280 ;;
5451281 bluegene*)
546 basic_machine=powerpc-ibm
547 os=-cnk
548 ;;
549 c54x-*)
550 basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
551 ;;
552 c55x-*)
553 basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
554 ;;
555 c6x-*)
556 basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
557 ;;
558 c90)
559 basic_machine=c90-cray
560 os=-unicos
561 ;;
562 cegcc)
563 basic_machine=arm-unknown
564 os=-cegcc
565 ;;
566 convex-c1)
567 basic_machine=c1-convex
568 os=-bsd
569 ;;
570 convex-c2)
571 basic_machine=c2-convex
572 os=-bsd
573 ;;
574 convex-c32)
575 basic_machine=c32-convex
576 os=-bsd
577 ;;
578 convex-c34)
579 basic_machine=c34-convex
580 os=-bsd
581 ;;
582 convex-c38)
583 basic_machine=c38-convex
584 os=-bsd
585 ;;
586 cray | j90)
587 basic_machine=j90-cray
588 os=-unicos
589 ;;
590 craynv)
591 basic_machine=craynv-cray
592 os=-unicosmp
593 ;;
594 cr16 | cr16-*)
595 basic_machine=cr16-unknown
596 os=-elf
597 ;;
598 crds | unos)
599 basic_machine=m68k-crds
600 ;;
601 crisv32 | crisv32-* | etraxfs*)
602 basic_machine=crisv32-axis
603 ;;
604 cris | cris-* | etrax*)
605 basic_machine=cris-axis
606 ;;
607 crx)
608 basic_machine=crx-unknown
609 os=-elf
610 ;;
611 da30 | da30-*)
612 basic_machine=m68k-da30
613 ;;
614 decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn)
615 basic_machine=mips-dec
616 ;;
617 decsystem10* | dec10*)
618 basic_machine=pdp10-dec
619 os=-tops10
620 ;;
621 decsystem20* | dec20*)
622 basic_machine=pdp10-dec
623 os=-tops20
624 ;;
625 delta | 3300 | motorola-3300 | motorola-delta \
626 | 3300-motorola | delta-motorola)
627 basic_machine=m68k-motorola
628 ;;
629 delta88)
630 basic_machine=m88k-motorola
631 os=-sysv3
632 ;;
633 dicos)
634 basic_machine=i686-pc
635 os=-dicos
636 ;;
637 djgpp)
638 basic_machine=i586-pc
639 os=-msdosdjgpp
640 ;;
641 dpx20 | dpx20-*)
642 basic_machine=rs6000-bull
643 os=-bosx
644 ;;
645 dpx2* | dpx2*-bull)
646 basic_machine=m68k-bull
647 os=-sysv3
648 ;;
649 e500v[12])
650 basic_machine=powerpc-unknown
651 os=$os"spe"
652 ;;
653 e500v[12]-*)
654 basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
655 os=$os"spe"
656 ;;
657 ebmon29k)
658 basic_machine=a29k-amd
659 os=-ebmon
660 ;;
661 elxsi)
662 basic_machine=elxsi-elxsi
663 os=-bsd
664 ;;
665 encore | umax | mmax)
666 basic_machine=ns32k-encore
667 ;;
668 es1800 | OSE68k | ose68k | ose | OSE)
669 basic_machine=m68k-ericsson
670 os=-ose
671 ;;
672 fx2800)
673 basic_machine=i860-alliant
674 ;;
675 genix)
676 basic_machine=ns32k-ns
677 ;;
678 gmicro)
679 basic_machine=tron-gmicro
680 os=-sysv
681 ;;
682 go32)
683 basic_machine=i386-pc
684 os=-go32
685 ;;
686 h3050r* | hiux*)
687 basic_machine=hppa1.1-hitachi
688 os=-hiuxwe2
689 ;;
690 h8300hms)
691 basic_machine=h8300-hitachi
692 os=-hms
693 ;;
694 h8300xray)
695 basic_machine=h8300-hitachi
696 os=-xray
697 ;;
698 h8500hms)
699 basic_machine=h8500-hitachi
700 os=-hms
701 ;;
702 harris)
703 basic_machine=m88k-harris
704 os=-sysv3
705 ;;
706 hp300-*)
707 basic_machine=m68k-hp
708 ;;
709 hp300bsd)
710 basic_machine=m68k-hp
711 os=-bsd
712 ;;
713 hp300hpux)
714 basic_machine=m68k-hp
715 os=-hpux
716 ;;
717 hp3k9[0-9][0-9] | hp9[0-9][0-9])
718 basic_machine=hppa1.0-hp
719 ;;
720 hp9k2[0-9][0-9] | hp9k31[0-9])
721 basic_machine=m68000-hp
722 ;;
723 hp9k3[2-9][0-9])
724 basic_machine=m68k-hp
725 ;;
726 hp9k6[0-9][0-9] | hp6[0-9][0-9])
727 basic_machine=hppa1.0-hp
728 ;;
729 hp9k7[0-79][0-9] | hp7[0-79][0-9])
730 basic_machine=hppa1.1-hp
731 ;;
732 hp9k78[0-9] | hp78[0-9])
733 # FIXME: really hppa2.0-hp
734 basic_machine=hppa1.1-hp
735 ;;
736 hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893)
737 # FIXME: really hppa2.0-hp
738 basic_machine=hppa1.1-hp
739 ;;
740 hp9k8[0-9][13679] | hp8[0-9][13679])
741 basic_machine=hppa1.1-hp
742 ;;
743 hp9k8[0-9][0-9] | hp8[0-9][0-9])
744 basic_machine=hppa1.0-hp
745 ;;
746 hppa-next)
747 os=-nextstep3
748 ;;
749 hppaosf)
750 basic_machine=hppa1.1-hp
751 os=-osf
752 ;;
753 hppro)
754 basic_machine=hppa1.1-hp
755 os=-proelf
756 ;;
757 i370-ibm* | ibm*)
758 basic_machine=i370-ibm
759 ;;
760 i*86v32)
761 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
762 os=-sysv32
763 ;;
764 i*86v4*)
765 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
766 os=-sysv4
767 ;;
768 i*86v)
769 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
770 os=-sysv
771 ;;
772 i*86sol2)
773 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
774 os=-solaris2
775 ;;
776 i386mach)
777 basic_machine=i386-mach
778 os=-mach
779 ;;
780 i386-vsta | vsta)
781 basic_machine=i386-unknown
782 os=-vsta
783 ;;
784 iris | iris4d)
785 basic_machine=mips-sgi
786 case $os in
787 -irix*)
1282 os=cnk
1283 ;;
1284 solaris1 | solaris1.*)
1285 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1286 ;;
1287 solaris)
1288 os=solaris2
1289 ;;
1290 unixware*)
1291 os=sysv4.2uw
1292 ;;
1293 gnu/linux*)
1294 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1295 ;;
1296 # es1800 is here to avoid being matched by es* (a different OS)
1297 es1800*)
1298 os=ose
1299 ;;
1300 # Some version numbers need modification
1301 chorusos*)
1302 os=chorusos
1303 ;;
1304 isc)
1305 os=isc2.2
1306 ;;
1307 sco6)
1308 os=sco5v6
1309 ;;
1310 sco5)
1311 os=sco3.2v5
1312 ;;
1313 sco4)
1314 os=sco3.2v4
1315 ;;
1316 sco3.2.[4-9]*)
1317 os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
1318 ;;
1319 sco3.2v[4-9]* | sco5v6*)
1320 # Don't forget version if it is 3.2v4 or newer.
1321 ;;
1322 scout)
1323 # Don't match below
1324 ;;
1325 sco*)
1326 os=sco3.2v2
1327 ;;
1328 psos*)
1329 os=psos
1330 ;;
1331 # Now accept the basic system types.
1332 # The portable systems comes first.
1333 # Each alternative MUST end in a * to match a version number.
1334 # sysv* is not here because it comes later, after sysvr4.
1335 gnu* | bsd* | mach* | minix* | genix* | ultrix* | irix* \
1336 | *vms* | esix* | aix* | cnk* | sunos | sunos[34]*\
1337 | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \
1338 | sym* | kopensolaris* | plan9* \
1339 | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \
1340 | aos* | aros* | cloudabi* | sortix* \
1341 | nindy* | vxsim* | vxworks* | ebmon* | hms* | mvs* \
1342 | clix* | riscos* | uniplus* | iris* | isc* | rtu* | xenix* \
1343 | knetbsd* | mirbsd* | netbsd* \
1344 | bitrig* | openbsd* | solidbsd* | libertybsd* \
1345 | ekkobsd* | kfreebsd* | freebsd* | riscix* | lynxos* \
1346 | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \
1347 | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \
1348 | udi* | eabi* | lites* | ieee* | go32* | aux* | hcos* \
1349 | chorusrdb* | cegcc* | glidix* \
1350 | cygwin* | msys* | pe* | moss* | proelf* | rtems* \
1351 | midipix* | mingw32* | mingw64* | linux-gnu* | linux-android* \
1352 | linux-newlib* | linux-musl* | linux-uclibc* \
1353 | uxpv* | beos* | mpeix* | udk* | moxiebox* \
1354 | interix* | uwin* | mks* | rhapsody* | darwin* \
1355 | openstep* | oskit* | conix* | pw32* | nonstopux* \
1356 | storm-chaos* | tops10* | tenex* | tops20* | its* \
1357 | os2* | vos* | palmos* | uclinux* | nucleus* \
1358 | morphos* | superux* | rtmk* | windiss* \
1359 | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
1360 | skyos* | haiku* | rdos* | toppers* | drops* | es* \
1361 | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
1362 | midnightbsd*)
1363 # Remember, each alternative MUST END IN *, to match a version number.
1364 ;;
1365 qnx*)
1366 case $cpu in
1367 x86 | i*86)
7881368 ;;
7891369 *)
790 os=-irix4
1370 os=nto-$os
7911371 ;;
7921372 esac
7931373 ;;
794 isi68 | isi)
795 basic_machine=m68k-isi
796 os=-sysv
797 ;;
798 leon-*|leon[3-9]-*)
799 basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`
800 ;;
801 m68knommu)
802 basic_machine=m68k-unknown
803 os=-linux
804 ;;
805 m68knommu-*)
806 basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
807 os=-linux
808 ;;
809 m88k-omron*)
810 basic_machine=m88k-omron
811 ;;
812 magnum | m3230)
813 basic_machine=mips-mips
814 os=-sysv
815 ;;
816 merlin)
817 basic_machine=ns32k-utek
818 os=-sysv
819 ;;
820 microblaze*)
821 basic_machine=microblaze-xilinx
822 ;;
823 mingw64)
824 basic_machine=x86_64-pc
825 os=-mingw64
826 ;;
827 mingw32)
828 basic_machine=i686-pc
829 os=-mingw32
830 ;;
831 mingw32ce)
832 basic_machine=arm-unknown
833 os=-mingw32ce
834 ;;
835 miniframe)
836 basic_machine=m68000-convergent
837 ;;
838 *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*)
839 basic_machine=m68k-atari
840 os=-mint
841 ;;
842 mips3*-*)
843 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
844 ;;
845 mips3*)
846 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
847 ;;
848 monitor)
849 basic_machine=m68k-rom68k
850 os=-coff
851 ;;
852 morphos)
853 basic_machine=powerpc-unknown
854 os=-morphos
855 ;;
856 moxiebox)
857 basic_machine=moxie-unknown
858 os=-moxiebox
859 ;;
860 msdos)
861 basic_machine=i386-pc
862 os=-msdos
863 ;;
864 ms1-*)
865 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
866 ;;
867 msys)
868 basic_machine=i686-pc
869 os=-msys
870 ;;
871 mvs)
872 basic_machine=i370-ibm
873 os=-mvs
874 ;;
875 nacl)
876 basic_machine=le32-unknown
877 os=-nacl
878 ;;
879 ncr3000)
880 basic_machine=i486-ncr
881 os=-sysv4
882 ;;
883 netbsd386)
884 basic_machine=i386-unknown
885 os=-netbsd
886 ;;
887 netwinder)
888 basic_machine=armv4l-rebel
889 os=-linux
890 ;;
891 news | news700 | news800 | news900)
892 basic_machine=m68k-sony
893 os=-newsos
894 ;;
895 news1000)
896 basic_machine=m68030-sony
897 os=-newsos
898 ;;
899 news-3600 | risc-news)
900 basic_machine=mips-sony
901 os=-newsos
902 ;;
903 necv70)
904 basic_machine=v70-nec
905 os=-sysv
906 ;;
907 next | m*-next )
908 basic_machine=m68k-next
909 case $os in
910 -nextstep* )
911 ;;
912 -ns2*)
913 os=-nextstep2
1374 hiux*)
1375 os=hiuxwe2
1376 ;;
1377 nto-qnx*)
1378 ;;
1379 nto*)
1380 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1381 ;;
1382 sim | xray | os68k* | v88r* \
1383 | windows* | osx | abug | netware* | os9* \
1384 | macos* | mpw* | magic* | mmixware* | mon960* | lnews*)
1385 ;;
1386 linux-dietlibc)
1387 os=linux-dietlibc
1388 ;;
1389 linux*)
1390 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1391 ;;
1392 lynx*178)
1393 os=lynxos178
1394 ;;
1395 lynx*5)
1396 os=lynxos5
1397 ;;
1398 lynx*)
1399 os=lynxos
1400 ;;
1401 mac*)
1402 os=`echo "$os" | sed -e 's|mac|macos|'`
1403 ;;
1404 opened*)
1405 os=openedition
1406 ;;
1407 os400*)
1408 os=os400
1409 ;;
1410 sunos5*)
1411 os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
1412 ;;
1413 sunos6*)
1414 os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
1415 ;;
1416 wince*)
1417 os=wince
1418 ;;
1419 utek*)
1420 os=bsd
1421 ;;
1422 dynix*)
1423 os=bsd
1424 ;;
1425 acis*)
1426 os=aos
1427 ;;
1428 atheos*)
1429 os=atheos
1430 ;;
1431 syllable*)
1432 os=syllable
1433 ;;
1434 386bsd)
1435 os=bsd
1436 ;;
1437 ctix* | uts*)
1438 os=sysv
1439 ;;
1440 nova*)
1441 os=rtmk-nova
1442 ;;
1443 ns2)
1444 os=nextstep2
1445 ;;
1446 nsk*)
1447 os=nsk
1448 ;;
1449 # Preserve the version number of sinix5.
1450 sinix5.*)
1451 os=`echo $os | sed -e 's|sinix|sysv|'`
1452 ;;
1453 sinix*)
1454 os=sysv4
1455 ;;
1456 tpf*)
1457 os=tpf
1458 ;;
1459 triton*)
1460 os=sysv3
1461 ;;
1462 oss*)
1463 os=sysv3
1464 ;;
1465 svr4*)
1466 os=sysv4
1467 ;;
1468 svr3)
1469 os=sysv3
1470 ;;
1471 sysvr4)
1472 os=sysv4
1473 ;;
1474 # This must come after sysvr4.
1475 sysv*)
1476 ;;
1477 ose*)
1478 os=ose
1479 ;;
1480 *mint | mint[0-9]* | *MiNT | MiNT[0-9]*)
1481 os=mint
1482 ;;
1483 zvmoe)
1484 os=zvmoe
1485 ;;
1486 dicos*)
1487 os=dicos
1488 ;;
1489 pikeos*)
1490 # Until real need of OS specific support for
1491 # particular features comes up, bare metal
1492 # configurations are quite functional.
1493 case $cpu in
1494 arm*)
1495 os=eabi
9141496 ;;
9151497 *)
916 os=-nextstep3
1498 os=elf
9171499 ;;
9181500 esac
9191501 ;;
920 nh3000)
921 basic_machine=m68k-harris
922 os=-cxux
923 ;;
924 nh[45]000)
925 basic_machine=m88k-harris
926 os=-cxux
927 ;;
928 nindy960)
929 basic_machine=i960-intel
930 os=-nindy
931 ;;
932 mon960)
933 basic_machine=i960-intel
934 os=-mon960
935 ;;
936 nonstopux)
937 basic_machine=mips-compaq
938 os=-nonstopux
939 ;;
940 np1)
941 basic_machine=np1-gould
942 ;;
943 neo-tandem)
944 basic_machine=neo-tandem
945 ;;
946 nse-tandem)
947 basic_machine=nse-tandem
948 ;;
949 nsr-tandem)
950 basic_machine=nsr-tandem
951 ;;
952 nsx-tandem)
953 basic_machine=nsx-tandem
954 ;;
955 op50n-* | op60c-*)
956 basic_machine=hppa1.1-oki
957 os=-proelf
958 ;;
959 openrisc | openrisc-*)
960 basic_machine=or32-unknown
961 ;;
962 os400)
963 basic_machine=powerpc-ibm
964 os=-os400
965 ;;
966 OSE68000 | ose68000)
967 basic_machine=m68000-ericsson
968 os=-ose
969 ;;
970 os68k)
971 basic_machine=m68k-none
972 os=-os68k
973 ;;
974 pa-hitachi)
975 basic_machine=hppa1.1-hitachi
976 os=-hiuxwe2
977 ;;
978 paragon)
979 basic_machine=i860-intel
980 os=-osf
981 ;;
982 parisc)
983 basic_machine=hppa-unknown
984 os=-linux
985 ;;
986 parisc-*)
987 basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
988 os=-linux
989 ;;
990 pbd)
991 basic_machine=sparc-tti
992 ;;
993 pbb)
994 basic_machine=m68k-tti
995 ;;
996 pc532 | pc532-*)
997 basic_machine=ns32k-pc532
998 ;;
999 pc98)
1000 basic_machine=i386-pc
1001 ;;
1002 pc98-*)
1003 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
1004 ;;
1005 pentium | p5 | k5 | k6 | nexgen | viac3)
1006 basic_machine=i586-pc
1007 ;;
1008 pentiumpro | p6 | 6x86 | athlon | athlon_*)
1009 basic_machine=i686-pc
1010 ;;
1011 pentiumii | pentium2 | pentiumiii | pentium3)
1012 basic_machine=i686-pc
1013 ;;
1014 pentium4)
1015 basic_machine=i786-pc
1016 ;;
1017 pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
1018 basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
1019 ;;
1020 pentiumpro-* | p6-* | 6x86-* | athlon-*)
1021 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
1022 ;;
1023 pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
1024 basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
1025 ;;
1026 pentium4-*)
1027 basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
1028 ;;
1029 pn)
1030 basic_machine=pn-gould
1031 ;;
1032 power) basic_machine=power-ibm
1033 ;;
1034 ppc | ppcbe) basic_machine=powerpc-unknown
1035 ;;
1036 ppc-* | ppcbe-*)
1037 basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
1038 ;;
1039 ppcle | powerpclittle)
1040 basic_machine=powerpcle-unknown
1041 ;;
1042 ppcle-* | powerpclittle-*)
1043 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
1044 ;;
1045 ppc64) basic_machine=powerpc64-unknown
1046 ;;
1047 ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
1048 ;;
1049 ppc64le | powerpc64little)
1050 basic_machine=powerpc64le-unknown
1051 ;;
1052 ppc64le-* | powerpc64little-*)
1053 basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
1054 ;;
1055 ps2)
1056 basic_machine=i386-ibm
1057 ;;
1058 pw32)
1059 basic_machine=i586-unknown
1060 os=-pw32
1061 ;;
1062 rdos | rdos64)
1063 basic_machine=x86_64-pc
1064 os=-rdos
1065 ;;
1066 rdos32)
1067 basic_machine=i386-pc
1068 os=-rdos
1069 ;;
1070 rom68k)
1071 basic_machine=m68k-rom68k
1072 os=-coff
1073 ;;
1074 rm[46]00)
1075 basic_machine=mips-siemens
1076 ;;
1077 rtpc | rtpc-*)
1078 basic_machine=romp-ibm
1079 ;;
1080 s390 | s390-*)
1081 basic_machine=s390-ibm
1082 ;;
1083 s390x | s390x-*)
1084 basic_machine=s390x-ibm
1085 ;;
1086 sa29200)
1087 basic_machine=a29k-amd
1088 os=-udi
1089 ;;
1090 sb1)
1091 basic_machine=mipsisa64sb1-unknown
1092 ;;
1093 sb1el)
1094 basic_machine=mipsisa64sb1el-unknown
1095 ;;
1096 sde)
1097 basic_machine=mipsisa32-sde
1098 os=-elf
1099 ;;
1100 sei)
1101 basic_machine=mips-sei
1102 os=-seiux
1103 ;;
1104 sequent)
1105 basic_machine=i386-sequent
1106 ;;
1107 sh)
1108 basic_machine=sh-hitachi
1109 os=-hms
1110 ;;
1111 sh5el)
1112 basic_machine=sh5le-unknown
1113 ;;
1114 sh64)
1115 basic_machine=sh64-unknown
1116 ;;
1117 sparclite-wrs | simso-wrs)
1118 basic_machine=sparclite-wrs
1119 os=-vxworks
1120 ;;
1121 sps7)
1122 basic_machine=m68k-bull
1123 os=-sysv2
1124 ;;
1125 spur)
1126 basic_machine=spur-unknown
1127 ;;
1128 st2000)
1129 basic_machine=m68k-tandem
1130 ;;
1131 stratus)
1132 basic_machine=i860-stratus
1133 os=-sysv4
1134 ;;
1135 strongarm-* | thumb-*)
1136 basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
1137 ;;
1138 sun2)
1139 basic_machine=m68000-sun
1140 ;;
1141 sun2os3)
1142 basic_machine=m68000-sun
1143 os=-sunos3
1144 ;;
1145 sun2os4)
1146 basic_machine=m68000-sun
1147 os=-sunos4
1148 ;;
1149 sun3os3)
1150 basic_machine=m68k-sun
1151 os=-sunos3
1152 ;;
1153 sun3os4)
1154 basic_machine=m68k-sun
1155 os=-sunos4
1156 ;;
1157 sun4os3)
1158 basic_machine=sparc-sun
1159 os=-sunos3
1160 ;;
1161 sun4os4)
1162 basic_machine=sparc-sun
1163 os=-sunos4
1164 ;;
1165 sun4sol2)
1166 basic_machine=sparc-sun
1167 os=-solaris2
1168 ;;
1169 sun3 | sun3-*)
1170 basic_machine=m68k-sun
1171 ;;
1172 sun4)
1173 basic_machine=sparc-sun
1174 ;;
1175 sun386 | sun386i | roadrunner)
1176 basic_machine=i386-sun
1177 ;;
1178 sv1)
1179 basic_machine=sv1-cray
1180 os=-unicos
1181 ;;
1182 symmetry)
1183 basic_machine=i386-sequent
1184 os=-dynix
1185 ;;
1186 t3e)
1187 basic_machine=alphaev5-cray
1188 os=-unicos
1189 ;;
1190 t90)
1191 basic_machine=t90-cray
1192 os=-unicos
1193 ;;
1194 tile*)
1195 basic_machine=$basic_machine-unknown
1196 os=-linux-gnu
1197 ;;
1198 tx39)
1199 basic_machine=mipstx39-unknown
1200 ;;
1201 tx39el)
1202 basic_machine=mipstx39el-unknown
1203 ;;
1204 toad1)
1205 basic_machine=pdp10-xkl
1206 os=-tops20
1207 ;;
1208 tower | tower-32)
1209 basic_machine=m68k-ncr
1210 ;;
1211 tpf)
1212 basic_machine=s390x-ibm
1213 os=-tpf
1214 ;;
1215 udi29k)
1216 basic_machine=a29k-amd
1217 os=-udi
1218 ;;
1219 ultra3)
1220 basic_machine=a29k-nyu
1221 os=-sym1
1222 ;;
1223 v810 | necv810)
1224 basic_machine=v810-nec
1225 os=-none
1226 ;;
1227 vaxv)
1228 basic_machine=vax-dec
1229 os=-sysv
1230 ;;
1231 vms)
1232 basic_machine=vax-dec
1233 os=-vms
1234 ;;
1235 vpp*|vx|vx-*)
1236 basic_machine=f301-fujitsu
1237 ;;
1238 vxworks960)
1239 basic_machine=i960-wrs
1240 os=-vxworks
1241 ;;
1242 vxworks68)
1243 basic_machine=m68k-wrs
1244 os=-vxworks
1245 ;;
1246 vxworks29k)
1247 basic_machine=a29k-wrs
1248 os=-vxworks
1249 ;;
1250 wasm32)
1251 basic_machine=wasm32-unknown
1252 ;;
1253 w65*)
1254 basic_machine=w65-wdc
1255 os=-none
1256 ;;
1257 w89k-*)
1258 basic_machine=hppa1.1-winbond
1259 os=-proelf
1260 ;;
1261 xbox)
1262 basic_machine=i686-pc
1263 os=-mingw32
1264 ;;
1265 xps | xps100)
1266 basic_machine=xps100-honeywell
1267 ;;
1268 xscale-* | xscalee[bl]-*)
1269 basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
1270 ;;
1271 ymp)
1272 basic_machine=ymp-cray
1273 os=-unicos
1274 ;;
1275 z8k-*-coff)
1276 basic_machine=z8k-unknown
1277 os=-sim
1278 ;;
1279 z80-*-coff)
1280 basic_machine=z80-unknown
1281 os=-sim
1502 nacl*)
1503 ;;
1504 ios)
12821505 ;;
12831506 none)
1284 basic_machine=none-none
1285 os=-none
1286 ;;
1287
1288 # Here we handle the default manufacturer of certain CPU types. It is in
1289 # some cases the only manufacturer, in others, it is the most popular.
1290 w89k)
1291 basic_machine=hppa1.1-winbond
1292 ;;
1293 op50n)
1294 basic_machine=hppa1.1-oki
1295 ;;
1296 op60c)
1297 basic_machine=hppa1.1-oki
1298 ;;
1299 romp)
1300 basic_machine=romp-ibm
1301 ;;
1302 mmix)
1303 basic_machine=mmix-knuth
1304 ;;
1305 rs6000)
1306 basic_machine=rs6000-ibm
1307 ;;
1308 vax)
1309 basic_machine=vax-dec
1310 ;;
1311 pdp10)
1312 # there are many clones, so DEC is not a safe bet
1313 basic_machine=pdp10-unknown
1314 ;;
1315 pdp11)
1316 basic_machine=pdp11-dec
1317 ;;
1318 we32k)
1319 basic_machine=we32k-att
1320 ;;
1321 sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele)
1322 basic_machine=sh-unknown
1323 ;;
1324 sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
1325 basic_machine=sparc-sun
1326 ;;
1327 cydra)
1328 basic_machine=cydra-cydrome
1329 ;;
1330 orion)
1331 basic_machine=orion-highlevel
1332 ;;
1333 orion105)
1334 basic_machine=clipper-highlevel
1335 ;;
1336 mac | mpw | mac-mpw)
1337 basic_machine=m68k-apple
1338 ;;
1339 pmac | pmac-mpw)
1340 basic_machine=powerpc-apple
1341 ;;
1342 *-unknown)
1343 # Make sure to match an already-canonicalized machine name.
1507 ;;
1508 *-eabi)
13441509 ;;
13451510 *)
1346 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
1347 exit 1
1348 ;;
1349 esac
1350
1351 # Here we canonicalize certain aliases for manufacturers.
1352 case $basic_machine in
1353 *-digital*)
1354 basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
1355 ;;
1356 *-commodore*)
1357 basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
1358 ;;
1359 *)
1360 ;;
1361 esac
1362
1363 # Decode manufacturer-specific aliases for certain operating systems.
1364
1365 if [ x"$os" != x"" ]
1366 then
1367 case $os in
1368 # First match some system type aliases
1369 # that might get confused with valid system types.
1370 # -solaris* is a basic system type, with this one exception.
1371 -auroraux)
1372 os=-auroraux
1373 ;;
1374 -solaris1 | -solaris1.*)
1375 os=`echo $os | sed -e 's|solaris1|sunos4|'`
1376 ;;
1377 -solaris)
1378 os=-solaris2
1379 ;;
1380 -svr4*)
1381 os=-sysv4
1382 ;;
1383 -unixware*)
1384 os=-sysv4.2uw
1385 ;;
1386 -gnu/linux*)
1387 os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
1388 ;;
1389 # First accept the basic system types.
1390 # The portable systems comes first.
1391 # Each alternative MUST END IN A *, to match a version number.
1392 # -sysv* is not here because it comes later, after sysvr4.
1393 -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
1394 | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
1395 | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
1396 | -sym* | -kopensolaris* | -plan9* \
1397 | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \
1398 | -aos* | -aros* | -cloudabi* | -sortix* \
1399 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
1400 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1401 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
1402 | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \
1403 | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
1404 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
1405 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1406 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1407 | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \
1408 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1409 | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
1410 | -linux-newlib* | -linux-musl* | -linux-uclibc* \
1411 | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
1412 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1413 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1414 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1415 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1416 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1417 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1418 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \
1419 | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox*)
1420 # Remember, each alternative MUST END IN *, to match a version number.
1421 ;;
1422 -qnx*)
1423 case $basic_machine in
1424 x86-* | i*86-*)
1425 ;;
1426 *)
1427 os=-nto$os
1428 ;;
1429 esac
1430 ;;
1431 -nto-qnx*)
1432 ;;
1433 -nto*)
1434 os=`echo $os | sed -e 's|nto|nto-qnx|'`
1435 ;;
1436 -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
1437 | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \
1438 | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*)
1439 ;;
1440 -mac*)
1441 os=`echo $os | sed -e 's|mac|macos|'`
1442 ;;
1443 -linux-dietlibc)
1444 os=-linux-dietlibc
1445 ;;
1446 -linux*)
1447 os=`echo $os | sed -e 's|linux|linux-gnu|'`
1448 ;;
1449 -sunos5*)
1450 os=`echo $os | sed -e 's|sunos5|solaris2|'`
1451 ;;
1452 -sunos6*)
1453 os=`echo $os | sed -e 's|sunos6|solaris3|'`
1454 ;;
1455 -opened*)
1456 os=-openedition
1457 ;;
1458 -os400*)
1459 os=-os400
1460 ;;
1461 -wince*)
1462 os=-wince
1463 ;;
1464 -osfrose*)
1465 os=-osfrose
1466 ;;
1467 -osf*)
1468 os=-osf
1469 ;;
1470 -utek*)
1471 os=-bsd
1472 ;;
1473 -dynix*)
1474 os=-bsd
1475 ;;
1476 -acis*)
1477 os=-aos
1478 ;;
1479 -atheos*)
1480 os=-atheos
1481 ;;
1482 -syllable*)
1483 os=-syllable
1484 ;;
1485 -386bsd)
1486 os=-bsd
1487 ;;
1488 -ctix* | -uts*)
1489 os=-sysv
1490 ;;
1491 -nova*)
1492 os=-rtmk-nova
1493 ;;
1494 -ns2 )
1495 os=-nextstep2
1496 ;;
1497 -nsk*)
1498 os=-nsk
1499 ;;
1500 # Preserve the version number of sinix5.
1501 -sinix5.*)
1502 os=`echo $os | sed -e 's|sinix|sysv|'`
1503 ;;
1504 -sinix*)
1505 os=-sysv4
1506 ;;
1507 -tpf*)
1508 os=-tpf
1509 ;;
1510 -triton*)
1511 os=-sysv3
1512 ;;
1513 -oss*)
1514 os=-sysv3
1515 ;;
1516 -svr4)
1517 os=-sysv4
1518 ;;
1519 -svr3)
1520 os=-sysv3
1521 ;;
1522 -sysvr4)
1523 os=-sysv4
1524 ;;
1525 # This must come after -sysvr4.
1526 -sysv*)
1527 ;;
1528 -ose*)
1529 os=-ose
1530 ;;
1531 -es1800*)
1532 os=-ose
1533 ;;
1534 -xenix)
1535 os=-xenix
1536 ;;
1537 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1538 os=-mint
1539 ;;
1540 -aros*)
1541 os=-aros
1542 ;;
1543 -zvmoe)
1544 os=-zvmoe
1545 ;;
1546 -dicos*)
1547 os=-dicos
1548 ;;
1549 -nacl*)
1550 ;;
1551 -ios)
1552 ;;
1553 -none)
1554 ;;
1555 *)
1556 # Get rid of the `-' at the beginning of $os.
1557 os=`echo $os | sed 's/[^-]*-//'`
1558 echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
1511 echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
15591512 exit 1
15601513 ;;
15611514 esac
15711524 # will signal an error saying that MANUFACTURER isn't an operating
15721525 # system, and we'll never get to this point.
15731526
1574 case $basic_machine in
1527 case $cpu-$vendor in
15751528 score-*)
1576 os=-elf
1529 os=elf
15771530 ;;
15781531 spu-*)
1579 os=-elf
1532 os=elf
15801533 ;;
15811534 *-acorn)
1582 os=-riscix1.2
1535 os=riscix1.2
15831536 ;;
15841537 arm*-rebel)
1585 os=-linux
1538 os=linux
15861539 ;;
15871540 arm*-semi)
1588 os=-aout
1541 os=aout
15891542 ;;
15901543 c4x-* | tic4x-*)
1591 os=-coff
1544 os=coff
15921545 ;;
15931546 c8051-*)
1594 os=-elf
1547 os=elf
1548 ;;
1549 clipper-intergraph)
1550 os=clix
15951551 ;;
15961552 hexagon-*)
1597 os=-elf
1553 os=elf
15981554 ;;
15991555 tic54x-*)
1600 os=-coff
1556 os=coff
16011557 ;;
16021558 tic55x-*)
1603 os=-coff
1559 os=coff
16041560 ;;
16051561 tic6x-*)
1606 os=-coff
1562 os=coff
16071563 ;;
16081564 # This must come before the *-dec entry.
16091565 pdp10-*)
1610 os=-tops20
1566 os=tops20
16111567 ;;
16121568 pdp11-*)
1613 os=-none
1569 os=none
16141570 ;;
16151571 *-dec | vax-*)
1616 os=-ultrix4.2
1572 os=ultrix4.2
16171573 ;;
16181574 m68*-apollo)
1619 os=-domain
1575 os=domain
16201576 ;;
16211577 i386-sun)
1622 os=-sunos4.0.2
1578 os=sunos4.0.2
16231579 ;;
16241580 m68000-sun)
1625 os=-sunos3
1581 os=sunos3
16261582 ;;
16271583 m68*-cisco)
1628 os=-aout
1584 os=aout
16291585 ;;
16301586 mep-*)
1631 os=-elf
1587 os=elf
16321588 ;;
16331589 mips*-cisco)
1634 os=-elf
1590 os=elf
16351591 ;;
16361592 mips*-*)
1637 os=-elf
1593 os=elf
16381594 ;;
16391595 or32-*)
1640 os=-coff
1596 os=coff
16411597 ;;
16421598 *-tti) # must be before sparc entry or we get the wrong os.
1643 os=-sysv3
1599 os=sysv3
16441600 ;;
16451601 sparc-* | *-sun)
1646 os=-sunos4.1.1
1602 os=sunos4.1.1
16471603 ;;
16481604 pru-*)
1649 os=-elf
1605 os=elf
16501606 ;;
16511607 *-be)
1652 os=-beos
1653 ;;
1654 *-haiku)
1655 os=-haiku
1608 os=beos
16561609 ;;
16571610 *-ibm)
1658 os=-aix
1611 os=aix
16591612 ;;
16601613 *-knuth)
1661 os=-mmixware
1614 os=mmixware
16621615 ;;
16631616 *-wec)
1664 os=-proelf
1617 os=proelf
16651618 ;;
16661619 *-winbond)
1667 os=-proelf
1620 os=proelf
16681621 ;;
16691622 *-oki)
1670 os=-proelf
1623 os=proelf
16711624 ;;
16721625 *-hp)
1673 os=-hpux
1626 os=hpux
16741627 ;;
16751628 *-hitachi)
1676 os=-hiux
1629 os=hiux
16771630 ;;
16781631 i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
1679 os=-sysv
1632 os=sysv
16801633 ;;
16811634 *-cbm)
1682 os=-amigaos
1635 os=amigaos
16831636 ;;
16841637 *-dg)
1685 os=-dgux
1638 os=dgux
16861639 ;;
16871640 *-dolphin)
1688 os=-sysv3
1641 os=sysv3
16891642 ;;
16901643 m68k-ccur)
1691 os=-rtu
1644 os=rtu
16921645 ;;
16931646 m88k-omron*)
1694 os=-luna
1695 ;;
1696 *-next )
1697 os=-nextstep
1647 os=luna
1648 ;;
1649 *-next)
1650 os=nextstep
16981651 ;;
16991652 *-sequent)
1700 os=-ptx
1653 os=ptx
17011654 ;;
17021655 *-crds)
1703 os=-unos
1656 os=unos
17041657 ;;
17051658 *-ns)
1706 os=-genix
1659 os=genix
17071660 ;;
17081661 i370-*)
1709 os=-mvs
1710 ;;
1711 *-next)
1712 os=-nextstep3
1662 os=mvs
17131663 ;;
17141664 *-gould)
1715 os=-sysv
1665 os=sysv
17161666 ;;
17171667 *-highlevel)
1718 os=-bsd
1668 os=bsd
17191669 ;;
17201670 *-encore)
1721 os=-bsd
1671 os=bsd
17221672 ;;
17231673 *-sgi)
1724 os=-irix
1674 os=irix
17251675 ;;
17261676 *-siemens)
1727 os=-sysv4
1677 os=sysv4
17281678 ;;
17291679 *-masscomp)
1730 os=-rtu
1680 os=rtu
17311681 ;;
17321682 f30[01]-fujitsu | f700-fujitsu)
1733 os=-uxpv
1683 os=uxpv
17341684 ;;
17351685 *-rom68k)
1736 os=-coff
1686 os=coff
17371687 ;;
17381688 *-*bug)
1739 os=-coff
1689 os=coff
17401690 ;;
17411691 *-apple)
1742 os=-macos
1692 os=macos
17431693 ;;
17441694 *-atari*)
1745 os=-mint
1695 os=mint
1696 ;;
1697 *-wrs)
1698 os=vxworks
17461699 ;;
17471700 *)
1748 os=-none
1701 os=none
17491702 ;;
17501703 esac
17511704 fi
17521705
17531706 # Here we handle the case where we know the os, and the CPU type, but not the
17541707 # manufacturer. We pick the logical manufacturer.
1755 vendor=unknown
1756 case $basic_machine in
1757 *-unknown)
1708 case $vendor in
1709 unknown)
17581710 case $os in
1759 -riscix*)
1711 riscix*)
17601712 vendor=acorn
17611713 ;;
1762 -sunos*)
1714 sunos*)
17631715 vendor=sun
17641716 ;;
1765 -cnk*|-aix*)
1717 cnk*|-aix*)
17661718 vendor=ibm
17671719 ;;
1768 -beos*)
1720 beos*)
17691721 vendor=be
17701722 ;;
1771 -hpux*)
1723 hpux*)
17721724 vendor=hp
17731725 ;;
1774 -mpeix*)
1726 mpeix*)
17751727 vendor=hp
17761728 ;;
1777 -hiux*)
1729 hiux*)
17781730 vendor=hitachi
17791731 ;;
1780 -unos*)
1732 unos*)
17811733 vendor=crds
17821734 ;;
1783 -dgux*)
1735 dgux*)
17841736 vendor=dg
17851737 ;;
1786 -luna*)
1738 luna*)
17871739 vendor=omron
17881740 ;;
1789 -genix*)
1741 genix*)
17901742 vendor=ns
17911743 ;;
1792 -mvs* | -opened*)
1744 clix*)
1745 vendor=intergraph
1746 ;;
1747 mvs* | opened*)
17931748 vendor=ibm
17941749 ;;
1795 -os400*)
1750 os400*)
17961751 vendor=ibm
17971752 ;;
1798 -ptx*)
1753 ptx*)
17991754 vendor=sequent
18001755 ;;
1801 -tpf*)
1756 tpf*)
18021757 vendor=ibm
18031758 ;;
1804 -vxsim* | -vxworks* | -windiss*)
1759 vxsim* | vxworks* | windiss*)
18051760 vendor=wrs
18061761 ;;
1807 -aux*)
1762 aux*)
18081763 vendor=apple
18091764 ;;
1810 -hms*)
1765 hms*)
18111766 vendor=hitachi
18121767 ;;
1813 -mpw* | -macos*)
1768 mpw* | macos*)
18141769 vendor=apple
18151770 ;;
1816 -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
1771 *mint | mint[0-9]* | *MiNT | MiNT[0-9]*)
18171772 vendor=atari
18181773 ;;
1819 -vos*)
1774 vos*)
18201775 vendor=stratus
18211776 ;;
18221777 esac
1823 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
18241778 ;;
18251779 esac
18261780
1827 echo $basic_machine$os
1781 echo "$cpu-$vendor-$os"
18281782 exit
18291783
18301784 # Local variables:
1831 # eval: (add-hook 'write-file-hooks 'time-stamp)
1785 # eval: (add-hook 'before-save-hook 'time-stamp)
18321786 # time-stamp-start: "timestamp='"
18331787 # time-stamp-format: "%:y-%02m-%02d"
18341788 # time-stamp-end: "'"
0 #!/bin/sh
0 #! /bin/sh
11 # depcomp - compile a program generating dependencies as side-effects
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1999-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1999-2018 Free Software Foundation, Inc.
66
77 # This program is free software; you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
1515 # GNU General Public License for more details.
1616
1717 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
2020 # As a special exception to the GNU General Public License, if you
2121 # distribute this file as part of a program that contains a
782782 # Local Variables:
783783 # mode: shell-script
784784 # sh-indentation: 2
785 # eval: (add-hook 'write-file-hooks 'time-stamp)
785 # eval: (add-hook 'before-save-hook 'time-stamp)
786786 # time-stamp-start: "scriptversion="
787787 # time-stamp-format: "%:y-%02m-%02d.%02H"
788788 # time-stamp-time-zone: "UTC0"
00 #!/bin/sh
11 # install - install a program, script, or datafile
22
3 scriptversion=2016-01-11.22; # UTC
3 scriptversion=2018-03-11.20; # UTC
44
55 # This originates from X11R5 (mit/util/scripts/install.sh), which was
66 # later released in X11R6 (xc/config/util/install.sh) with the
270270 fi
271271 dst=$dst_arg
272272
273 # If destination is a directory, append the input filename; won't work
274 # if double slashes aren't ignored.
273 # If destination is a directory, append the input filename.
275274 if test -d "$dst"; then
276275 if test "$is_target_a_directory" = never; then
277276 echo "$0: $dst_arg: Is a directory" >&2
278277 exit 1
279278 fi
280279 dstdir=$dst
281 dst=$dstdir/`basename "$src"`
280 dstbase=`basename "$src"`
281 case $dst in
282 */) dst=$dst$dstbase;;
283 *) dst=$dst/$dstbase;;
284 esac
282285 dstdir_status=0
283286 else
284287 dstdir=`dirname "$dst"`
286289 dstdir_status=$?
287290 fi
288291 fi
292
293 case $dstdir in
294 */) dstdirslash=$dstdir;;
295 *) dstdirslash=$dstdir/;;
296 esac
289297
290298 obsolete_mkdir_used=false
291299
323331 # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
324332 ;;
325333 *)
334 # Note that $RANDOM variable is not portable (e.g. dash); Use it
335 # here however when possible just to lower collision chance.
326336 tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
327 trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
328
337
338 trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0
339
340 # Because "mkdir -p" follows existing symlinks and we likely work
341 # directly in world-writeable /tmp, make sure that the '$tmpdir'
342 # directory is successfully created first before we actually test
343 # 'mkdir -p' feature.
329344 if (umask $mkdir_umask &&
330 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
345 $mkdirprog $mkdir_mode "$tmpdir" &&
346 exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
331347 then
332348 if test -z "$dir_arg" || {
333349 # Check for POSIX incompatibilities with -m.
334350 # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
335351 # other-writable bit of parent directory when it shouldn't.
336352 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
337 ls_ld_tmpdir=`ls -ld "$tmpdir"`
353 test_tmpdir="$tmpdir/a"
354 ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
338355 case $ls_ld_tmpdir in
339356 d????-?r-*) different_mode=700;;
340357 d????-?--*) different_mode=755;;
341358 *) false;;
342359 esac &&
343 $mkdirprog -m$different_mode -p -- "$tmpdir" && {
344 ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
360 $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
361 ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
345362 test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
346363 }
347364 }
348365 then posix_mkdir=:
349366 fi
350 rmdir "$tmpdir/d" "$tmpdir"
367 rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
351368 else
352369 # Remove any dirs left behind by ancient mkdir implementations.
353 rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
370 rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
354371 fi
355372 trap '' 0;;
356373 esac;;
426443 else
427444
428445 # Make a couple of temp file names in the proper directory.
429 dsttmp=$dstdir/_inst.$$_
430 rmtmp=$dstdir/_rm.$$_
446 dsttmp=${dstdirslash}_inst.$$_
447 rmtmp=${dstdirslash}_rm.$$_
431448
432449 # Trap to clean up those temp files at exit.
433450 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
492509 done
493510
494511 # Local variables:
495 # eval: (add-hook 'write-file-hooks 'time-stamp)
512 # eval: (add-hook 'before-save-hook 'time-stamp)
496513 # time-stamp-start: "scriptversion="
497514 # time-stamp-format: "%:y-%02m-%02d.%02H"
498515 # time-stamp-time-zone: "UTC0"
21232123 # a configuration failure hint, and exit.
21242124 func_fatal_configuration ()
21252125 {
2126 func__fatal_error ${1+"$@"} \
2126 func_fatal_error ${1+"$@"} \
21272127 "See the $PACKAGE documentation for more information." \
21282128 "Fatal configuration error."
21292129 }
0 #!/bin/sh
0 #! /bin/sh
11 # Common wrapper for a few potentially missing GNU programs.
22
3 scriptversion=2016-01-11.22; # UTC
4
5 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
3 scriptversion=2018-03-07.03; # UTC
4
5 # Copyright (C) 1996-2018 Free Software Foundation, Inc.
66 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
77
88 # This program is free software; you can redistribute it and/or modify
1616 # GNU General Public License for more details.
1717
1818 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # along with this program. If not, see <https://www.gnu.org/licenses/>.
2020
2121 # As a special exception to the GNU General Public License, if you
2222 # distribute this file as part of a program that contains a
100100 exit $st
101101 fi
102102
103 perl_URL=http://www.perl.org/
104 flex_URL=http://flex.sourceforge.net/
105 gnu_software_URL=http://www.gnu.org/software
103 perl_URL=https://www.perl.org/
104 flex_URL=https://github.com/westes/flex
105 gnu_software_URL=https://www.gnu.org/software
106106
107107 program_details ()
108108 {
206206 exit $st
207207
208208 # Local variables:
209 # eval: (add-hook 'write-file-hooks 'time-stamp)
209 # eval: (add-hook 'before-save-hook 'time-stamp)
210210 # time-stamp-start: "scriptversion="
211211 # time-stamp-format: "%:y-%02m-%02d.%02H"
212212 # time-stamp-time-zone: "UTC0"
0 #!/bin/sh
0 #! /bin/sh
11 # test-driver - basic testsuite driver script.
22
3 scriptversion=2016-01-11.22; # UTC
3 scriptversion=2018-03-07.03; # UTC
44
5 # Copyright (C) 2011-2017 Free Software Foundation, Inc.
5 # Copyright (C) 2011-2018 Free Software Foundation, Inc.
66 #
77 # This program is free software; you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
1515 # GNU General Public License for more details.
1616 #
1717 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
1919
2020 # As a special exception to the GNU General Public License, if you
2121 # distribute this file as part of a program that contains a
139139 # Local Variables:
140140 # mode: shell-script
141141 # sh-indentation: 2
142 # eval: (add-hook 'write-file-hooks 'time-stamp)
142 # eval: (add-hook 'before-save-hook 'time-stamp)
143143 # time-stamp-start: "scriptversion="
144144 # time-stamp-format: "%:y-%02m-%02d.%02H"
145145 # time-stamp-time-zone: "UTC0"
11
22 /* Build version details */
33 #undef BUILDID
4
5 /* always defined to indicate that i18n is enabled */
6 #undef ENABLE_NLS
74
85 /* Enable compile-time and run-time bounds-checking, and some warnings. */
96 #if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
1411 /* GETTEXT package name */
1512 #undef GETTEXT_PACKAGE
1613
17 /* Define to 1 if you have the `bind_textdomain_codeset' function. */
18 #undef HAVE_BIND_TEXTDOMAIN_CODESET
19
20 /* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the
21 CoreFoundation framework. */
22 #undef HAVE_CFLOCALECOPYCURRENT
23
24 /* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
25 the CoreFoundation framework. */
26 #undef HAVE_CFPREFERENCESCOPYAPPVALUE
27
28 /* Define to 1 if you have the `dcgettext' function. */
29 #undef HAVE_DCGETTEXT
30
3114 /* Define to 1 if you have the <dlfcn.h> header file. */
3215 #undef HAVE_DLFCN_H
3316
3417 /* Define to 1 if you have the `fork' function. */
3518 #undef HAVE_FORK
36
37 /* Define if the GNU gettext() function is already present or preinstalled. */
38 #undef HAVE_GETTEXT
3919
4020 /* Have gtk-vnc? */
4121 #undef HAVE_GTK_VNC
4323 /* Define to 1 if you have the <inttypes.h> header file. */
4424 #undef HAVE_INTTYPES_H
4525
46 /* Define if your <locale.h> file defines LC_MESSAGES. */
47 #undef HAVE_LC_MESSAGES
48
4926 /* Have libvirt? */
5027 #undef HAVE_LIBVIRT
51
52 /* Define to 1 if you have the <locale.h> header file. */
53 #undef HAVE_LOCALE_H
5428
5529 /* Define to 1 if you have the <memory.h> header file. */
5630 #undef HAVE_MEMORY_H
6034
6135 /* Define to 1 if you have the `ovirt_api_search_vms' function. */
6236 #undef HAVE_OVIRT_API_SEARCH_VMS
63
64 /* Have rest_proxy_auth_cancel and OVIRT_REST_CALL_ERROR_CANCELLED? */
65 #undef HAVE_OVIRT_CANCEL
6637
6738 /* Define to 1 if you have the `ovirt_cluster_get_data_center' function. */
6839 #undef HAVE_OVIRT_CLUSTER_GET_DATA_CENTER
11283 /* Have virDomainOpenGraphicsFD? */
11384 #undef HAVE_VIR_DOMAIN_OPEN_GRAPHICS_FD
11485
86 /* Have vte? */
87 #undef HAVE_VTE
88
11589 /* Define to 1 if you have the <windows.h> header file. */
11690 #undef HAVE_WINDOWS_H
11791
+647
-1466
configure less more
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for virt-viewer 7.0.
2 # Generated by GNU Autoconf 2.69 for virt-viewer 9.0.
33 #
44 #
55 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
586586 # Identity of this package.
587587 PACKAGE_NAME='virt-viewer'
588588 PACKAGE_TARNAME='virt-viewer'
589 PACKAGE_VERSION='7.0'
590 PACKAGE_STRING='virt-viewer 7.0'
589 PACKAGE_VERSION='9.0'
590 PACKAGE_STRING='virt-viewer 9.0'
591591 PACKAGE_BUGREPORT=''
592592 PACKAGE_URL=''
593593
629629 #endif"
630630
631631 ac_config_libobj_dir=src
632 enable_nls=yes
633 enable_bash_completion=check
634 with_bash_completions_dir=check
632635 ac_subst_vars='am__EXEEXT_FALSE
633636 am__EXEEXT_TRUE
634637 LTLIBOBJS
642645 HAVE_OVIRT_TRUE
643646 OVIRT_LIBS
644647 OVIRT_CFLAGS
648 HAVE_VTE_FALSE
649 HAVE_VTE_TRUE
650 VTE_LIBS
651 VTE_CFLAGS
645652 HAVE_SPICE_GTK_FALSE
646653 HAVE_SPICE_GTK_TRUE
647654 SPICE_PROTOCOL_LIBS
664671 GLIB2_LIBS
665672 GLIB2_CFLAGS
666673 GLIB_MKENUMS
674 WITH_BASH_COMPLETION_FALSE
675 WITH_BASH_COMPLETION_TRUE
676 BASH_COMPLETIONS_DIR
677 BASH_COMPLETION_LIBS
678 BASH_COMPLETION_CFLAGS
667679 PKG_CONFIG_LIBDIR
668680 PKG_CONFIG_PATH
669681 PKG_CONFIG
670 ALL_LINGUAS
671 INTLTOOL_PERL
682 HAVE_GNU_GETTEXT_TOOLS_FALSE
683 HAVE_GNU_GETTEXT_TOOLS_TRUE
684 ENABLE_NLS_FALSE
685 ENABLE_NLS_TRUE
672686 MSGMERGE
673 INTLTOOL_POLICY_RULE
674 INTLTOOL_SERVICE_RULE
675 INTLTOOL_THEME_RULE
676 INTLTOOL_SCHEMAS_RULE
677 INTLTOOL_CAVES_RULE
678 INTLTOOL_XML_NOMERGE_RULE
679 INTLTOOL_XML_RULE
680 INTLTOOL_KBD_RULE
681 INTLTOOL_XAM_RULE
682 INTLTOOL_UI_RULE
683 INTLTOOL_SOUNDLIST_RULE
684 INTLTOOL_SHEET_RULE
685 INTLTOOL_SERVER_RULE
686 INTLTOOL_PONG_RULE
687 INTLTOOL_OAF_RULE
688 INTLTOOL_PROP_RULE
689 INTLTOOL_KEYS_RULE
690 INTLTOOL_DIRECTORY_RULE
691 INTLTOOL_DESKTOP_RULE
692 intltool__v_merge_options_0
693 intltool__v_merge_options_
694 INTLTOOL_V_MERGE_OPTIONS
695 INTLTOOL__v_MERGE_0
696 INTLTOOL__v_MERGE_
697 INTLTOOL_V_MERGE
698 INTLTOOL_EXTRACT
699 INTLTOOL_MERGE
700 INTLTOOL_UPDATE
701 MKINSTALLDIRS
702 POSUB
703 POFILES
704 PO_IN_DATADIR_FALSE
705 PO_IN_DATADIR_TRUE
706 INTLLIBS
707 INSTOBJEXT
708 GMOFILES
709 DATADIRNAME
710 CATOBJEXT
711 CATALOGS
687 MSGFMT
712688 XGETTEXT
713 GMSGFMT
714 MSGFMT_OPTS
715 MSGFMT
716 INTL_MACOSX_LIBS
717 USE_NLS
718689 GETTEXT_PACKAGE
719690 WARN_CFLAGS
720691 WINDRES
749720 AMDEPBACKSLASH
750721 AMDEP_FALSE
751722 AMDEP_TRUE
752 am__quote
753723 am__include
754724 DEPDIR
755725 OBJEXT
762732 OS_WIN32_FALSE
763733 OS_WIN32_TRUE
764734 WIXL_ARCH
735 REST_REQUIRED
765736 GOVIRT_REQUIRED
766737 SPICE_PROTOCOL_REQUIRED
767738 SPICE_GTK_REQUIRED
771742 LIBVIRT_REQUIRED
772743 LIBXML2_REQUIRED
773744 GLIB2_REQUIRED
745 BASH_COMPLETION_REQUIRED
774746 host_os
775747 host_vendor
776748 host_cpu
843815 PACKAGE_TARNAME
844816 PACKAGE_NAME
845817 PATH_SEPARATOR
846 SHELL'
818 SHELL
819 am__quote'
847820 ac_subst_files=''
848821 ac_user_opts='
849822 enable_option_checking
860833 enable_compile_warnings
861834 enable_iso_c
862835 enable_nls
836 enable_bash_completion
837 with_bash_completions_dir
863838 with_libvirt
864839 with_gtk_vnc
865840 with_spice_gtk
841 with_vte
866842 with_ovirt
867843 with_osid
868844 with_buildid
881857 PKG_CONFIG
882858 PKG_CONFIG_PATH
883859 PKG_CONFIG_LIBDIR
860 BASH_COMPLETION_CFLAGS
861 BASH_COMPLETION_LIBS
884862 GLIB2_CFLAGS
885863 GLIB2_LIBS
886864 GLIB_COMPILE_RESOURCES
896874 SPICE_GTK_LIBS
897875 SPICE_PROTOCOL_CFLAGS
898876 SPICE_PROTOCOL_LIBS
877 VTE_CFLAGS
878 VTE_LIBS
899879 OVIRT_CFLAGS
900880 OVIRT_LIBS'
901881
14381418 # Omit some internal or obsolete options to make the list less imposing.
14391419 # This message is too long to be a string in the A/UX 3.1 sh.
14401420 cat <<_ACEOF
1441 \`configure' configures virt-viewer 7.0 to adapt to many kinds of systems.
1421 \`configure' configures virt-viewer 9.0 to adapt to many kinds of systems.
14421422
14431423 Usage: $0 [OPTION]... [VAR=VALUE]...
14441424
15081488
15091489 if test -n "$ac_init_help"; then
15101490 case $ac_init_help in
1511 short | recursive ) echo "Configuration of virt-viewer 7.0:";;
1491 short | recursive ) echo "Configuration of virt-viewer 9.0:";;
15121492 esac
15131493 cat <<\_ACEOF
15141494
15301510 --enable-compile-warnings=[no/minimum/yes/maximum/error]
15311511 Turn on compiler warnings
15321512 --enable-iso-c Try to warn if code is not ISO C
1533 --disable-nls do not use Native Language Support
1513 --enable-nls NLS [default=yes]
1514 --enable-bash-completion
1515 bash completion [default=check]
15341516 --disable-update-mimedb disable the update-mime-database after install
15351517 [default=no]
15361518
15451527 --with-gnu-ld assume the C compiler uses GNU ld [default=no]
15461528 --with-sysroot[=DIR] Search for dependent libraries within DIR (or the
15471529 compiler's sysroot if not specified).
1530 --with-bash-completions-dir=DIR
1531 directory containing bash completions scripts
1532 [default=check]
15481533 --without-libvirt Ignore presence of libvirt and disable it
15491534 --without-gtk-vnc Ignore presence of gtk-vnc and disable it
15501535 --without-spice-gtk Ignore presence of spice-gtk and disable it
1536 --without-vte Ignore presence of vte and disable it
15511537 --without-ovirt Ignore presence of librest and disable oVirt support
15521538 --with-osid=id Set OS ID for use in .vv files
15531539 --with-buildid=id Set additional build version details
15681554 directories to add to pkg-config's search path
15691555 PKG_CONFIG_LIBDIR
15701556 path overriding pkg-config's built-in search path
1557 BASH_COMPLETION_CFLAGS
1558 C compiler flags for BASH_COMPLETION, overriding pkg-config
1559 BASH_COMPLETION_LIBS
1560 linker flags for BASH_COMPLETION, overriding pkg-config
15711561 GLIB2_CFLAGS
15721562 C compiler flags for GLIB2, overriding pkg-config
15731563 GLIB2_LIBS linker flags for GLIB2, overriding pkg-config
15951585 C compiler flags for SPICE_PROTOCOL, overriding pkg-config
15961586 SPICE_PROTOCOL_LIBS
15971587 linker flags for SPICE_PROTOCOL, overriding pkg-config
1588 VTE_CFLAGS C compiler flags for VTE, overriding pkg-config
1589 VTE_LIBS linker flags for VTE, overriding pkg-config
15981590 OVIRT_CFLAGS
15991591 C compiler flags for OVIRT, overriding pkg-config
16001592 OVIRT_LIBS linker flags for OVIRT, overriding pkg-config
16651657 test -n "$ac_init_help" && exit $ac_status
16661658 if $ac_init_version; then
16671659 cat <<\_ACEOF
1668 virt-viewer configure 7.0
1660 virt-viewer configure 9.0
16691661 generated by GNU Autoconf 2.69
16701662
16711663 Copyright (C) 2012 Free Software Foundation, Inc.
20302022 This file contains any messages produced by compilers while
20312023 running configure, to aid debugging if configure makes a mistake.
20322024
2033 It was created by virt-viewer $as_me 7.0, which was
2025 It was created by virt-viewer $as_me 9.0, which was
20342026 generated by GNU Autoconf 2.69. Invocation command line was
20352027
20362028 $ $0 $@
24112403
24122404 ac_config_headers="$ac_config_headers config.h"
24132405
2414 am__api_version='1.15'
2406 am__api_version='1.16'
24152407
24162408 # Find a good install program. We prefer a C program (faster),
24172409 # so one script is as good as another. But avoid the broken or
28972889
28982890 # Define the identity of the package.
28992891 PACKAGE='virt-viewer'
2900 VERSION='7.0'
2892 VERSION='9.0'
29012893
29022894
29032895 cat >>confdefs.h <<_ACEOF
29272919
29282920 # For better backward compatibility. To be removed once Automake 1.9.x
29292921 # dies out for good. For more background, see:
2930 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2931 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2922 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2923 # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
29322924 mkdir_p='$(MKDIR_P)'
29332925
29342926 # We need awk for the "check" target (and possibly the TAP driver). The
29792971 Aborting the configuration process, to ensure you take notice of the issue.
29802972
29812973 You can download and install GNU coreutils to get an 'rm' implementation
2982 that behaves properly: <http://www.gnu.org/software/coreutils/>.
2974 that behaves properly: <https://www.gnu.org/software/coreutils/>.
29832975
29842976 If you want to complete the configuration process using your problematic
29852977 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
31043096 AM_BACKSLASH='\'
31053097
31063098
3099 BASH_COMPLETION_REQUIRED="2.0"
3100
31073101 # Keep these two definitions in agreement.
3108 GLIB2_REQUIRED="2.38"
3109 GLIB2_ENCODED_VERSION="GLIB_VERSION_2_38"
3102 GLIB2_REQUIRED="2.40"
3103 GLIB2_ENCODED_VERSION="GLIB_VERSION_2_40"
31103104
31113105 # Keep these two definitions in agreement.
31123106 GTK_REQUIRED="3.12"
31183112 GTK_VNC_REQUIRED="0.4.0"
31193113 SPICE_GTK_REQUIRED="0.35"
31203114 SPICE_PROTOCOL_REQUIRED="0.12.7"
3121 GOVIRT_REQUIRED="0.3.2"
3115 GOVIRT_REQUIRED="0.3.3"
3116 REST_REQUIRED="0.8"
3117
3118
31223119
31233120
31243121
40114008
40124009 ac_config_commands="$ac_config_commands depfiles"
40134010
4014
4015 am_make=${MAKE-make}
4016 cat > confinc << 'END'
4011 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
4012 $as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
4013 cat > confinc.mk << 'END'
40174014 am__doit:
4018 @echo this is the am__doit target
4015 @echo this is the am__doit target >confinc.out
40194016 .PHONY: am__doit
40204017 END
4021 # If we don't find an include directive, just comment out the code.
4022 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
4023 $as_echo_n "checking for style of include used by $am_make... " >&6; }
40244018 am__include="#"
40254019 am__quote=
4026 _am_result=none
4027 # First try GNU make style include.
4028 echo "include confinc" > confmf
4029 # Ignore all kinds of additional output from 'make'.
4030 case `$am_make -s -f confmf 2> /dev/null` in #(
4031 *the\ am__doit\ target*)
4032 am__include=include
4033 am__quote=
4034 _am_result=GNU
4035 ;;
4020 # BSD make does it like this.
4021 echo '.include "confinc.mk" # ignored' > confmf.BSD
4022 # Other make implementations (GNU, Solaris 10, AIX) do it like this.
4023 echo 'include confinc.mk # ignored' > confmf.GNU
4024 _am_result=no
4025 for s in GNU BSD; do
4026 { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
4027 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
4028 ac_status=$?
4029 echo "$as_me:$LINENO: \$? = $ac_status" >&5
4030 (exit $ac_status); }
4031 case $?:`cat confinc.out 2>/dev/null` in #(
4032 '0:this is the am__doit target') :
4033 case $s in #(
4034 BSD) :
4035 am__include='.include' am__quote='"' ;; #(
4036 *) :
4037 am__include='include' am__quote='' ;;
4038 esac ;; #(
4039 *) :
4040 ;;
40364041 esac
4037 # Now try BSD make style include.
4038 if test "$am__include" = "#"; then
4039 echo '.include "confinc"' > confmf
4040 case `$am_make -s -f confmf 2> /dev/null` in #(
4041 *the\ am__doit\ target*)
4042 am__include=.include
4043 am__quote="\""
4044 _am_result=BSD
4045 ;;
4046 esac
4047 fi
4048
4049
4050 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
4051 $as_echo "$_am_result" >&6; }
4052 rm -f confinc confmf
4042 if test "$am__include" != "#"; then
4043 _am_result="yes ($s style)"
4044 break
4045 fi
4046 done
4047 rm -f confinc.* confmf.*
4048 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
4049 $as_echo "${_am_result}" >&6; }
40534050
40544051 # Check whether --enable-dependency-tracking was given.
40554052 if test "${enable_dependency_tracking+set}" = set; then :
1247712474
1247812475
1247912476
12480 for ac_header in locale.h
12481 do :
12482 ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default"
12483 if test "x$ac_cv_header_locale_h" = xyes; then :
12484 cat >>confdefs.h <<_ACEOF
12485 #define HAVE_LOCALE_H 1
12486 _ACEOF
12487
12488 fi
12489
12490 done
12491
12492 if test $ac_cv_header_locale_h = yes; then
12493 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
12494 $as_echo_n "checking for LC_MESSAGES... " >&6; }
12495 if ${am_cv_val_LC_MESSAGES+:} false; then :
12496 $as_echo_n "(cached) " >&6
12497 else
12498 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12499 /* end confdefs.h. */
12500 #include <locale.h>
12501 int
12502 main ()
12503 {
12504 return LC_MESSAGES
12505 ;
12506 return 0;
12507 }
12508 _ACEOF
12509 if ac_fn_c_try_link "$LINENO"; then :
12510 am_cv_val_LC_MESSAGES=yes
12511 else
12512 am_cv_val_LC_MESSAGES=no
12513 fi
12514 rm -f core conftest.err conftest.$ac_objext \
12515 conftest$ac_exeext conftest.$ac_ext
12516 fi
12517 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5
12518 $as_echo "$am_cv_val_LC_MESSAGES" >&6; }
12519 if test $am_cv_val_LC_MESSAGES = yes; then
12520
12521 $as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h
12522
12523 fi
12524 fi
12525 USE_NLS=yes
12526
12527
12528 gt_cv_have_gettext=no
12529
12530 CATOBJEXT=NONE
12531 XGETTEXT=:
12532 INTLLIBS=
12533
12534
12535 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFPreferencesCopyAppValue" >&5
12536 $as_echo_n "checking for CFPreferencesCopyAppValue... " >&6; }
12537 if ${gt_cv_func_CFPreferencesCopyAppValue+:} false; then :
12538 $as_echo_n "(cached) " >&6
12539 else
12540 gt_save_LIBS="$LIBS"
12541 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
12542 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12543 /* end confdefs.h. */
12544 #include <CoreFoundation/CFPreferences.h>
12545 int
12546 main ()
12547 {
12548 CFPreferencesCopyAppValue(NULL, NULL)
12549 ;
12550 return 0;
12551 }
12552 _ACEOF
12553 if ac_fn_c_try_link "$LINENO"; then :
12554 gt_cv_func_CFPreferencesCopyAppValue=yes
12555 else
12556 gt_cv_func_CFPreferencesCopyAppValue=no
12557 fi
12558 rm -f core conftest.err conftest.$ac_objext \
12559 conftest$ac_exeext conftest.$ac_ext
12560 LIBS="$gt_save_LIBS"
12561 fi
12562 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5
12563 $as_echo "$gt_cv_func_CFPreferencesCopyAppValue" >&6; }
12564 if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
12565
12566 $as_echo "#define HAVE_CFPREFERENCESCOPYAPPVALUE 1" >>confdefs.h
12567
12568 fi
12569 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CFLocaleCopyCurrent" >&5
12570 $as_echo_n "checking for CFLocaleCopyCurrent... " >&6; }
12571 if ${gt_cv_func_CFLocaleCopyCurrent+:} false; then :
12572 $as_echo_n "(cached) " >&6
12573 else
12574 gt_save_LIBS="$LIBS"
12575 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
12576 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12577 /* end confdefs.h. */
12578 #include <CoreFoundation/CFLocale.h>
12579 int
12580 main ()
12581 {
12582 CFLocaleCopyCurrent();
12583 ;
12584 return 0;
12585 }
12586 _ACEOF
12587 if ac_fn_c_try_link "$LINENO"; then :
12588 gt_cv_func_CFLocaleCopyCurrent=yes
12589 else
12590 gt_cv_func_CFLocaleCopyCurrent=no
12591 fi
12592 rm -f core conftest.err conftest.$ac_objext \
12593 conftest$ac_exeext conftest.$ac_ext
12594 LIBS="$gt_save_LIBS"
12595 fi
12596 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_CFLocaleCopyCurrent" >&5
12597 $as_echo "$gt_cv_func_CFLocaleCopyCurrent" >&6; }
12598 if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
12599
12600 $as_echo "#define HAVE_CFLOCALECOPYCURRENT 1" >>confdefs.h
12601
12602 fi
12603 INTL_MACOSX_LIBS=
12604 if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
12605 INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
12606 fi
12607
12608
12609
12610 ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default"
12611 if test "x$ac_cv_header_libintl_h" = xyes; then :
12612 gt_cv_func_dgettext_libintl="no"
12613 libintl_extra_libs=""
12614
12615 #
12616 # First check in libc
12617 #
12618 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5
12619 $as_echo_n "checking for ngettext in libc... " >&6; }
12620 if ${gt_cv_func_ngettext_libc+:} false; then :
12621 $as_echo_n "(cached) " >&6
12622 else
12623 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12624 /* end confdefs.h. */
12625
12626 #include <libintl.h>
12627
12628 int
12629 main ()
12630 {
12631 return !ngettext ("","", 1)
12632 ;
12633 return 0;
12634 }
12635 _ACEOF
12636 if ac_fn_c_try_link "$LINENO"; then :
12637 gt_cv_func_ngettext_libc=yes
12638 else
12639 gt_cv_func_ngettext_libc=no
12640 fi
12641 rm -f core conftest.err conftest.$ac_objext \
12642 conftest$ac_exeext conftest.$ac_ext
12643
12644 fi
12645 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_ngettext_libc" >&5
12646 $as_echo "$gt_cv_func_ngettext_libc" >&6; }
12647
12648 if test "$gt_cv_func_ngettext_libc" = "yes" ; then
12649 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5
12650 $as_echo_n "checking for dgettext in libc... " >&6; }
12651 if ${gt_cv_func_dgettext_libc+:} false; then :
12652 $as_echo_n "(cached) " >&6
12653 else
12654 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12655 /* end confdefs.h. */
12656
12657 #include <libintl.h>
12658
12659 int
12660 main ()
12661 {
12662 return !dgettext ("","")
12663 ;
12664 return 0;
12665 }
12666 _ACEOF
12667 if ac_fn_c_try_link "$LINENO"; then :
12668 gt_cv_func_dgettext_libc=yes
12669 else
12670 gt_cv_func_dgettext_libc=no
12671 fi
12672 rm -f core conftest.err conftest.$ac_objext \
12673 conftest$ac_exeext conftest.$ac_ext
12674
12675 fi
12676 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_dgettext_libc" >&5
12677 $as_echo "$gt_cv_func_dgettext_libc" >&6; }
12678 fi
12679
12680 if test "$gt_cv_func_ngettext_libc" = "yes" ; then
12681 for ac_func in bind_textdomain_codeset
12682 do :
12683 ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
12684 if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
12685 cat >>confdefs.h <<_ACEOF
12686 #define HAVE_BIND_TEXTDOMAIN_CODESET 1
12687 _ACEOF
12688
12689 fi
12690 done
12691
12692 fi
12693
12694 #
12695 # If we don't have everything we want, check in libintl
12696 #
12697 if test "$gt_cv_func_dgettext_libc" != "yes" \
12698 || test "$gt_cv_func_ngettext_libc" != "yes" \
12699 || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
12700
12701 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5
12702 $as_echo_n "checking for bindtextdomain in -lintl... " >&6; }
12703 if ${ac_cv_lib_intl_bindtextdomain+:} false; then :
12704 $as_echo_n "(cached) " >&6
12705 else
12706 ac_check_lib_save_LIBS=$LIBS
12707 LIBS="-lintl $LIBS"
12708 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12709 /* end confdefs.h. */
12710
12711 /* Override any GCC internal prototype to avoid an error.
12712 Use char because int might match the return type of a GCC
12713 builtin and then its argument prototype would still apply. */
12714 #ifdef __cplusplus
12715 extern "C"
12716 #endif
12717 char bindtextdomain ();
12718 int
12719 main ()
12720 {
12721 return bindtextdomain ();
12722 ;
12723 return 0;
12724 }
12725 _ACEOF
12726 if ac_fn_c_try_link "$LINENO"; then :
12727 ac_cv_lib_intl_bindtextdomain=yes
12728 else
12729 ac_cv_lib_intl_bindtextdomain=no
12730 fi
12731 rm -f core conftest.err conftest.$ac_objext \
12732 conftest$ac_exeext conftest.$ac_ext
12733 LIBS=$ac_check_lib_save_LIBS
12734 fi
12735 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5
12736 $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; }
12737 if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then :
12738 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5
12739 $as_echo_n "checking for ngettext in -lintl... " >&6; }
12740 if ${ac_cv_lib_intl_ngettext+:} false; then :
12741 $as_echo_n "(cached) " >&6
12742 else
12743 ac_check_lib_save_LIBS=$LIBS
12744 LIBS="-lintl $LIBS"
12745 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12746 /* end confdefs.h. */
12747
12748 /* Override any GCC internal prototype to avoid an error.
12749 Use char because int might match the return type of a GCC
12750 builtin and then its argument prototype would still apply. */
12751 #ifdef __cplusplus
12752 extern "C"
12753 #endif
12754 char ngettext ();
12755 int
12756 main ()
12757 {
12758 return ngettext ();
12759 ;
12760 return 0;
12761 }
12762 _ACEOF
12763 if ac_fn_c_try_link "$LINENO"; then :
12764 ac_cv_lib_intl_ngettext=yes
12765 else
12766 ac_cv_lib_intl_ngettext=no
12767 fi
12768 rm -f core conftest.err conftest.$ac_objext \
12769 conftest$ac_exeext conftest.$ac_ext
12770 LIBS=$ac_check_lib_save_LIBS
12771 fi
12772 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5
12773 $as_echo "$ac_cv_lib_intl_ngettext" >&6; }
12774 if test "x$ac_cv_lib_intl_ngettext" = xyes; then :
12775 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5
12776 $as_echo_n "checking for dgettext in -lintl... " >&6; }
12777 if ${ac_cv_lib_intl_dgettext+:} false; then :
12778 $as_echo_n "(cached) " >&6
12779 else
12780 ac_check_lib_save_LIBS=$LIBS
12781 LIBS="-lintl $LIBS"
12782 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12783 /* end confdefs.h. */
12784
12785 /* Override any GCC internal prototype to avoid an error.
12786 Use char because int might match the return type of a GCC
12787 builtin and then its argument prototype would still apply. */
12788 #ifdef __cplusplus
12789 extern "C"
12790 #endif
12791 char dgettext ();
12792 int
12793 main ()
12794 {
12795 return dgettext ();
12796 ;
12797 return 0;
12798 }
12799 _ACEOF
12800 if ac_fn_c_try_link "$LINENO"; then :
12801 ac_cv_lib_intl_dgettext=yes
12802 else
12803 ac_cv_lib_intl_dgettext=no
12804 fi
12805 rm -f core conftest.err conftest.$ac_objext \
12806 conftest$ac_exeext conftest.$ac_ext
12807 LIBS=$ac_check_lib_save_LIBS
12808 fi
12809 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5
12810 $as_echo "$ac_cv_lib_intl_dgettext" >&6; }
12811 if test "x$ac_cv_lib_intl_dgettext" = xyes; then :
12812 gt_cv_func_dgettext_libintl=yes
12813 fi
12814
12815 fi
12816
12817 fi
12818
12819
12820 if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
12821 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if -liconv is needed to use gettext" >&5
12822 $as_echo_n "checking if -liconv is needed to use gettext... " >&6; }
12823 { $as_echo "$as_me:${as_lineno-$LINENO}: result: " >&5
12824 $as_echo "" >&6; }
12825 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5
12826 $as_echo_n "checking for ngettext in -lintl... " >&6; }
12827 if ${ac_cv_lib_intl_ngettext+:} false; then :
12828 $as_echo_n "(cached) " >&6
12829 else
12830 ac_check_lib_save_LIBS=$LIBS
12831 LIBS="-lintl -liconv $LIBS"
12832 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12833 /* end confdefs.h. */
12834
12835 /* Override any GCC internal prototype to avoid an error.
12836 Use char because int might match the return type of a GCC
12837 builtin and then its argument prototype would still apply. */
12838 #ifdef __cplusplus
12839 extern "C"
12840 #endif
12841 char ngettext ();
12842 int
12843 main ()
12844 {
12845 return ngettext ();
12846 ;
12847 return 0;
12848 }
12849 _ACEOF
12850 if ac_fn_c_try_link "$LINENO"; then :
12851 ac_cv_lib_intl_ngettext=yes
12852 else
12853 ac_cv_lib_intl_ngettext=no
12854 fi
12855 rm -f core conftest.err conftest.$ac_objext \
12856 conftest$ac_exeext conftest.$ac_ext
12857 LIBS=$ac_check_lib_save_LIBS
12858 fi
12859 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5
12860 $as_echo "$ac_cv_lib_intl_ngettext" >&6; }
12861 if test "x$ac_cv_lib_intl_ngettext" = xyes; then :
12862 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5
12863 $as_echo_n "checking for dcgettext in -lintl... " >&6; }
12864 if ${ac_cv_lib_intl_dcgettext+:} false; then :
12865 $as_echo_n "(cached) " >&6
12866 else
12867 ac_check_lib_save_LIBS=$LIBS
12868 LIBS="-lintl -liconv $LIBS"
12869 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12870 /* end confdefs.h. */
12871
12872 /* Override any GCC internal prototype to avoid an error.
12873 Use char because int might match the return type of a GCC
12874 builtin and then its argument prototype would still apply. */
12875 #ifdef __cplusplus
12876 extern "C"
12877 #endif
12878 char dcgettext ();
12879 int
12880 main ()
12881 {
12882 return dcgettext ();
12883 ;
12884 return 0;
12885 }
12886 _ACEOF
12887 if ac_fn_c_try_link "$LINENO"; then :
12888 ac_cv_lib_intl_dcgettext=yes
12889 else
12890 ac_cv_lib_intl_dcgettext=no
12891 fi
12892 rm -f core conftest.err conftest.$ac_objext \
12893 conftest$ac_exeext conftest.$ac_ext
12894 LIBS=$ac_check_lib_save_LIBS
12895 fi
12896 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5
12897 $as_echo "$ac_cv_lib_intl_dcgettext" >&6; }
12898 if test "x$ac_cv_lib_intl_dcgettext" = xyes; then :
12899 gt_cv_func_dgettext_libintl=yes
12900 libintl_extra_libs=-liconv
12901 else
12902 :
12903 fi
12904
12905 else
12906 :
12907 fi
12908
12909 fi
12910
12911 #
12912 # If we found libintl, then check in it for bind_textdomain_codeset();
12913 # we'll prefer libc if neither have bind_textdomain_codeset(),
12914 # and both have dgettext and ngettext
12915 #
12916 if test "$gt_cv_func_dgettext_libintl" = "yes" ; then
12917 glib_save_LIBS="$LIBS"
12918 LIBS="$LIBS -lintl $libintl_extra_libs"
12919 unset ac_cv_func_bind_textdomain_codeset
12920 for ac_func in bind_textdomain_codeset
12921 do :
12922 ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
12923 if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
12924 cat >>confdefs.h <<_ACEOF
12925 #define HAVE_BIND_TEXTDOMAIN_CODESET 1
12926 _ACEOF
12927
12928 fi
12929 done
12930
12931 LIBS="$glib_save_LIBS"
12932
12933 if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then
12934 gt_cv_func_dgettext_libc=no
12935 else
12936 if test "$gt_cv_func_dgettext_libc" = "yes" \
12937 && test "$gt_cv_func_ngettext_libc" = "yes"; then
12938 gt_cv_func_dgettext_libintl=no
12939 fi
12940 fi
12941 fi
12942 fi
12943
12944 if test "$gt_cv_func_dgettext_libc" = "yes" \
12945 || test "$gt_cv_func_dgettext_libintl" = "yes"; then
12946 gt_cv_have_gettext=yes
12947 fi
12948
12949 if test "$gt_cv_func_dgettext_libintl" = "yes"; then
12950 INTLLIBS="-lintl $libintl_extra_libs $INTL_MACOSX_LIBS"
12951 fi
12952
12953 if test "$gt_cv_have_gettext" = "yes"; then
12954
12955 $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h
12956
12957 # Extract the first word of "msgfmt", so it can be a program name with args.
12958 set dummy msgfmt; ac_word=$2
12477
12478 # Check whether --enable-nls was given.
12479 if test "${enable_nls+set}" = set; then :
12480 enableval=$enable_nls;
12481 fi
12482
12483
12484
12485 # Extract the first word of "xgettext", so it can be a program name with args.
12486 set dummy xgettext; ac_word=$2
1295912487 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1296012488 $as_echo_n "checking for $ac_word... " >&6; }
12961 if ${ac_cv_path_MSGFMT+:} false; then :
12489 if ${ac_cv_prog_XGETTEXT+:} false; then :
1296212490 $as_echo_n "(cached) " >&6
1296312491 else
12964 case "$MSGFMT" in
12965 /*)
12966 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
12967 ;;
12968 *)
12969 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
12970 for ac_dir in $PATH; do
12971 test -z "$ac_dir" && ac_dir=.
12972 if test -f $ac_dir/$ac_word; then
12973 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"; then
12974 ac_cv_path_MSGFMT="$ac_dir/$ac_word"
12975 break
12976 fi
12977 fi
12978 done
12979 IFS="$ac_save_ifs"
12980 test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT="no"
12981 ;;
12982 esac
12983 fi
12984 MSGFMT="$ac_cv_path_MSGFMT"
12985 if test "$MSGFMT" != "no"; then
12986 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
12987 $as_echo "$MSGFMT" >&6; }
12988 else
12989 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
12990 $as_echo "no" >&6; }
12991 fi
12992 if test "$MSGFMT" != "no"; then
12993 glib_save_LIBS="$LIBS"
12994 LIBS="$LIBS $INTLLIBS"
12995 for ac_func in dcgettext
12996 do :
12997 ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext"
12998 if test "x$ac_cv_func_dcgettext" = xyes; then :
12999 cat >>confdefs.h <<_ACEOF
13000 #define HAVE_DCGETTEXT 1
13001 _ACEOF
13002
13003 fi
13004 done
13005
13006 MSGFMT_OPTS=
13007 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if msgfmt accepts -c" >&5
13008 $as_echo_n "checking if msgfmt accepts -c... " >&6; }
13009 cat >conftest.foo <<_ACEOF
13010
13011 msgid ""
13012 msgstr ""
13013 "Content-Type: text/plain; charset=UTF-8\n"
13014 "Project-Id-Version: test 1.0\n"
13015 "PO-Revision-Date: 2007-02-15 12:01+0100\n"
13016 "Last-Translator: test <foo@bar.xx>\n"
13017 "Language-Team: C <LL@li.org>\n"
13018 "MIME-Version: 1.0\n"
13019 "Content-Transfer-Encoding: 8bit\n"
13020
13021 _ACEOF
13022 if { { $as_echo "$as_me:${as_lineno-$LINENO}: \$MSGFMT -c -o /dev/null conftest.foo"; } >&5
13023 ($MSGFMT -c -o /dev/null conftest.foo) 2>&5
13024 ac_status=$?
13025 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13026 test $ac_status = 0; }; then
13027 MSGFMT_OPTS=-c; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
13028 $as_echo "yes" >&6; }
13029 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13030 $as_echo "no" >&6; }
13031 echo "$as_me: failed input was:" >&5
13032 sed 's/^/| /' conftest.foo >&5
13033 fi
13034
13035 # Extract the first word of "gmsgfmt", so it can be a program name with args.
13036 set dummy gmsgfmt; ac_word=$2
13037 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13038 $as_echo_n "checking for $ac_word... " >&6; }
13039 if ${ac_cv_path_GMSGFMT+:} false; then :
13040 $as_echo_n "(cached) " >&6
13041 else
13042 case $GMSGFMT in
13043 [\\/]* | ?:[\\/]*)
13044 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
13045 ;;
13046 *)
13047 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12492 if test -n "$XGETTEXT"; then
12493 ac_cv_prog_XGETTEXT="$XGETTEXT" # Let the user override the test.
12494 else
12495 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1304812496 for as_dir in $PATH
1304912497 do
1305012498 IFS=$as_save_IFS
1305112499 test -z "$as_dir" && as_dir=.
1305212500 for ac_exec_ext in '' $ac_executable_extensions; do
1305312501 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13054 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
12502 ac_cv_prog_XGETTEXT="xgettext"
1305512503 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1305612504 break 2
1305712505 fi
1305912507 done
1306012508 IFS=$as_save_IFS
1306112509
13062 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
13063 ;;
13064 esac
13065 fi
13066 GMSGFMT=$ac_cv_path_GMSGFMT
13067 if test -n "$GMSGFMT"; then
13068 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5
13069 $as_echo "$GMSGFMT" >&6; }
12510 test -z "$ac_cv_prog_XGETTEXT" && ac_cv_prog_XGETTEXT="no"
12511 fi
12512 fi
12513 XGETTEXT=$ac_cv_prog_XGETTEXT
12514 if test -n "$XGETTEXT"; then
12515 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
12516 $as_echo "$XGETTEXT" >&6; }
1307012517 else
1307112518 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1307212519 $as_echo "no" >&6; }
1307312520 fi
1307412521
1307512522
13076 # Extract the first word of "xgettext", so it can be a program name with args.
13077 set dummy xgettext; ac_word=$2
12523 # Extract the first word of "msgfmt", so it can be a program name with args.
12524 set dummy msgfmt; ac_word=$2
1307812525 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1307912526 $as_echo_n "checking for $ac_word... " >&6; }
13080 if ${ac_cv_path_XGETTEXT+:} false; then :
12527 if ${ac_cv_prog_MSGFMT+:} false; then :
1308112528 $as_echo_n "(cached) " >&6
1308212529 else
13083 case "$XGETTEXT" in
13084 /*)
13085 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
13086 ;;
13087 *)
13088 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
13089 for ac_dir in $PATH; do
13090 test -z "$ac_dir" && ac_dir=.
13091 if test -f $ac_dir/$ac_word; then
13092 if test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"; then
13093 ac_cv_path_XGETTEXT="$ac_dir/$ac_word"
13094 break
13095 fi
13096 fi
13097 done
13098 IFS="$ac_save_ifs"
13099 test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":"
13100 ;;
13101 esac
13102 fi
13103 XGETTEXT="$ac_cv_path_XGETTEXT"
13104 if test "$XGETTEXT" != ":"; then
13105 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
13106 $as_echo "$XGETTEXT" >&6; }
13107 else
13108 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13109 $as_echo "no" >&6; }
13110 fi
13111
13112 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13113 /* end confdefs.h. */
13114
13115 int
13116 main ()
13117 {
13118 extern int _nl_msg_cat_cntr;
13119 return _nl_msg_cat_cntr
13120 ;
13121 return 0;
13122 }
13123 _ACEOF
13124 if ac_fn_c_try_link "$LINENO"; then :
13125 CATOBJEXT=.gmo
13126 DATADIRNAME=share
13127 else
13128 case $host in
13129 *-*-solaris*)
13130 ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
13131 if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
13132 CATOBJEXT=.gmo
13133 DATADIRNAME=share
13134 else
13135 CATOBJEXT=.mo
13136 DATADIRNAME=lib
13137 fi
13138
13139 ;;
13140 *-*-openbsd*)
13141 CATOBJEXT=.mo
13142 DATADIRNAME=share
13143 ;;
13144 *)
13145 CATOBJEXT=.mo
13146 DATADIRNAME=lib
13147 ;;
13148 esac
13149 fi
13150 rm -f core conftest.err conftest.$ac_objext \
13151 conftest$ac_exeext conftest.$ac_ext
13152 LIBS="$glib_save_LIBS"
13153 INSTOBJEXT=.mo
13154 else
13155 gt_cv_have_gettext=no
13156 fi
13157 fi
13158
13159 fi
13160
13161
13162
13163 if test "$gt_cv_have_gettext" = "yes" ; then
13164
13165 $as_echo "#define ENABLE_NLS 1" >>confdefs.h
13166
13167 fi
13168
13169 if test "$XGETTEXT" != ":"; then
13170 if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
13171 : ;
13172 else
13173 { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5
13174 $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; }
13175 XGETTEXT=":"
13176 fi
13177 fi
13178
13179 # We need to process the po/ directory.
13180 POSUB=po
13181
13182 ac_config_commands="$ac_config_commands default-1"
13183
13184
13185 for lang in $ALL_LINGUAS; do
13186 GMOFILES="$GMOFILES $lang.gmo"
13187 POFILES="$POFILES $lang.po"
13188 done
13189
13190
13191
13192
13193
13194
13195
13196
13197
13198
13199
13200
13201
13202 if test "$gt_cv_have_gettext" = "yes"; then
13203 if test "x$ALL_LINGUAS" = "x"; then
13204 LINGUAS=
13205 else
13206 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for catalogs to be installed" >&5
13207 $as_echo_n "checking for catalogs to be installed... " >&6; }
13208 NEW_LINGUAS=
13209 for presentlang in $ALL_LINGUAS; do
13210 useit=no
13211 if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then
13212 desiredlanguages="$LINGUAS"
13213 else
13214 desiredlanguages="$ALL_LINGUAS"
13215 fi
13216 for desiredlang in $desiredlanguages; do
13217 # Use the presentlang catalog if desiredlang is
13218 # a. equal to presentlang, or
13219 # b. a variant of presentlang (because in this case,
13220 # presentlang can be used as a fallback for messages
13221 # which are not translated in the desiredlang catalog).
13222 case "$desiredlang" in
13223 "$presentlang"*) useit=yes;;
13224 esac
13225 done
13226 if test $useit = yes; then
13227 NEW_LINGUAS="$NEW_LINGUAS $presentlang"
13228 fi
13229 done
13230 LINGUAS=$NEW_LINGUAS
13231 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LINGUAS" >&5
13232 $as_echo "$LINGUAS" >&6; }
13233 fi
13234
13235 if test -n "$LINGUAS"; then
13236 for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
13237 fi
13238 fi
13239
13240 MKINSTALLDIRS=
13241 if test -n "$ac_aux_dir"; then
13242 MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
13243 fi
13244 if test -z "$MKINSTALLDIRS"; then
13245 MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
13246 fi
13247
13248
13249 test -d po || mkdir po
13250 if test "x$srcdir" != "x."; then
13251 if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then
13252 posrcprefix="$srcdir/"
13253 else
13254 posrcprefix="../$srcdir/"
13255 fi
13256 else
13257 posrcprefix="../"
13258 fi
13259 rm -f po/POTFILES
13260 sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \
13261 < $srcdir/po/POTFILES.in > po/POTFILES
13262
13263
13264 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5
13265 $as_echo_n "checking whether NLS is requested... " >&6; }
13266 # Check whether --enable-nls was given.
13267 if test "${enable_nls+set}" = set; then :
13268 enableval=$enable_nls; USE_NLS=$enableval
13269 else
13270 USE_NLS=yes
13271 fi
13272
13273 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5
13274 $as_echo "$USE_NLS" >&6; }
13275
13276
13277
13278
13279 case "$am__api_version" in
13280 1.01234)
13281 as_fn_error $? "Automake 1.5 or newer is required to use intltool" "$LINENO" 5
13282 ;;
13283 *)
13284 ;;
13285 esac
13286
13287 INTLTOOL_REQUIRED_VERSION_AS_INT=`echo 0.35.0 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
13288 INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
13289 INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
13290 if test -n "0.35.0"; then
13291 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intltool >= 0.35.0" >&5
13292 $as_echo_n "checking for intltool >= 0.35.0... " >&6; }
13293 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_APPLIED_VERSION found" >&5
13294 $as_echo "$INTLTOOL_APPLIED_VERSION found" >&6; }
13295 test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
13296 as_fn_error $? "Your intltool is too old. You need intltool 0.35.0 or later." "$LINENO" 5
13297 fi
13298
13299 # Extract the first word of "intltool-update", so it can be a program name with args.
13300 set dummy intltool-update; ac_word=$2
13301 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13302 $as_echo_n "checking for $ac_word... " >&6; }
13303 if ${ac_cv_path_INTLTOOL_UPDATE+:} false; then :
13304 $as_echo_n "(cached) " >&6
13305 else
13306 case $INTLTOOL_UPDATE in
13307 [\\/]* | ?:[\\/]*)
13308 ac_cv_path_INTLTOOL_UPDATE="$INTLTOOL_UPDATE" # Let the user override the test with a path.
13309 ;;
13310 *)
13311 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12530 if test -n "$MSGFMT"; then
12531 ac_cv_prog_MSGFMT="$MSGFMT" # Let the user override the test.
12532 else
12533 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1331212534 for as_dir in $PATH
1331312535 do
1331412536 IFS=$as_save_IFS
1331512537 test -z "$as_dir" && as_dir=.
1331612538 for ac_exec_ext in '' $ac_executable_extensions; do
1331712539 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13318 ac_cv_path_INTLTOOL_UPDATE="$as_dir/$ac_word$ac_exec_ext"
12540 ac_cv_prog_MSGFMT="msgfmt"
1331912541 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1332012542 break 2
1332112543 fi
1332312545 done
1332412546 IFS=$as_save_IFS
1332512547
13326 ;;
13327 esac
13328 fi
13329 INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE
13330 if test -n "$INTLTOOL_UPDATE"; then
13331 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_UPDATE" >&5
13332 $as_echo "$INTLTOOL_UPDATE" >&6; }
12548 test -z "$ac_cv_prog_MSGFMT" && ac_cv_prog_MSGFMT="no"
12549 fi
12550 fi
12551 MSGFMT=$ac_cv_prog_MSGFMT
12552 if test -n "$MSGFMT"; then
12553 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
12554 $as_echo "$MSGFMT" >&6; }
1333312555 else
1333412556 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1333512557 $as_echo "no" >&6; }
1333612558 fi
1333712559
1333812560
13339 # Extract the first word of "intltool-merge", so it can be a program name with args.
13340 set dummy intltool-merge; ac_word=$2
12561 # Extract the first word of "msgmerge", so it can be a program name with args.
12562 set dummy msgmerge; ac_word=$2
1334112563 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1334212564 $as_echo_n "checking for $ac_word... " >&6; }
13343 if ${ac_cv_path_INTLTOOL_MERGE+:} false; then :
12565 if ${ac_cv_prog_MSGMERGE+:} false; then :
1334412566 $as_echo_n "(cached) " >&6
1334512567 else
13346 case $INTLTOOL_MERGE in
13347 [\\/]* | ?:[\\/]*)
13348 ac_cv_path_INTLTOOL_MERGE="$INTLTOOL_MERGE" # Let the user override the test with a path.
13349 ;;
13350 *)
13351 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12568 if test -n "$MSGMERGE"; then
12569 ac_cv_prog_MSGMERGE="$MSGMERGE" # Let the user override the test.
12570 else
12571 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1335212572 for as_dir in $PATH
1335312573 do
1335412574 IFS=$as_save_IFS
1335512575 test -z "$as_dir" && as_dir=.
1335612576 for ac_exec_ext in '' $ac_executable_extensions; do
1335712577 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13358 ac_cv_path_INTLTOOL_MERGE="$as_dir/$ac_word$ac_exec_ext"
12578 ac_cv_prog_MSGMERGE="msgmerge"
1335912579 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1336012580 break 2
1336112581 fi
1336312583 done
1336412584 IFS=$as_save_IFS
1336512585
13366 ;;
13367 esac
13368 fi
13369 INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE
13370 if test -n "$INTLTOOL_MERGE"; then
13371 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_MERGE" >&5
13372 $as_echo "$INTLTOOL_MERGE" >&6; }
13373 else
13374 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13375 $as_echo "no" >&6; }
13376 fi
13377
13378
13379 # Extract the first word of "intltool-extract", so it can be a program name with args.
13380 set dummy intltool-extract; ac_word=$2
13381 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13382 $as_echo_n "checking for $ac_word... " >&6; }
13383 if ${ac_cv_path_INTLTOOL_EXTRACT+:} false; then :
13384 $as_echo_n "(cached) " >&6
13385 else
13386 case $INTLTOOL_EXTRACT in
13387 [\\/]* | ?:[\\/]*)
13388 ac_cv_path_INTLTOOL_EXTRACT="$INTLTOOL_EXTRACT" # Let the user override the test with a path.
13389 ;;
13390 *)
13391 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13392 for as_dir in $PATH
13393 do
13394 IFS=$as_save_IFS
13395 test -z "$as_dir" && as_dir=.
13396 for ac_exec_ext in '' $ac_executable_extensions; do
13397 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13398 ac_cv_path_INTLTOOL_EXTRACT="$as_dir/$ac_word$ac_exec_ext"
13399 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
13400 break 2
13401 fi
13402 done
13403 done
13404 IFS=$as_save_IFS
13405
13406 ;;
13407 esac
13408 fi
13409 INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT
13410 if test -n "$INTLTOOL_EXTRACT"; then
13411 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_EXTRACT" >&5
13412 $as_echo "$INTLTOOL_EXTRACT" >&6; }
13413 else
13414 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13415 $as_echo "no" >&6; }
13416 fi
13417
13418
13419 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
13420 as_fn_error $? "The intltool scripts were not found. Please install intltool." "$LINENO" 5
13421 fi
13422
13423 if test -z "$AM_DEFAULT_VERBOSITY"; then
13424 AM_DEFAULT_VERBOSITY=1
13425 fi
13426
13427
13428 INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))'
13429 INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))'
13430 INTLTOOL__v_MERGE_0='@echo " ITMRG " $@;'
13431
13432
13433
13434
13435 INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))'
13436 intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))'
13437 intltool__v_merge_options_0='-q'
13438
13439
13440
13441
13442 INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13443 INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13444 INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13445 INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13446 INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< $@'
13447 INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13448 INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13449 INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13450 INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13451 INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13452 INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13453 if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then
13454 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< $@'
13455 else
13456 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.$$RANDOM && mkdir $$_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u $$_it_tmp_dir $< $@ && rmdir $$_it_tmp_dir'
13457 fi
13458 INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13459 INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13460 INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13461 INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13462 INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13463 INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13464 INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
13465
13466
13467
13468
13469
13470
13471
13472
13473
13474
13475
13476
13477
13478
13479
13480
13481
13482
13483
13484
13485
13486
13487
13488
13489
13490
13491
13492
13493
13494
13495
13496
13497
13498
13499
13500
13501
13502
13503
13504
13505
13506
13507
13508
13509
13510
13511
13512
13513
13514
13515
13516
13517
13518
13519
13520
13521
13522
13523
13524
13525
13526
13527
13528
13529
13530
13531
13532
13533
13534
13535
13536
13537
13538
13539
13540
13541
13542
13543
13544
13545
13546
13547
13548
13549
13550
13551
13552
13553
13554
13555
13556
13557
13558
13559
13560
13561
13562 # Check the gettext tools to make sure they are GNU
13563 # Extract the first word of "xgettext", so it can be a program name with args.
13564 set dummy xgettext; ac_word=$2
13565 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13566 $as_echo_n "checking for $ac_word... " >&6; }
13567 if ${ac_cv_path_XGETTEXT+:} false; then :
13568 $as_echo_n "(cached) " >&6
13569 else
13570 case $XGETTEXT in
13571 [\\/]* | ?:[\\/]*)
13572 ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path.
13573 ;;
13574 *)
13575 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13576 for as_dir in $PATH
13577 do
13578 IFS=$as_save_IFS
13579 test -z "$as_dir" && as_dir=.
13580 for ac_exec_ext in '' $ac_executable_extensions; do
13581 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13582 ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext"
13583 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
13584 break 2
13585 fi
13586 done
13587 done
13588 IFS=$as_save_IFS
13589
13590 ;;
13591 esac
13592 fi
13593 XGETTEXT=$ac_cv_path_XGETTEXT
13594 if test -n "$XGETTEXT"; then
13595 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
13596 $as_echo "$XGETTEXT" >&6; }
13597 else
13598 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13599 $as_echo "no" >&6; }
13600 fi
13601
13602
13603 # Extract the first word of "msgmerge", so it can be a program name with args.
13604 set dummy msgmerge; ac_word=$2
13605 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13606 $as_echo_n "checking for $ac_word... " >&6; }
13607 if ${ac_cv_path_MSGMERGE+:} false; then :
13608 $as_echo_n "(cached) " >&6
13609 else
13610 case $MSGMERGE in
13611 [\\/]* | ?:[\\/]*)
13612 ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path.
13613 ;;
13614 *)
13615 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13616 for as_dir in $PATH
13617 do
13618 IFS=$as_save_IFS
13619 test -z "$as_dir" && as_dir=.
13620 for ac_exec_ext in '' $ac_executable_extensions; do
13621 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13622 ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext"
13623 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
13624 break 2
13625 fi
13626 done
13627 done
13628 IFS=$as_save_IFS
13629
13630 ;;
13631 esac
13632 fi
13633 MSGMERGE=$ac_cv_path_MSGMERGE
12586 test -z "$ac_cv_prog_MSGMERGE" && ac_cv_prog_MSGMERGE="no"
12587 fi
12588 fi
12589 MSGMERGE=$ac_cv_prog_MSGMERGE
1363412590 if test -n "$MSGMERGE"; then
1363512591 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5
1363612592 $as_echo "$MSGMERGE" >&6; }
1364012596 fi
1364112597
1364212598
13643 # Extract the first word of "msgfmt", so it can be a program name with args.
13644 set dummy msgfmt; ac_word=$2
13645 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13646 $as_echo_n "checking for $ac_word... " >&6; }
13647 if ${ac_cv_path_MSGFMT+:} false; then :
13648 $as_echo_n "(cached) " >&6
13649 else
13650 case $MSGFMT in
13651 [\\/]* | ?:[\\/]*)
13652 ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path.
13653 ;;
13654 *)
13655 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13656 for as_dir in $PATH
13657 do
13658 IFS=$as_save_IFS
13659 test -z "$as_dir" && as_dir=.
13660 for ac_exec_ext in '' $ac_executable_extensions; do
13661 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13662 ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext"
13663 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
13664 break 2
12599
12600 { $as_echo "$as_me:${as_lineno-$LINENO}: checking msgfmt is GNU tool" >&5
12601 $as_echo_n "checking msgfmt is GNU tool... " >&6; }
12602 if $MSGFMT --version >/dev/null 2>&1 && $MSGFMT --version | grep -q 'GNU gettext'; then
12603 msgfmt_is_gnu=yes
12604 else
12605 msgfmt_is_gnu=no
1366512606 fi
13666 done
13667 done
13668 IFS=$as_save_IFS
13669
13670 ;;
13671 esac
13672 fi
13673 MSGFMT=$ac_cv_path_MSGFMT
13674 if test -n "$MSGFMT"; then
13675 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
13676 $as_echo "$MSGFMT" >&6; }
13677 else
13678 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13679 $as_echo "no" >&6; }
13680 fi
13681
13682
13683 # Extract the first word of "gmsgfmt", so it can be a program name with args.
13684 set dummy gmsgfmt; ac_word=$2
13685 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13686 $as_echo_n "checking for $ac_word... " >&6; }
13687 if ${ac_cv_path_GMSGFMT+:} false; then :
13688 $as_echo_n "(cached) " >&6
13689 else
13690 case $GMSGFMT in
13691 [\\/]* | ?:[\\/]*)
13692 ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path.
13693 ;;
13694 *)
13695 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13696 for as_dir in $PATH
13697 do
13698 IFS=$as_save_IFS
13699 test -z "$as_dir" && as_dir=.
13700 for ac_exec_ext in '' $ac_executable_extensions; do
13701 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13702 ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext"
13703 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
13704 break 2
13705 fi
13706 done
13707 done
13708 IFS=$as_save_IFS
13709
13710 test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
13711 ;;
13712 esac
13713 fi
13714 GMSGFMT=$ac_cv_path_GMSGFMT
13715 if test -n "$GMSGFMT"; then
13716 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5
13717 $as_echo "$GMSGFMT" >&6; }
13718 else
13719 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13720 $as_echo "no" >&6; }
13721 fi
13722
13723
13724 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
13725 as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
13726 fi
13727 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
13728 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
13729 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
13730 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
13731 as_fn_error $? "GNU gettext tools not found; required for intltool" "$LINENO" 5
13732 fi
13733
13734 # Extract the first word of "perl", so it can be a program name with args.
13735 set dummy perl; ac_word=$2
13736 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13737 $as_echo_n "checking for $ac_word... " >&6; }
13738 if ${ac_cv_path_INTLTOOL_PERL+:} false; then :
13739 $as_echo_n "(cached) " >&6
13740 else
13741 case $INTLTOOL_PERL in
13742 [\\/]* | ?:[\\/]*)
13743 ac_cv_path_INTLTOOL_PERL="$INTLTOOL_PERL" # Let the user override the test with a path.
13744 ;;
13745 *)
13746 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
13747 for as_dir in $PATH
13748 do
13749 IFS=$as_save_IFS
13750 test -z "$as_dir" && as_dir=.
13751 for ac_exec_ext in '' $ac_executable_extensions; do
13752 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
13753 ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext"
13754 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
13755 break 2
13756 fi
13757 done
13758 done
13759 IFS=$as_save_IFS
13760
13761 ;;
13762 esac
13763 fi
13764 INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL
13765 if test -n "$INTLTOOL_PERL"; then
13766 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLTOOL_PERL" >&5
13767 $as_echo "$INTLTOOL_PERL" >&6; }
13768 else
13769 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13770 $as_echo "no" >&6; }
13771 fi
13772
13773
13774 if test -z "$INTLTOOL_PERL"; then
13775 as_fn_error $? "perl not found" "$LINENO" 5
13776 fi
13777 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl >= 5.8.1" >&5
13778 $as_echo_n "checking for perl >= 5.8.1... " >&6; }
13779 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
13780 if test $? -ne 0; then
13781 as_fn_error $? "perl 5.8.1 is required for intltool" "$LINENO" 5
13782 else
13783 IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"`
13784 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IT_PERL_VERSION" >&5
13785 $as_echo "$IT_PERL_VERSION" >&6; }
13786 fi
13787 if test "x" != "xno-xml"; then
13788 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XML::Parser" >&5
13789 $as_echo_n "checking for XML::Parser... " >&6; }
13790 if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
13791 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
13792 $as_echo "ok" >&6; }
13793 else
13794 as_fn_error $? "XML::Parser perl module is required for intltool" "$LINENO" 5
13795 fi
13796 fi
13797
13798 # Substitute ALL_LINGUAS so we can use it in po/Makefile
13799
13800
13801
13802
12607 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $msgfmt_is_gnu" >&5
12608 $as_echo "$msgfmt_is_gnu" >&6; }
12609 if test "x$enable_nls" = "xyes"; then
12610 ENABLE_NLS_TRUE=
12611 ENABLE_NLS_FALSE='#'
12612 else
12613 ENABLE_NLS_TRUE='#'
12614 ENABLE_NLS_FALSE=
12615 fi
12616
12617 if test "x$XGETTEXT" != "xno" && test "x$MSGFMT" != "xno" && \
12618 test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"; then
12619 HAVE_GNU_GETTEXT_TOOLS_TRUE=
12620 HAVE_GNU_GETTEXT_TOOLS_FALSE='#'
12621 else
12622 HAVE_GNU_GETTEXT_TOOLS_TRUE='#'
12623 HAVE_GNU_GETTEXT_TOOLS_FALSE=
12624 fi
12625
12626
12627
12628
12629
12630 # Check whether --enable-bash_completion was given.
12631 if test "${enable_bash_completion+set}" = set; then :
12632 enableval=$enable_bash_completion;
12633 fi
12634
12635
12636
12637 # Check whether --with-bash_completions_dir was given.
12638 if test "${with_bash_completions_dir+set}" = set; then :
12639 withval=$with_bash_completions_dir;
12640 fi
1380312641
1380412642
1380512643
1392212760 PKG_CONFIG=""
1392312761 fi
1392412762 fi
12763
12764 if test "x$enable_bash_completion" != "xno" ; then
12765
12766 pkg_failed=no
12767 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BASH_COMPLETION" >&5
12768 $as_echo_n "checking for BASH_COMPLETION... " >&6; }
12769
12770 if test -n "$BASH_COMPLETION_CFLAGS"; then
12771 pkg_cv_BASH_COMPLETION_CFLAGS="$BASH_COMPLETION_CFLAGS"
12772 elif test -n "$PKG_CONFIG"; then
12773 if test -n "$PKG_CONFIG" && \
12774 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"bash-completion >= \$BASH_COMPLETION_REQUIRED\""; } >&5
12775 ($PKG_CONFIG --exists --print-errors "bash-completion >= $BASH_COMPLETION_REQUIRED") 2>&5
12776 ac_status=$?
12777 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
12778 test $ac_status = 0; }; then
12779 pkg_cv_BASH_COMPLETION_CFLAGS=`$PKG_CONFIG --cflags "bash-completion >= $BASH_COMPLETION_REQUIRED" 2>/dev/null`
12780 test "x$?" != "x0" && pkg_failed=yes
12781 else
12782 pkg_failed=yes
12783 fi
12784 else
12785 pkg_failed=untried
12786 fi
12787 if test -n "$BASH_COMPLETION_LIBS"; then
12788 pkg_cv_BASH_COMPLETION_LIBS="$BASH_COMPLETION_LIBS"
12789 elif test -n "$PKG_CONFIG"; then
12790 if test -n "$PKG_CONFIG" && \
12791 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"bash-completion >= \$BASH_COMPLETION_REQUIRED\""; } >&5
12792 ($PKG_CONFIG --exists --print-errors "bash-completion >= $BASH_COMPLETION_REQUIRED") 2>&5
12793 ac_status=$?
12794 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
12795 test $ac_status = 0; }; then
12796 pkg_cv_BASH_COMPLETION_LIBS=`$PKG_CONFIG --libs "bash-completion >= $BASH_COMPLETION_REQUIRED" 2>/dev/null`
12797 test "x$?" != "x0" && pkg_failed=yes
12798 else
12799 pkg_failed=yes
12800 fi
12801 else
12802 pkg_failed=untried
12803 fi
12804
12805
12806
12807 if test $pkg_failed = yes; then
12808 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
12809 $as_echo "no" >&6; }
12810
12811 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
12812 _pkg_short_errors_supported=yes
12813 else
12814 _pkg_short_errors_supported=no
12815 fi
12816 if test $_pkg_short_errors_supported = yes; then
12817 BASH_COMPLETION_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "bash-completion >= $BASH_COMPLETION_REQUIRED" 2>&1`
12818 else
12819 BASH_COMPLETION_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "bash-completion >= $BASH_COMPLETION_REQUIRED" 2>&1`
12820 fi
12821 # Put the nasty error message in config.log where it belongs
12822 echo "$BASH_COMPLETION_PKG_ERRORS" >&5
12823
12824 with_bash_completion=no
12825 elif test $pkg_failed = untried; then
12826 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
12827 $as_echo "no" >&6; }
12828 with_bash_completion=no
12829 else
12830 BASH_COMPLETION_CFLAGS=$pkg_cv_BASH_COMPLETION_CFLAGS
12831 BASH_COMPLETION_LIBS=$pkg_cv_BASH_COMPLETION_LIBS
12832 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
12833 $as_echo "yes" >&6; }
12834 with_bash_completion=yes
12835 fi
12836 if test "x$enable_bash_completion:x$with_bash_completion" = "yes:no"; then
12837 fail_action
12838 fi
12839 enable_bash_completion=$with_bash_completion
12840 fi
12841
12842 if test "x$with_bash_completion" = "xyes" ; then
12843 if test "x$with_bash_completions_dir" = "xcheck"; then
12844 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bash-completions directory" >&5
12845 $as_echo_n "checking for bash-completions directory... " >&6; }
12846 BASH_COMPLETIONS_DIR="$($PKG_CONFIG --variable=completionsdir bash-completion)"
12847 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BASH_COMPLETIONS_DIR" >&5
12848 $as_echo "$BASH_COMPLETIONS_DIR" >&6; }
12849 with_bash_completions_dir=$BASH_COMPLETIONS_DIR
12850
12851 bash_completions_prefix="$($PKG_CONFIG --variable=prefix bash-completion)"
12852 if test "x$bash_completions_prefix" = "x" ; then
12853 bash_completions_prefix="/usr"
12854 fi
12855
12856 BASH_COMPLETIONS_DIR='${exec_prefix}'"${BASH_COMPLETIONS_DIR#$bash_completions_prefix}"
12857 elif test "x$with_bash_completions_dir" = "xno" || test "x$with_bash_completions_dir" = "xyes"; then
12858 as_fn_error $? "bash-completions-dir must be used only with valid path" "$LINENO" 5
12859 else
12860 BASH_COMPLETIONS_DIR=$with_bash_completions_dir
12861 fi
12862
12863 fi
12864
12865 if test "x$enable_bash_completion" = "xyes"; then
12866 WITH_BASH_COMPLETION_TRUE=
12867 WITH_BASH_COMPLETION_FALSE='#'
12868 else
12869 WITH_BASH_COMPLETION_TRUE='#'
12870 WITH_BASH_COMPLETION_FALSE=
12871 fi
12872
12873
12874
12875
12876
12877
12878
12879
12880
12881
12882 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
12883 if test -n "$ac_tool_prefix"; then
12884 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
12885 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
12886 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
12887 $as_echo_n "checking for $ac_word... " >&6; }
12888 if ${ac_cv_path_PKG_CONFIG+:} false; then :
12889 $as_echo_n "(cached) " >&6
12890 else
12891 case $PKG_CONFIG in
12892 [\\/]* | ?:[\\/]*)
12893 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
12894 ;;
12895 *)
12896 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12897 for as_dir in $PATH
12898 do
12899 IFS=$as_save_IFS
12900 test -z "$as_dir" && as_dir=.
12901 for ac_exec_ext in '' $ac_executable_extensions; do
12902 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
12903 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
12904 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
12905 break 2
12906 fi
12907 done
12908 done
12909 IFS=$as_save_IFS
12910
12911 ;;
12912 esac
12913 fi
12914 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
12915 if test -n "$PKG_CONFIG"; then
12916 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
12917 $as_echo "$PKG_CONFIG" >&6; }
12918 else
12919 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
12920 $as_echo "no" >&6; }
12921 fi
12922
12923
12924 fi
12925 if test -z "$ac_cv_path_PKG_CONFIG"; then
12926 ac_pt_PKG_CONFIG=$PKG_CONFIG
12927 # Extract the first word of "pkg-config", so it can be a program name with args.
12928 set dummy pkg-config; ac_word=$2
12929 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
12930 $as_echo_n "checking for $ac_word... " >&6; }
12931 if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
12932 $as_echo_n "(cached) " >&6
12933 else
12934 case $ac_pt_PKG_CONFIG in
12935 [\\/]* | ?:[\\/]*)
12936 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
12937 ;;
12938 *)
12939 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
12940 for as_dir in $PATH
12941 do
12942 IFS=$as_save_IFS
12943 test -z "$as_dir" && as_dir=.
12944 for ac_exec_ext in '' $ac_executable_extensions; do
12945 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
12946 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
12947 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
12948 break 2
12949 fi
12950 done
12951 done
12952 IFS=$as_save_IFS
12953
12954 ;;
12955 esac
12956 fi
12957 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
12958 if test -n "$ac_pt_PKG_CONFIG"; then
12959 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
12960 $as_echo "$ac_pt_PKG_CONFIG" >&6; }
12961 else
12962 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
12963 $as_echo "no" >&6; }
12964 fi
12965
12966 if test "x$ac_pt_PKG_CONFIG" = x; then
12967 PKG_CONFIG=""
12968 else
12969 case $cross_compiling:$ac_tool_warned in
12970 yes:)
12971 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
12972 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
12973 ac_tool_warned=yes ;;
12974 esac
12975 PKG_CONFIG=$ac_pt_PKG_CONFIG
12976 fi
12977 else
12978 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
12979 fi
12980
12981 fi
12982 if test -n "$PKG_CONFIG"; then
12983 _pkg_min_version=0.9.0
12984 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
12985 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
12986 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
12987 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
12988 $as_echo "yes" >&6; }
12989 else
12990 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
12991 $as_echo "no" >&6; }
12992 PKG_CONFIG=""
12993 fi
12994 fi
1392512995 GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
1392612996
1392712997
1478213852
1478313853
1478413854
13855 # Check whether --with-vte was given.
13856 if test "${with_vte+set}" = set; then :
13857 withval=$with_vte;
13858 fi
13859
13860
13861 if test "x$with_vte" != "xno" && test "x$with_vte" != "xyes"; then :
13862 if test -n "$PKG_CONFIG" && \
13863 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte-2.91\""; } >&5
13864 ($PKG_CONFIG --exists --print-errors "vte-2.91") 2>&5
13865 ac_status=$?
13866 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13867 test $ac_status = 0; }; then
13868 with_vte=yes
13869 else
13870 with_vte=no
13871 fi
13872 fi
13873
13874 if test "x$with_vte" = "xyes"; then :
13875
13876 pkg_failed=no
13877 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for VTE" >&5
13878 $as_echo_n "checking for VTE... " >&6; }
13879
13880 if test -n "$VTE_CFLAGS"; then
13881 pkg_cv_VTE_CFLAGS="$VTE_CFLAGS"
13882 elif test -n "$PKG_CONFIG"; then
13883 if test -n "$PKG_CONFIG" && \
13884 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte-2.91\""; } >&5
13885 ($PKG_CONFIG --exists --print-errors "vte-2.91") 2>&5
13886 ac_status=$?
13887 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13888 test $ac_status = 0; }; then
13889 pkg_cv_VTE_CFLAGS=`$PKG_CONFIG --cflags "vte-2.91" 2>/dev/null`
13890 test "x$?" != "x0" && pkg_failed=yes
13891 else
13892 pkg_failed=yes
13893 fi
13894 else
13895 pkg_failed=untried
13896 fi
13897 if test -n "$VTE_LIBS"; then
13898 pkg_cv_VTE_LIBS="$VTE_LIBS"
13899 elif test -n "$PKG_CONFIG"; then
13900 if test -n "$PKG_CONFIG" && \
13901 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"vte-2.91\""; } >&5
13902 ($PKG_CONFIG --exists --print-errors "vte-2.91") 2>&5
13903 ac_status=$?
13904 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
13905 test $ac_status = 0; }; then
13906 pkg_cv_VTE_LIBS=`$PKG_CONFIG --libs "vte-2.91" 2>/dev/null`
13907 test "x$?" != "x0" && pkg_failed=yes
13908 else
13909 pkg_failed=yes
13910 fi
13911 else
13912 pkg_failed=untried
13913 fi
13914
13915
13916
13917 if test $pkg_failed = yes; then
13918 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13919 $as_echo "no" >&6; }
13920
13921 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
13922 _pkg_short_errors_supported=yes
13923 else
13924 _pkg_short_errors_supported=no
13925 fi
13926 if test $_pkg_short_errors_supported = yes; then
13927 VTE_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "vte-2.91" 2>&1`
13928 else
13929 VTE_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "vte-2.91" 2>&1`
13930 fi
13931 # Put the nasty error message in config.log where it belongs
13932 echo "$VTE_PKG_ERRORS" >&5
13933
13934 as_fn_error $? "Package requirements (vte-2.91) were not met:
13935
13936 $VTE_PKG_ERRORS
13937
13938 Consider adjusting the PKG_CONFIG_PATH environment variable if you
13939 installed software in a non-standard prefix.
13940
13941 Alternatively, you may set the environment variables VTE_CFLAGS
13942 and VTE_LIBS to avoid the need to call pkg-config.
13943 See the pkg-config man page for more details." "$LINENO" 5
13944 elif test $pkg_failed = untried; then
13945 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
13946 $as_echo "no" >&6; }
13947 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
13948 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
13949 as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
13950 is in your PATH or set the PKG_CONFIG environment variable to the full
13951 path to pkg-config.
13952
13953 Alternatively, you may set the environment variables VTE_CFLAGS
13954 and VTE_LIBS to avoid the need to call pkg-config.
13955 See the pkg-config man page for more details.
13956
13957 To get pkg-config, see <http://pkg-config.freedesktop.org/>.
13958 See \`config.log' for more details" "$LINENO" 5; }
13959 else
13960 VTE_CFLAGS=$pkg_cv_VTE_CFLAGS
13961 VTE_LIBS=$pkg_cv_VTE_LIBS
13962 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
13963 $as_echo "yes" >&6; }
13964
13965 fi
13966
13967 $as_echo "#define HAVE_VTE 1" >>confdefs.h
13968
13969
13970 fi
13971 if test "x$with_vte" = "xyes"; then
13972 HAVE_VTE_TRUE=
13973 HAVE_VTE_FALSE='#'
13974 else
13975 HAVE_VTE_TRUE='#'
13976 HAVE_VTE_FALSE=
13977 fi
13978
13979
13980
1478513981 # Check whether --with-ovirt was given.
1478613982 if test "${with_ovirt+set}" = set; then :
1478713983 withval=$with_ovirt;
1481114007 pkg_cv_OVIRT_CFLAGS="$OVIRT_CFLAGS"
1481214008 elif test -n "$PKG_CONFIG"; then
1481314009 if test -n "$PKG_CONFIG" && \
14814 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"govirt-1.0 >= \$GOVIRT_REQUIRED\""; } >&5
14815 ($PKG_CONFIG --exists --print-errors "govirt-1.0 >= $GOVIRT_REQUIRED") 2>&5
14010 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"govirt-1.0 >= \$GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED\""; } >&5
14011 ($PKG_CONFIG --exists --print-errors "govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED") 2>&5
1481614012 ac_status=$?
1481714013 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1481814014 test $ac_status = 0; }; then
14819 pkg_cv_OVIRT_CFLAGS=`$PKG_CONFIG --cflags "govirt-1.0 >= $GOVIRT_REQUIRED" 2>/dev/null`
14015 pkg_cv_OVIRT_CFLAGS=`$PKG_CONFIG --cflags "govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED" 2>/dev/null`
1482014016 test "x$?" != "x0" && pkg_failed=yes
1482114017 else
1482214018 pkg_failed=yes
1482814024 pkg_cv_OVIRT_LIBS="$OVIRT_LIBS"
1482914025 elif test -n "$PKG_CONFIG"; then
1483014026 if test -n "$PKG_CONFIG" && \
14831 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"govirt-1.0 >= \$GOVIRT_REQUIRED\""; } >&5
14832 ($PKG_CONFIG --exists --print-errors "govirt-1.0 >= $GOVIRT_REQUIRED") 2>&5
14027 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"govirt-1.0 >= \$GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED\""; } >&5
14028 ($PKG_CONFIG --exists --print-errors "govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED") 2>&5
1483314029 ac_status=$?
1483414030 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1483514031 test $ac_status = 0; }; then
14836 pkg_cv_OVIRT_LIBS=`$PKG_CONFIG --libs "govirt-1.0 >= $GOVIRT_REQUIRED" 2>/dev/null`
14032 pkg_cv_OVIRT_LIBS=`$PKG_CONFIG --libs "govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED" 2>/dev/null`
1483714033 test "x$?" != "x0" && pkg_failed=yes
1483814034 else
1483914035 pkg_failed=yes
1485414050 _pkg_short_errors_supported=no
1485514051 fi
1485614052 if test $_pkg_short_errors_supported = yes; then
14857 OVIRT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "govirt-1.0 >= $GOVIRT_REQUIRED" 2>&1`
14053 OVIRT_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED" 2>&1`
1485814054 else
14859 OVIRT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "govirt-1.0 >= $GOVIRT_REQUIRED" 2>&1`
14055 OVIRT_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED" 2>&1`
1486014056 fi
1486114057 # Put the nasty error message in config.log where it belongs
1486214058 echo "$OVIRT_PKG_ERRORS" >&5
1486314059
14864 as_fn_error $? "Package requirements (govirt-1.0 >= $GOVIRT_REQUIRED) were not met:
14060 as_fn_error $? "Package requirements (govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED) were not met:
1486514061
1486614062 $OVIRT_PKG_ERRORS
1486714063
1489814094
1489914095 SAVED_CFLAGS="$CFLAGS"
1490014096 SAVED_LIBS="$LIBS"
14901 CFLAGS="$OVIRT_CFLAGS"
14902 LIBS="$OVIRT_LIBS"
14903 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
14904 /* end confdefs.h. */
14905 #include <govirt/govirt.h>
14906 int
14907 main ()
14908 {
14909 static int err = OVIRT_REST_CALL_ERROR_CANCELLED;
14910 void *fun = rest_proxy_auth_cancel;
14911 ;
14912 return 0;
14913 }
14914 _ACEOF
14915 if ac_fn_c_try_compile "$LINENO"; then :
14916
14917 $as_echo "#define HAVE_OVIRT_CANCEL 1" >>confdefs.h
14918
14919 fi
14920 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14097 CFLAGS="$SAVED_CFLAGS $OVIRT_CFLAGS"
14098 LIBS="$SAVED_LIBS $OVIRT_LIBS"
1492114099 for ac_func in ovirt_api_search_vms ovirt_vm_get_host ovirt_host_get_cluster ovirt_cluster_get_data_center
1492214100 do :
1492314101 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
1508014258
1508114259
1508214260
15083 ac_config_files="$ac_config_files Makefile data/Makefile data/virt-viewer.wxs icons/Makefile icons/16x16/Makefile icons/22x22/Makefile icons/24x24/Makefile icons/32x32/Makefile icons/48x48/Makefile icons/256x256/Makefile man/Makefile mingw-virt-viewer.spec po/Makefile.in src/Makefile src/virt-viewer.rc tests/Makefile virt-viewer.spec"
14261 ac_config_files="$ac_config_files Makefile bash-completion/Makefile data/Makefile data/virt-viewer.wxs icons/Makefile icons/16x16/Makefile icons/22x22/Makefile icons/24x24/Makefile icons/32x32/Makefile icons/48x48/Makefile icons/256x256/Makefile man/Makefile mingw-virt-viewer.spec po/Makefile src/Makefile src/virt-viewer.rc tests/Makefile virt-viewer.spec"
1508414262
1508514263 cat >confcache <<\_ACEOF
1508614264 # This file is a shell script that caches the results of configure
1521914397 as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
1522014398 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1522114399 fi
15222
15223 ac_config_commands="$ac_config_commands po/stamp-it"
15224
15225
14400 if test -z "${ENABLE_NLS_TRUE}" && test -z "${ENABLE_NLS_FALSE}"; then
14401 as_fn_error $? "conditional \"ENABLE_NLS\" was never defined.
14402 Usually this means the macro was only invoked conditionally." "$LINENO" 5
14403 fi
14404 if test -z "${HAVE_GNU_GETTEXT_TOOLS_TRUE}" && test -z "${HAVE_GNU_GETTEXT_TOOLS_FALSE}"; then
14405 as_fn_error $? "conditional \"HAVE_GNU_GETTEXT_TOOLS\" was never defined.
14406 Usually this means the macro was only invoked conditionally." "$LINENO" 5
14407 fi
14408 if test -z "${WITH_BASH_COMPLETION_TRUE}" && test -z "${WITH_BASH_COMPLETION_FALSE}"; then
14409 as_fn_error $? "conditional \"WITH_BASH_COMPLETION\" was never defined.
14410 Usually this means the macro was only invoked conditionally." "$LINENO" 5
14411 fi
1522614412 if test -z "${HAVE_LIBVIRT_TRUE}" && test -z "${HAVE_LIBVIRT_FALSE}"; then
1522714413 as_fn_error $? "conditional \"HAVE_LIBVIRT\" was never defined.
1522814414 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1523314419 fi
1523414420 if test -z "${HAVE_SPICE_GTK_TRUE}" && test -z "${HAVE_SPICE_GTK_FALSE}"; then
1523514421 as_fn_error $? "conditional \"HAVE_SPICE_GTK\" was never defined.
14422 Usually this means the macro was only invoked conditionally." "$LINENO" 5
14423 fi
14424 if test -z "${HAVE_VTE_TRUE}" && test -z "${HAVE_VTE_FALSE}"; then
14425 as_fn_error $? "conditional \"HAVE_VTE\" was never defined.
1523614426 Usually this means the macro was only invoked conditionally." "$LINENO" 5
1523714427 fi
1523814428 if test -z "${HAVE_OVIRT_TRUE}" && test -z "${HAVE_OVIRT_FALSE}"; then
1564014830 # report actual input values of CONFIG_FILES etc. instead of their
1564114831 # values after options handling.
1564214832 ac_log="
15643 This file was extended by virt-viewer $as_me 7.0, which was
14833 This file was extended by virt-viewer $as_me 9.0, which was
1564414834 generated by GNU Autoconf 2.69. Invocation command line was
1564514835
1564614836 CONFIG_FILES = $CONFIG_FILES
1571014900 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1571114901 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1571214902 ac_cs_version="\\
15713 virt-viewer config.status 7.0
14903 virt-viewer config.status 9.0
1571414904 configured by $0, generated by GNU Autoconf 2.69,
1571514905 with options \\"\$ac_cs_config\\"
1571614906
1582915019 #
1583015020 # INIT-COMMANDS
1583115021 #
15832 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
15022 AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
1583315023
1583415024
1583515025 # The HP-UX ksh and POSIX shell print the target directory to stdout
1611515305
1611615306 GNUmakefile=$GNUmakefile
1611715307
16118
1611915308 _ACEOF
1612015309
1612115310 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1612815317 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
1612915318 "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
1613015319 "$GNUmakefile") CONFIG_LINKS="$CONFIG_LINKS $GNUmakefile:$GNUmakefile" ;;
16131 "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
1613215320 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
15321 "bash-completion/Makefile") CONFIG_FILES="$CONFIG_FILES bash-completion/Makefile" ;;
1613315322 "data/Makefile") CONFIG_FILES="$CONFIG_FILES data/Makefile" ;;
1613415323 "data/virt-viewer.wxs") CONFIG_FILES="$CONFIG_FILES data/virt-viewer.wxs" ;;
1613515324 "icons/Makefile") CONFIG_FILES="$CONFIG_FILES icons/Makefile" ;;
1614115330 "icons/256x256/Makefile") CONFIG_FILES="$CONFIG_FILES icons/256x256/Makefile" ;;
1614215331 "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;;
1614315332 "mingw-virt-viewer.spec") CONFIG_FILES="$CONFIG_FILES mingw-virt-viewer.spec" ;;
16144 "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;;
15333 "po/Makefile") CONFIG_FILES="$CONFIG_FILES po/Makefile" ;;
1614515334 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
1614615335 "src/virt-viewer.rc") CONFIG_FILES="$CONFIG_FILES src/virt-viewer.rc" ;;
1614715336 "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
1614815337 "virt-viewer.spec") CONFIG_FILES="$CONFIG_FILES virt-viewer.spec" ;;
16149 "po/stamp-it") CONFIG_COMMANDS="$CONFIG_COMMANDS po/stamp-it" ;;
1615015338
1615115339 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
1615215340 esac
1677815966 # Older Autoconf quotes --file arguments for eval, but not when files
1677915967 # are listed without --file. Let's play safe and only enable the eval
1678015968 # if we detect the quoting.
16781 case $CONFIG_FILES in
16782 *\'*) eval set x "$CONFIG_FILES" ;;
16783 *) set x $CONFIG_FILES ;;
16784 esac
15969 # TODO: see whether this extra hack can be removed once we start
15970 # requiring Autoconf 2.70 or later.
15971 case $CONFIG_FILES in #(
15972 *\'*) :
15973 eval set x "$CONFIG_FILES" ;; #(
15974 *) :
15975 set x $CONFIG_FILES ;; #(
15976 *) :
15977 ;;
15978 esac
1678515979 shift
16786 for mf
15980 # Used to flag and report bootstrapping failures.
15981 am_rc=0
15982 for am_mf
1678715983 do
1678815984 # Strip MF so we end up with the name of the file.
16789 mf=`echo "$mf" | sed -e 's/:.*$//'`
16790 # Check whether this is an Automake generated Makefile or not.
16791 # We used to match only the files named 'Makefile.in', but
16792 # some people rename them; so instead we look at the file content.
16793 # Grep'ing the first line is not enough: some people post-process
16794 # each Makefile.in and add a new line on top of each file to say so.
16795 # Grep'ing the whole file is not good either: AIX grep has a line
15985 am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
15986 # Check whether this is an Automake generated Makefile which includes
15987 # dependency-tracking related rules and includes.
15988 # Grep'ing the whole file directly is not great: AIX grep has a line
1679615989 # limit of 2048, but all sed's we know have understand at least 4000.
16797 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
16798 dirpart=`$as_dirname -- "$mf" ||
16799 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
16800 X"$mf" : 'X\(//\)[^/]' \| \
16801 X"$mf" : 'X\(//\)$' \| \
16802 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
16803 $as_echo X"$mf" |
15990 sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
15991 || continue
15992 am_dirpart=`$as_dirname -- "$am_mf" ||
15993 $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
15994 X"$am_mf" : 'X\(//\)[^/]' \| \
15995 X"$am_mf" : 'X\(//\)$' \| \
15996 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
15997 $as_echo X"$am_mf" |
1680415998 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1680515999 s//\1/
1680616000 q
1681816012 q
1681916013 }
1682016014 s/.*/./; q'`
16821 else
16822 continue
16823 fi
16824 # Extract the definition of DEPDIR, am__include, and am__quote
16825 # from the Makefile without running 'make'.
16826 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
16827 test -z "$DEPDIR" && continue
16828 am__include=`sed -n 's/^am__include = //p' < "$mf"`
16829 test -z "$am__include" && continue
16830 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
16831 # Find all dependency output files, they are included files with
16832 # $(DEPDIR) in their names. We invoke sed twice because it is the
16833 # simplest approach to changing $(DEPDIR) to its actual value in the
16834 # expansion.
16835 for file in `sed -n "
16836 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
16837 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
16838 # Make sure the directory exists.
16839 test -f "$dirpart/$file" && continue
16840 fdir=`$as_dirname -- "$file" ||
16841 $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
16842 X"$file" : 'X\(//\)[^/]' \| \
16843 X"$file" : 'X\(//\)$' \| \
16844 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
16845 $as_echo X"$file" |
16846 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
16015 am_filepart=`$as_basename -- "$am_mf" ||
16016 $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
16017 X"$am_mf" : 'X\(//\)$' \| \
16018 X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
16019 $as_echo X/"$am_mf" |
16020 sed '/^.*\/\([^/][^/]*\)\/*$/{
1684716021 s//\1/
1684816022 q
1684916023 }
16850 /^X\(\/\/\)[^/].*/{
16024 /^X\/\(\/\/\)$/{
1685116025 s//\1/
1685216026 q
1685316027 }
16854 /^X\(\/\/\)$/{
16855 s//\1/
16856 q
16857 }
16858 /^X\(\/\).*/{
16028 /^X\/\(\/\).*/{
1685916029 s//\1/
1686016030 q
1686116031 }
1686216032 s/.*/./; q'`
16863 as_dir=$dirpart/$fdir; as_fn_mkdir_p
16864 # echo "creating $dirpart/$file"
16865 echo '# dummy' > "$dirpart/$file"
16866 done
16033 { echo "$as_me:$LINENO: cd "$am_dirpart" \
16034 && sed -e '/# am--include-marker/d' "$am_filepart" \
16035 | $MAKE -f - am--depfiles" >&5
16036 (cd "$am_dirpart" \
16037 && sed -e '/# am--include-marker/d' "$am_filepart" \
16038 | $MAKE -f - am--depfiles) >&5 2>&5
16039 ac_status=$?
16040 echo "$as_me:$LINENO: \$? = $ac_status" >&5
16041 (exit $ac_status); } || am_rc=$?
1686716042 done
16043 if test $am_rc -ne 0; then
16044 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
16045 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
16046 as_fn_error $? "Something went wrong bootstrapping makefile fragments
16047 for automatic dependency tracking. Try re-running configure with the
16048 '--disable-dependency-tracking' option to at least be able to build
16049 the package (albeit without support for automatic dependency tracking).
16050 See \`config.log' for more details" "$LINENO" 5; }
16051 fi
16052 { am_dirpart=; unset am_dirpart;}
16053 { am_filepart=; unset am_filepart;}
16054 { am_mf=; unset am_mf;}
16055 { am_rc=; unset am_rc;}
16056 rm -f conftest-deps.mk
1686816057 }
1686916058 ;;
1687016059 "libtool":C)
1741016599 chmod +x "$ofile"
1741116600
1741216601 ;;
17413 "default-1":C) case "$CONFIG_FILES" in *po/Makefile.in*)
17414 sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
17415 esac ;;
17416 "po/stamp-it":C)
17417 if ! grep "^# INTLTOOL_MAKEFILE$" "po/Makefile.in" > /dev/null ; then
17418 as_fn_error $? "po/Makefile.in.in was not created by intltoolize." "$LINENO" 5
17419 fi
17420 rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp"
17421 >"po/stamp-it.tmp"
17422 sed '/^#/d
17423 s/^[[].*] *//
17424 /^[ ]*$/d
17425 '"s|^| $ac_top_srcdir/|" \
17426 "$srcdir/po/POTFILES.in" | sed '$!s/$/ \\/' >"po/POTFILES"
17427
17428 sed '/^POTFILES =/,/[^\\]$/ {
17429 /^POTFILES =/!d
17430 r po/POTFILES
17431 }
17432 ' "po/Makefile.in" >"po/Makefile"
17433 rm -f "po/Makefile.tmp"
17434 mv "po/stamp-it.tmp" "po/stamp-it"
17435 ;;
1743616602
1743716603 esac
1743816604 done # for ac_tag
1750016666 $as_echo "$as_me: SPICE_GTK: $SPICE_GTK_CFLAGS $SPICE_GTK_LIBS" >&6;}
1750116667 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
1750216668 $as_echo "$as_me: " >&6;}
16669 { $as_echo "$as_me:${as_lineno-$LINENO}: VTE: $VTE_CFLAGS $VTE_LIBS" >&5
16670 $as_echo "$as_me: VTE: $VTE_CFLAGS $VTE_LIBS" >&6;}
16671 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
16672 $as_echo "$as_me: " >&6;}
1750316673 { $as_echo "$as_me:${as_lineno-$LINENO}: LIBXML2: $LIBXML2_CFLAGS $LIBXML2_LIBS" >&5
1750416674 $as_echo "$as_me: LIBXML2: $LIBXML2_CFLAGS $LIBXML2_LIBS" >&6;}
1750516675 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
1751216682 $as_echo "$as_me: OVIRT: $OVIRT_CFLAGS $OVIRT_LIBS" >&6;}
1751316683 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
1751416684 $as_echo "$as_me: " >&6;}
16685
16686 if test "x$enable_bash_completion" = "xyes" ; then
16687 { $as_echo "$as_me:${as_lineno-$LINENO}: bash completion: $enable_bash_completion DIR: $with_bash_completions_dir" >&5
16688 $as_echo "$as_me: bash completion: $enable_bash_completion DIR: $with_bash_completions_dir" >&6;}
16689 else
16690 { $as_echo "$as_me:${as_lineno-$LINENO}: bash completion: $enable_bash_completion" >&5
16691 $as_echo "$as_me: bash completion: $enable_bash_completion" >&6;}
16692 fi
16693 { $as_echo "$as_me:${as_lineno-$LINENO}: " >&5
16694 $as_echo "$as_me: " >&6;}
16695
0
1 AC_INIT([virt-viewer],[7.0])
0 AC_INIT([virt-viewer],[9.0])
21 AC_CONFIG_SRCDIR(src/virt-viewer-main.c)
32 AC_CONFIG_MACRO_DIR([m4])
43 AC_CONFIG_AUX_DIR([build-aux])
1110 m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
1211 AM_SILENT_RULES([yes])
1312
13 BASH_COMPLETION_REQUIRED="2.0"
14
1415 # Keep these two definitions in agreement.
15 GLIB2_REQUIRED="2.38"
16 GLIB2_ENCODED_VERSION="GLIB_VERSION_2_38"
16 GLIB2_REQUIRED="2.40"
17 GLIB2_ENCODED_VERSION="GLIB_VERSION_2_40"
1718
1819 # Keep these two definitions in agreement.
1920 GTK_REQUIRED="3.12"
2526 GTK_VNC_REQUIRED="0.4.0"
2627 SPICE_GTK_REQUIRED="0.35"
2728 SPICE_PROTOCOL_REQUIRED="0.12.7"
28 GOVIRT_REQUIRED="0.3.2"
29
29 GOVIRT_REQUIRED="0.3.3"
30 REST_REQUIRED="0.8"
31
32 AC_SUBST([BASH_COMPLETION_REQUIRED])
3033 AC_SUBST([GLIB2_REQUIRED])
3134 AC_SUBST([LIBXML2_REQUIRED])
3235 AC_SUBST([LIBVIRT_REQUIRED])
3639 AC_SUBST([SPICE_GTK_REQUIRED])
3740 AC_SUBST([SPICE_PROTOCOL_REQUIRED])
3841 AC_SUBST([GOVIRT_REQUIRED])
42 AC_SUBST([REST_REQUIRED])
3943
4044 AC_MSG_CHECKING([for native Win32])
4145 case "$host_os" in
9397 AC_SUBST(GETTEXT_PACKAGE)
9498 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],"$GETTEXT_PACKAGE", [GETTEXT package name])
9599
96 AM_GLIB_GNU_GETTEXT
97 IT_PROG_INTLTOOL([0.35.0])
100 VIRT_VIEWER_ARG_NLS
101 VIRT_VIEWER_CHECK_NLS
102
103 VIRT_VIEWER_ARG_BASH_COMPLETION
104 VIRT_VIEWER_CHECK_BASH_COMPLETION
98105
99106 PKG_PROG_PKG_CONFIG
100107 GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0`
169176 )
170177 AM_CONDITIONAL([HAVE_SPICE_GTK], [test "x$with_spice_gtk" = "xyes"])
171178
179 AC_ARG_WITH([vte],
180 AS_HELP_STRING([--without-vte], [Ignore presence of vte and disable it]))
181
182 AS_IF([test "x$with_vte" != "xno" && test "x$with_vte" != "xyes"],
183 [PKG_CHECK_EXISTS([vte-2.91], [with_vte=yes], [with_vte=no])])
184
185 AS_IF([test "x$with_vte" = "xyes"],
186 [PKG_CHECK_MODULES(VTE, [vte-2.91])]
187 [AC_DEFINE([HAVE_VTE], 1, [Have vte?])]
188 )
189 AM_CONDITIONAL([HAVE_VTE], [test "x$with_vte" = "xyes"])
190
172191 AC_ARG_WITH([ovirt],
173192 AS_HELP_STRING([--without-ovirt], [Ignore presence of librest and disable oVirt support]))
174193
177196 [with_ovirt=yes], [with_ovirt=no])])
178197
179198 AS_IF([test "x$with_ovirt" = "xyes"],
180 [PKG_CHECK_MODULES([OVIRT], [govirt-1.0 >= $GOVIRT_REQUIRED])]
199 [PKG_CHECK_MODULES([OVIRT], [govirt-1.0 >= $GOVIRT_REQUIRED rest-0.7 >= REST_REQUIRED])]
181200 [AC_DEFINE([HAVE_OVIRT], 1, [Have libgovirt?])]
182201 [SAVED_CFLAGS="$CFLAGS"
183202 SAVED_LIBS="$LIBS"
184 CFLAGS="$OVIRT_CFLAGS"
185 LIBS="$OVIRT_LIBS"
186 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <govirt/govirt.h>]],
187 [static int err = OVIRT_REST_CALL_ERROR_CANCELLED;
188 void *fun = rest_proxy_auth_cancel;])],
189 [AC_DEFINE([HAVE_OVIRT_CANCEL], 1, [Have rest_proxy_auth_cancel and OVIRT_REST_CALL_ERROR_CANCELLED?])],
190 [])
203 CFLAGS="$SAVED_CFLAGS $OVIRT_CFLAGS"
204 LIBS="$SAVED_LIBS $OVIRT_LIBS"
191205 AC_CHECK_FUNCS([ovirt_api_search_vms ovirt_vm_get_host ovirt_host_get_cluster ovirt_cluster_get_data_center],
192206 [AC_DEFINE([HAVE_OVIRT_DATA_CENTER], 1, [Have support for data center])],
193207 []
240254
241255 AC_CONFIG_FILES([
242256 Makefile
257 bash-completion/Makefile
243258 data/Makefile
244259 data/virt-viewer.wxs
245260 icons/Makefile
251266 icons/256x256/Makefile
252267 man/Makefile
253268 mingw-virt-viewer.spec
254 po/Makefile.in
269 po/Makefile
255270 src/Makefile
256271 src/virt-viewer.rc
257272 tests/Makefile
273288 AC_MSG_NOTICE([])
274289 AC_MSG_NOTICE([ SPICE_GTK: $SPICE_GTK_CFLAGS $SPICE_GTK_LIBS])
275290 AC_MSG_NOTICE([])
291 AC_MSG_NOTICE([ VTE: $VTE_CFLAGS $VTE_LIBS])
292 AC_MSG_NOTICE([])
276293 AC_MSG_NOTICE([ LIBXML2: $LIBXML2_CFLAGS $LIBXML2_LIBS])
277294 AC_MSG_NOTICE([])
278295 AC_MSG_NOTICE([ LIBVIRT: $LIBVIRT_CFLAGS $LIBVIRT_LIBS])
279296 AC_MSG_NOTICE([])
280297 AC_MSG_NOTICE([ OVIRT: $OVIRT_CFLAGS $OVIRT_LIBS])
281298 AC_MSG_NOTICE([])
299 VIRT_VIEWER_RESULT_BASH_COMPLETION
33
44 EXTRA_DIST = \
55 virt-viewer.wxs.in \
6 gettext/its/mime.its \
7 gettext/its/mime.loc \
68 $(NULL)
9
10 PO_FILES = $(wildcard $(srcdir)/../po/*.po)
711
812 # this make sure those files are regenerated when they change
913 # (in maintainer-mode)
3539 HaveGtkVnc = False
3640 endif
3741
38 deps.txt:
39 $(AM_V_GEN)rpm -qa | grep $(host_os) | sort | unix2dos > $@
42 buildenv.txt:
43 $(AM_V_GEN)rpm -qa | sort | unix2dos > $@
4044
41 virt-viewer-$(WIXL_ARCH)-$(VERSION).msi: virt-viewer.wxs deps.txt
45 virt-viewer-$(WIXL_ARCH)-$(VERSION).msi: virt-viewer.wxs buildenv.txt
4246 $(AM_V_GEN)DESTDIR=`mktemp -d` && \
4347 make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
4448 find $$DESTDIR | wixl-heat -p $$DESTDIR$(prefix)/ \
5862 msi: virt-viewer-$(WIXL_ARCH)-$(VERSION).msi
5963
6064 CLEANFILES += \
61 deps.txt \
65 buildenv.txt \
6266 virt-viewer-$(WIXL_ARCH)-$(VERSION).msi \
6367 $(NULL)
6468
6771 desktopdir = $(datadir)/applications
6872 DESKTOPFILES = remote-viewer.desktop.in
6973 desktop_DATA = $(DESKTOPFILES:.desktop.in=.desktop)
70 @INTLTOOL_DESKTOP_RULE@
74 %.desktop: %.desktop.in $(PO_FILES)
75 $(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
7176
7277 MIMEFILES = virt-viewer-mime.xml.in
7378 mimedir = $(datadir)/mime/packages
7479 mime_DATA = virt-viewer-mime.xml
75 @INTLTOOL_XML_RULE@
80 %-mime.xml: %-mime.xml.in $(PO_FILES)
81 $(AM_V_GEN)GETTEXTDATADIR=$(srcdir)/gettext $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
7682
7783 appdatadir = $(datadir)/appdata
7884 APPDATAFILES = remote-viewer.appdata.xml.in
7985 appdata_DATA = $(APPDATAFILES:.xml.in=.xml)
80 @INTLTOOL_XML_RULE@
86 %.appdata.xml: %.appdata.xml.in $(PO_FILES)
87 $(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
8188
8289 install-data-hook:
8390 if ENABLE_UPDATE_MIMEDB
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8888 build_triplet = @build@
8989 host_triplet = @host@
9090 @OS_WIN32_TRUE@am__append_1 = \
91 @OS_WIN32_TRUE@ deps.txt \
91 @OS_WIN32_TRUE@ buildenv.txt \
9292 @OS_WIN32_TRUE@ virt-viewer-$(WIXL_ARCH)-$(VERSION).msi \
9393 @OS_WIN32_TRUE@ $(NULL)
9494
9696 @OS_WIN32_FALSE@am__append_3 = $(MIMEFILES) $(DESKTOPFILES) $(APPDATAFILES)
9797 subdir = data
9898 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
99 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
100 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
101 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
102 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
99 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
100 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
101 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
102 $(top_srcdir)/m4/virt-bash-completion.m4 \
103 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
103104 $(top_srcdir)/configure.ac
104105 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
105106 $(ACLOCAL_M4)
161162 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/virt-viewer.wxs.in
162163 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
163164 ACLOCAL = @ACLOCAL@
164 ALL_LINGUAS = @ALL_LINGUAS@
165165 AMTAR = @AMTAR@
166166 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
167167 AR = @AR@
169169 AUTOHEADER = @AUTOHEADER@
170170 AUTOMAKE = @AUTOMAKE@
171171 AWK = @AWK@
172 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
173 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
174 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
175 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
172176 BUILDID = @BUILDID@
173 CATALOGS = @CATALOGS@
174 CATOBJEXT = @CATOBJEXT@
175177 CC = @CC@
176178 CCDEPMODE = @CCDEPMODE@
177179 CFLAGS = @CFLAGS@
178180 CPP = @CPP@
179181 CPPFLAGS = @CPPFLAGS@
180182 CYGPATH_W = @CYGPATH_W@
181 DATADIRNAME = @DATADIRNAME@
182183 DEFS = @DEFS@
183184 DEPDIR = @DEPDIR@
184185 DLLTOOL = @DLLTOOL@
196197 GLIB2_REQUIRED = @GLIB2_REQUIRED@
197198 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
198199 GLIB_MKENUMS = @GLIB_MKENUMS@
199 GMOFILES = @GMOFILES@
200 GMSGFMT = @GMSGFMT@
201200 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
202201 GREP = @GREP@
203202 GTK_CFLAGS = @GTK_CFLAGS@
212211 INSTALL_PROGRAM = @INSTALL_PROGRAM@
213212 INSTALL_SCRIPT = @INSTALL_SCRIPT@
214213 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
215 INSTOBJEXT = @INSTOBJEXT@
216 INTLLIBS = @INTLLIBS@
217 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
218 INTLTOOL_MERGE = @INTLTOOL_MERGE@
219 INTLTOOL_PERL = @INTLTOOL_PERL@
220 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
221 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
222 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
223 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
224 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
225 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
226214 LD = @LD@
227215 LDFLAGS = @LDFLAGS@
228216 LIBOBJS = @LIBOBJS@
242230 MAKEINFO = @MAKEINFO@
243231 MANIFEST_TOOL = @MANIFEST_TOOL@
244232 MKDIR_P = @MKDIR_P@
245 MKINSTALLDIRS = @MKINSTALLDIRS@
246233 MSGFMT = @MSGFMT@
247 MSGFMT_OPTS = @MSGFMT_OPTS@
248234 MSGMERGE = @MSGMERGE@
249235 NM = @NM@
250236 NMEDIT = @NMEDIT@
265251 PKG_CONFIG = @PKG_CONFIG@
266252 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
267253 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
268 POFILES = @POFILES@
269 POSUB = @POSUB@
270 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
271 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
272254 RANLIB = @RANLIB@
255 REST_REQUIRED = @REST_REQUIRED@
273256 SED = @SED@
274257 SET_MAKE = @SET_MAKE@
275258 SHELL = @SHELL@
281264 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
282265 STRIP = @STRIP@
283266 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
284 USE_NLS = @USE_NLS@
285267 VERSION = @VERSION@
268 VTE_CFLAGS = @VTE_CFLAGS@
269 VTE_LIBS = @VTE_LIBS@
286270 WARN_CFLAGS = @WARN_CFLAGS@
287271 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
288272 WINDRES = @WINDRES@
321305 includedir = @includedir@
322306 infodir = @infodir@
323307 install_sh = @install_sh@
324 intltool__v_merge_options_ = @intltool__v_merge_options_@
325 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
326308 libdir = @libdir@
327309 libexecdir = @libexecdir@
328310 localedir = @localedir@
345327 NULL =
346328 CLEANFILES = $(am__append_1) $(am__append_2)
347329 MANUFACTURER = Virt Manager Project
348 EXTRA_DIST = virt-viewer.wxs.in $(NULL) $(am__append_3)
330 EXTRA_DIST = virt-viewer.wxs.in gettext/its/mime.its \
331 gettext/its/mime.loc $(NULL) $(am__append_3)
332 PO_FILES = $(wildcard $(srcdir)/../po/*.po)
349333 @HAVE_LIBVIRT_FALSE@@OS_WIN32_TRUE@HaveLibvirt = False
350334 @HAVE_LIBVIRT_TRUE@@OS_WIN32_TRUE@HaveLibvirt = True
351335 @HAVE_OVIRT_FALSE@@OS_WIN32_TRUE@HaveOVirt = False
383367 *config.status*) \
384368 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
385369 *) \
386 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
387 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
370 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
371 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
388372 esac;
389373
390374 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
473457 cscope cscopelist:
474458
475459
476 distdir: $(DISTFILES)
460 distdir: $(BUILT_SOURCES)
461 $(MAKE) $(AM_MAKEFLAGS) distdir-am
462
463 distdir-am: $(DISTFILES)
477464 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
478465 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
479466 list='$(DISTFILES)'; \
637624 # (in maintainer-mode)
638625 all-local: virt-viewer.wxs
639626
640 @OS_WIN32_TRUE@deps.txt:
641 @OS_WIN32_TRUE@ $(AM_V_GEN)rpm -qa | grep $(host_os) | sort | unix2dos > $@
642
643 @OS_WIN32_TRUE@virt-viewer-$(WIXL_ARCH)-$(VERSION).msi: virt-viewer.wxs deps.txt
627 @OS_WIN32_TRUE@buildenv.txt:
628 @OS_WIN32_TRUE@ $(AM_V_GEN)rpm -qa | sort | unix2dos > $@
629
630 @OS_WIN32_TRUE@virt-viewer-$(WIXL_ARCH)-$(VERSION).msi: virt-viewer.wxs buildenv.txt
644631 @OS_WIN32_TRUE@ $(AM_V_GEN)DESTDIR=`mktemp -d` && \
645632 @OS_WIN32_TRUE@ make -C $(top_builddir) install DESTDIR=$$DESTDIR >/dev/null && \
646633 @OS_WIN32_TRUE@ find $$DESTDIR | wixl-heat -p $$DESTDIR$(prefix)/ \
658645 @OS_WIN32_TRUE@ rm -rf $$DESTDIR virt-viewer-files.wxs
659646
660647 @OS_WIN32_TRUE@msi: virt-viewer-$(WIXL_ARCH)-$(VERSION).msi
661 @OS_WIN32_FALSE@@INTLTOOL_DESKTOP_RULE@
662 @OS_WIN32_FALSE@@INTLTOOL_XML_RULE@
663 @OS_WIN32_FALSE@@INTLTOOL_XML_RULE@
648 @OS_WIN32_FALSE@%.desktop: %.desktop.in $(PO_FILES)
649 @OS_WIN32_FALSE@ $(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
650 @OS_WIN32_FALSE@%-mime.xml: %-mime.xml.in $(PO_FILES)
651 @OS_WIN32_FALSE@ $(AM_V_GEN)GETTEXTDATADIR=$(srcdir)/gettext $(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
652 @OS_WIN32_FALSE@%.appdata.xml: %.appdata.xml.in $(PO_FILES)
653 @OS_WIN32_FALSE@ $(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
664654
665655 @OS_WIN32_FALSE@install-data-hook:
666656 @ENABLE_UPDATE_MIMEDB_TRUE@@OS_WIN32_FALSE@ @if $(AM_V_P); then set -x; else echo " INSTALL update-mime-database"; fi; \
0 <?xml version="1.0"?>
1 <its:rules xmlns:its="http://www.w3.org/2005/11/its"
2 version="2.0">
3 <its:translateRule selector="/mime-info" translate="no"/>
4 <its:translateRule selector="//comment" translate="yes"/>
5 </its:rules>
0 <?xml version="1.0"?>
1 <locatingRules>
2 <locatingRule name="mime" pattern="*.xml">
3 <documentRule localName="mime-info" target="mime.its"/>
4 </locatingRule>
5 </locatingRules>
00 <?xml version="1.0" encoding="UTF-8"?>
1 <application>
1 <component type="desktop">
22 <id type="desktop">remote-viewer.desktop</id>
33 <metadata_license>CC0-1.0</metadata_license>
44 <project_license>GPL-2.0+</project_license>
5 <_name>Remote Viewer</_name>
6 <_summary>Remotely access virtual machines</_summary>
5 <name>Remote Viewer</name>
6 <summary>Remotely access virtual machines</summary>
77 <description>
8 <_p>
8 <p>
99 Remote Viewer provides a graphical viewer for the guest OS
1010 display. At this time it supports guest OS using the VNC
1111 or SPICE protocols. Further protocols may be supported in
1212 the future as user demand dictates. The viewer can connect
1313 directly to both local and remotely hosted guest OS, optionally
1414 using SSL/TLS encryption.
15 </_p>
15 </p>
1616 </description>
1717 <screenshots>
1818 <screenshot type="default">https://virt-manager.org/appdata/en_US/virt-viewer/general.png</screenshot>
2323 <provides>
2424 <binary>remote-viewer</binary>
2525 </provides>
26 <url type="homepage">https://virt-manager.org/</url>
27 <updatecontact>virt-tools-list_at_redhat.com</updatecontact>
28 </application>
26 <url type="homepage">https://gitlab.com/virt-viewer/virt-viewer/</url>
27 <updatecontact>https://gitlab.com/virt-viewer/virt-viewer/</updatecontact>
28 </component>
00 [Desktop Entry]
1 _Name=Remote Viewer
2 _Comment=Access remote desktops
1 Name=Remote Viewer
2 Comment=Access remote desktops
33 Exec=remote-viewer %u
44 Type=Application
55 Terminal=false
6 MimeType=x-scheme-handler/spice;application/x-virt-viewer;
6 MimeType=x-scheme-handler/spice;x-scheme-handler/spice+unix;x-scheme-handler/spice+tls;application/x-virt-viewer;
77 StartupNotify=true
88 Categories=GNOME;GTK;Network;RemoteAccess;
99 Icon=virt-viewer
6767 <Directory Id="TARGETDIR" Name="SourceDir">
6868 <Directory Id="$(var.ArchProgramFilesFolder)">
6969 <Directory Id="INSTALLDIR" Name="VirtViewer v@VERSION@@BUILDID@">
70 <Component Id="CDepsFile" Guid="*">
71 <File Id="filA1E799D196006E6DF67DACE15B8C6193" KeyPath="yes" Source="deps.txt"/>
70 <Component Id="CBuildEnvFile" Guid="*">
71 <File Id="filA1E799D196006E6DF67DACE15B8C6193" KeyPath="yes" Source="buildenv.txt"/>
7272 </Component>
7373 </Directory>
7474 </Directory>
116116 <?endif?>
117117 <ComponentGroupRef Id="CG.libxml2"/>
118118 <ComponentGroupRef Id="CG.virt-viewer"/>
119 <ComponentRef Id="CDepsFile"/>
119 <ComponentRef Id="CBuildEnvFile"/>
120120 <ComponentRef Id="CShortcut"/>
121121 <ComponentRef Id="CProgIds"/>
122122 <ComponentRef Id="CHwdataUSB"/>
0 virt-viewer (9.0-1) UNRELEASED; urgency=low
1
2 * New upstream release.
3
4 -- Debian Janitor <janitor@jelmer.uk> Sun, 22 Aug 2021 11:41:44 -0000
5
06 virt-viewer (7.0-2) unstable; urgency=medium
17
28 [ Andreas Beckmann ]
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/16x16
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
92 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/virt-bash-completion.m4 \
96 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9697 $(top_srcdir)/configure.ac
9798 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9899 $(ACLOCAL_M4)
153154 am__DIST_COMMON = $(srcdir)/Makefile.in
154155 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
155156 ACLOCAL = @ACLOCAL@
156 ALL_LINGUAS = @ALL_LINGUAS@
157157 AMTAR = @AMTAR@
158158 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
159159 AR = @AR@
161161 AUTOHEADER = @AUTOHEADER@
162162 AUTOMAKE = @AUTOMAKE@
163163 AWK = @AWK@
164 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
165 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
166 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
167 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
164168 BUILDID = @BUILDID@
165 CATALOGS = @CATALOGS@
166 CATOBJEXT = @CATOBJEXT@
167169 CC = @CC@
168170 CCDEPMODE = @CCDEPMODE@
169171 CFLAGS = @CFLAGS@
170172 CPP = @CPP@
171173 CPPFLAGS = @CPPFLAGS@
172174 CYGPATH_W = @CYGPATH_W@
173 DATADIRNAME = @DATADIRNAME@
174175 DEFS = @DEFS@
175176 DEPDIR = @DEPDIR@
176177 DLLTOOL = @DLLTOOL@
188189 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189190 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
190191 GLIB_MKENUMS = @GLIB_MKENUMS@
191 GMOFILES = @GMOFILES@
192 GMSGFMT = @GMSGFMT@
193192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
194193 GREP = @GREP@
195194 GTK_CFLAGS = @GTK_CFLAGS@
204203 INSTALL_PROGRAM = @INSTALL_PROGRAM@
205204 INSTALL_SCRIPT = @INSTALL_SCRIPT@
206205 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
207 INSTOBJEXT = @INSTOBJEXT@
208 INTLLIBS = @INTLLIBS@
209 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
210 INTLTOOL_MERGE = @INTLTOOL_MERGE@
211 INTLTOOL_PERL = @INTLTOOL_PERL@
212 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
213 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
214 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
215 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
216 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
217 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
218206 LD = @LD@
219207 LDFLAGS = @LDFLAGS@
220208 LIBOBJS = @LIBOBJS@
234222 MAKEINFO = @MAKEINFO@
235223 MANIFEST_TOOL = @MANIFEST_TOOL@
236224 MKDIR_P = @MKDIR_P@
237 MKINSTALLDIRS = @MKINSTALLDIRS@
238225 MSGFMT = @MSGFMT@
239 MSGFMT_OPTS = @MSGFMT_OPTS@
240226 MSGMERGE = @MSGMERGE@
241227 NM = @NM@
242228 NMEDIT = @NMEDIT@
257243 PKG_CONFIG = @PKG_CONFIG@
258244 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
259245 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
260 POFILES = @POFILES@
261 POSUB = @POSUB@
262 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
263 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
264246 RANLIB = @RANLIB@
247 REST_REQUIRED = @REST_REQUIRED@
265248 SED = @SED@
266249 SET_MAKE = @SET_MAKE@
267250 SHELL = @SHELL@
273256 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
274257 STRIP = @STRIP@
275258 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
276 USE_NLS = @USE_NLS@
277259 VERSION = @VERSION@
260 VTE_CFLAGS = @VTE_CFLAGS@
261 VTE_LIBS = @VTE_LIBS@
278262 WARN_CFLAGS = @WARN_CFLAGS@
279263 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
280264 WINDRES = @WINDRES@
313297 includedir = @includedir@
314298 infodir = @infodir@
315299 install_sh = @install_sh@
316 intltool__v_merge_options_ = @intltool__v_merge_options_@
317 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
318300 libdir = @libdir@
319301 libexecdir = @libexecdir@
320302 localedir = @localedir@
358340 *config.status*) \
359341 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
360342 *) \
361 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
362 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
343 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
344 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
363345 esac;
364346
365347 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
404386 cscope cscopelist:
405387
406388
407 distdir: $(DISTFILES)
389 distdir: $(BUILT_SOURCES)
390 $(MAKE) $(AM_MAKEFLAGS) distdir-am
391
392 distdir-am: $(DISTFILES)
408393 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
409394 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
410395 list='$(DISTFILES)'; \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/22x22
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
92 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/virt-bash-completion.m4 \
96 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9697 $(top_srcdir)/configure.ac
9798 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9899 $(ACLOCAL_M4)
153154 am__DIST_COMMON = $(srcdir)/Makefile.in
154155 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
155156 ACLOCAL = @ACLOCAL@
156 ALL_LINGUAS = @ALL_LINGUAS@
157157 AMTAR = @AMTAR@
158158 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
159159 AR = @AR@
161161 AUTOHEADER = @AUTOHEADER@
162162 AUTOMAKE = @AUTOMAKE@
163163 AWK = @AWK@
164 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
165 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
166 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
167 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
164168 BUILDID = @BUILDID@
165 CATALOGS = @CATALOGS@
166 CATOBJEXT = @CATOBJEXT@
167169 CC = @CC@
168170 CCDEPMODE = @CCDEPMODE@
169171 CFLAGS = @CFLAGS@
170172 CPP = @CPP@
171173 CPPFLAGS = @CPPFLAGS@
172174 CYGPATH_W = @CYGPATH_W@
173 DATADIRNAME = @DATADIRNAME@
174175 DEFS = @DEFS@
175176 DEPDIR = @DEPDIR@
176177 DLLTOOL = @DLLTOOL@
188189 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189190 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
190191 GLIB_MKENUMS = @GLIB_MKENUMS@
191 GMOFILES = @GMOFILES@
192 GMSGFMT = @GMSGFMT@
193192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
194193 GREP = @GREP@
195194 GTK_CFLAGS = @GTK_CFLAGS@
204203 INSTALL_PROGRAM = @INSTALL_PROGRAM@
205204 INSTALL_SCRIPT = @INSTALL_SCRIPT@
206205 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
207 INSTOBJEXT = @INSTOBJEXT@
208 INTLLIBS = @INTLLIBS@
209 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
210 INTLTOOL_MERGE = @INTLTOOL_MERGE@
211 INTLTOOL_PERL = @INTLTOOL_PERL@
212 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
213 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
214 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
215 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
216 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
217 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
218206 LD = @LD@
219207 LDFLAGS = @LDFLAGS@
220208 LIBOBJS = @LIBOBJS@
234222 MAKEINFO = @MAKEINFO@
235223 MANIFEST_TOOL = @MANIFEST_TOOL@
236224 MKDIR_P = @MKDIR_P@
237 MKINSTALLDIRS = @MKINSTALLDIRS@
238225 MSGFMT = @MSGFMT@
239 MSGFMT_OPTS = @MSGFMT_OPTS@
240226 MSGMERGE = @MSGMERGE@
241227 NM = @NM@
242228 NMEDIT = @NMEDIT@
257243 PKG_CONFIG = @PKG_CONFIG@
258244 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
259245 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
260 POFILES = @POFILES@
261 POSUB = @POSUB@
262 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
263 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
264246 RANLIB = @RANLIB@
247 REST_REQUIRED = @REST_REQUIRED@
265248 SED = @SED@
266249 SET_MAKE = @SET_MAKE@
267250 SHELL = @SHELL@
273256 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
274257 STRIP = @STRIP@
275258 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
276 USE_NLS = @USE_NLS@
277259 VERSION = @VERSION@
260 VTE_CFLAGS = @VTE_CFLAGS@
261 VTE_LIBS = @VTE_LIBS@
278262 WARN_CFLAGS = @WARN_CFLAGS@
279263 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
280264 WINDRES = @WINDRES@
313297 includedir = @includedir@
314298 infodir = @infodir@
315299 install_sh = @install_sh@
316 intltool__v_merge_options_ = @intltool__v_merge_options_@
317 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
318300 libdir = @libdir@
319301 libexecdir = @libexecdir@
320302 localedir = @localedir@
358340 *config.status*) \
359341 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
360342 *) \
361 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
362 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
343 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
344 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
363345 esac;
364346
365347 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
404386 cscope cscopelist:
405387
406388
407 distdir: $(DISTFILES)
389 distdir: $(BUILT_SOURCES)
390 $(MAKE) $(AM_MAKEFLAGS) distdir-am
391
392 distdir-am: $(DISTFILES)
408393 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
409394 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
410395 list='$(DISTFILES)'; \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/24x24
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
92 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/virt-bash-completion.m4 \
96 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9697 $(top_srcdir)/configure.ac
9798 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9899 $(ACLOCAL_M4)
154155 am__DIST_COMMON = $(srcdir)/Makefile.in
155156 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
156157 ACLOCAL = @ACLOCAL@
157 ALL_LINGUAS = @ALL_LINGUAS@
158158 AMTAR = @AMTAR@
159159 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
160160 AR = @AR@
162162 AUTOHEADER = @AUTOHEADER@
163163 AUTOMAKE = @AUTOMAKE@
164164 AWK = @AWK@
165 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
166 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
167 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
168 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
165169 BUILDID = @BUILDID@
166 CATALOGS = @CATALOGS@
167 CATOBJEXT = @CATOBJEXT@
168170 CC = @CC@
169171 CCDEPMODE = @CCDEPMODE@
170172 CFLAGS = @CFLAGS@
171173 CPP = @CPP@
172174 CPPFLAGS = @CPPFLAGS@
173175 CYGPATH_W = @CYGPATH_W@
174 DATADIRNAME = @DATADIRNAME@
175176 DEFS = @DEFS@
176177 DEPDIR = @DEPDIR@
177178 DLLTOOL = @DLLTOOL@
189190 GLIB2_REQUIRED = @GLIB2_REQUIRED@
190191 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
191192 GLIB_MKENUMS = @GLIB_MKENUMS@
192 GMOFILES = @GMOFILES@
193 GMSGFMT = @GMSGFMT@
194193 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
195194 GREP = @GREP@
196195 GTK_CFLAGS = @GTK_CFLAGS@
205204 INSTALL_PROGRAM = @INSTALL_PROGRAM@
206205 INSTALL_SCRIPT = @INSTALL_SCRIPT@
207206 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
208 INSTOBJEXT = @INSTOBJEXT@
209 INTLLIBS = @INTLLIBS@
210 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
211 INTLTOOL_MERGE = @INTLTOOL_MERGE@
212 INTLTOOL_PERL = @INTLTOOL_PERL@
213 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
214 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
215 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
216 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
217 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
218 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
219207 LD = @LD@
220208 LDFLAGS = @LDFLAGS@
221209 LIBOBJS = @LIBOBJS@
235223 MAKEINFO = @MAKEINFO@
236224 MANIFEST_TOOL = @MANIFEST_TOOL@
237225 MKDIR_P = @MKDIR_P@
238 MKINSTALLDIRS = @MKINSTALLDIRS@
239226 MSGFMT = @MSGFMT@
240 MSGFMT_OPTS = @MSGFMT_OPTS@
241227 MSGMERGE = @MSGMERGE@
242228 NM = @NM@
243229 NMEDIT = @NMEDIT@
258244 PKG_CONFIG = @PKG_CONFIG@
259245 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
260246 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
261 POFILES = @POFILES@
262 POSUB = @POSUB@
263 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
264 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
265247 RANLIB = @RANLIB@
248 REST_REQUIRED = @REST_REQUIRED@
266249 SED = @SED@
267250 SET_MAKE = @SET_MAKE@
268251 SHELL = @SHELL@
274257 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
275258 STRIP = @STRIP@
276259 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
277 USE_NLS = @USE_NLS@
278260 VERSION = @VERSION@
261 VTE_CFLAGS = @VTE_CFLAGS@
262 VTE_LIBS = @VTE_LIBS@
279263 WARN_CFLAGS = @WARN_CFLAGS@
280264 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
281265 WINDRES = @WINDRES@
314298 includedir = @includedir@
315299 infodir = @infodir@
316300 install_sh = @install_sh@
317 intltool__v_merge_options_ = @intltool__v_merge_options_@
318 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
319301 libdir = @libdir@
320302 libexecdir = @libexecdir@
321303 localedir = @localedir@
361343 *config.status*) \
362344 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
363345 *) \
364 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
365 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
346 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
347 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
366348 esac;
367349
368350 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
428410 cscope cscopelist:
429411
430412
431 distdir: $(DISTFILES)
413 distdir: $(BUILT_SOURCES)
414 $(MAKE) $(AM_MAKEFLAGS) distdir-am
415
416 distdir-am: $(DISTFILES)
432417 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
433418 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
434419 list='$(DISTFILES)'; \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/256x256
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
92 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/virt-bash-completion.m4 \
96 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9697 $(top_srcdir)/configure.ac
9798 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9899 $(ACLOCAL_M4)
153154 am__DIST_COMMON = $(srcdir)/Makefile.in
154155 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
155156 ACLOCAL = @ACLOCAL@
156 ALL_LINGUAS = @ALL_LINGUAS@
157157 AMTAR = @AMTAR@
158158 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
159159 AR = @AR@
161161 AUTOHEADER = @AUTOHEADER@
162162 AUTOMAKE = @AUTOMAKE@
163163 AWK = @AWK@
164 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
165 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
166 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
167 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
164168 BUILDID = @BUILDID@
165 CATALOGS = @CATALOGS@
166 CATOBJEXT = @CATOBJEXT@
167169 CC = @CC@
168170 CCDEPMODE = @CCDEPMODE@
169171 CFLAGS = @CFLAGS@
170172 CPP = @CPP@
171173 CPPFLAGS = @CPPFLAGS@
172174 CYGPATH_W = @CYGPATH_W@
173 DATADIRNAME = @DATADIRNAME@
174175 DEFS = @DEFS@
175176 DEPDIR = @DEPDIR@
176177 DLLTOOL = @DLLTOOL@
188189 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189190 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
190191 GLIB_MKENUMS = @GLIB_MKENUMS@
191 GMOFILES = @GMOFILES@
192 GMSGFMT = @GMSGFMT@
193192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
194193 GREP = @GREP@
195194 GTK_CFLAGS = @GTK_CFLAGS@
204203 INSTALL_PROGRAM = @INSTALL_PROGRAM@
205204 INSTALL_SCRIPT = @INSTALL_SCRIPT@
206205 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
207 INSTOBJEXT = @INSTOBJEXT@
208 INTLLIBS = @INTLLIBS@
209 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
210 INTLTOOL_MERGE = @INTLTOOL_MERGE@
211 INTLTOOL_PERL = @INTLTOOL_PERL@
212 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
213 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
214 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
215 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
216 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
217 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
218206 LD = @LD@
219207 LDFLAGS = @LDFLAGS@
220208 LIBOBJS = @LIBOBJS@
234222 MAKEINFO = @MAKEINFO@
235223 MANIFEST_TOOL = @MANIFEST_TOOL@
236224 MKDIR_P = @MKDIR_P@
237 MKINSTALLDIRS = @MKINSTALLDIRS@
238225 MSGFMT = @MSGFMT@
239 MSGFMT_OPTS = @MSGFMT_OPTS@
240226 MSGMERGE = @MSGMERGE@
241227 NM = @NM@
242228 NMEDIT = @NMEDIT@
257243 PKG_CONFIG = @PKG_CONFIG@
258244 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
259245 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
260 POFILES = @POFILES@
261 POSUB = @POSUB@
262 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
263 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
264246 RANLIB = @RANLIB@
247 REST_REQUIRED = @REST_REQUIRED@
265248 SED = @SED@
266249 SET_MAKE = @SET_MAKE@
267250 SHELL = @SHELL@
273256 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
274257 STRIP = @STRIP@
275258 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
276 USE_NLS = @USE_NLS@
277259 VERSION = @VERSION@
260 VTE_CFLAGS = @VTE_CFLAGS@
261 VTE_LIBS = @VTE_LIBS@
278262 WARN_CFLAGS = @WARN_CFLAGS@
279263 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
280264 WINDRES = @WINDRES@
313297 includedir = @includedir@
314298 infodir = @infodir@
315299 install_sh = @install_sh@
316 intltool__v_merge_options_ = @intltool__v_merge_options_@
317 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
318300 libdir = @libdir@
319301 libexecdir = @libexecdir@
320302 localedir = @localedir@
358340 *config.status*) \
359341 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
360342 *) \
361 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
362 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
343 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
344 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
363345 esac;
364346
365347 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
404386 cscope cscopelist:
405387
406388
407 distdir: $(DISTFILES)
389 distdir: $(BUILT_SOURCES)
390 $(MAKE) $(AM_MAKEFLAGS) distdir-am
391
392 distdir-am: $(DISTFILES)
408393 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
409394 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
410395 list='$(DISTFILES)'; \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/32x32
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
92 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/virt-bash-completion.m4 \
96 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9697 $(top_srcdir)/configure.ac
9798 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9899 $(ACLOCAL_M4)
153154 am__DIST_COMMON = $(srcdir)/Makefile.in
154155 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
155156 ACLOCAL = @ACLOCAL@
156 ALL_LINGUAS = @ALL_LINGUAS@
157157 AMTAR = @AMTAR@
158158 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
159159 AR = @AR@
161161 AUTOHEADER = @AUTOHEADER@
162162 AUTOMAKE = @AUTOMAKE@
163163 AWK = @AWK@
164 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
165 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
166 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
167 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
164168 BUILDID = @BUILDID@
165 CATALOGS = @CATALOGS@
166 CATOBJEXT = @CATOBJEXT@
167169 CC = @CC@
168170 CCDEPMODE = @CCDEPMODE@
169171 CFLAGS = @CFLAGS@
170172 CPP = @CPP@
171173 CPPFLAGS = @CPPFLAGS@
172174 CYGPATH_W = @CYGPATH_W@
173 DATADIRNAME = @DATADIRNAME@
174175 DEFS = @DEFS@
175176 DEPDIR = @DEPDIR@
176177 DLLTOOL = @DLLTOOL@
188189 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189190 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
190191 GLIB_MKENUMS = @GLIB_MKENUMS@
191 GMOFILES = @GMOFILES@
192 GMSGFMT = @GMSGFMT@
193192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
194193 GREP = @GREP@
195194 GTK_CFLAGS = @GTK_CFLAGS@
204203 INSTALL_PROGRAM = @INSTALL_PROGRAM@
205204 INSTALL_SCRIPT = @INSTALL_SCRIPT@
206205 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
207 INSTOBJEXT = @INSTOBJEXT@
208 INTLLIBS = @INTLLIBS@
209 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
210 INTLTOOL_MERGE = @INTLTOOL_MERGE@
211 INTLTOOL_PERL = @INTLTOOL_PERL@
212 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
213 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
214 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
215 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
216 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
217 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
218206 LD = @LD@
219207 LDFLAGS = @LDFLAGS@
220208 LIBOBJS = @LIBOBJS@
234222 MAKEINFO = @MAKEINFO@
235223 MANIFEST_TOOL = @MANIFEST_TOOL@
236224 MKDIR_P = @MKDIR_P@
237 MKINSTALLDIRS = @MKINSTALLDIRS@
238225 MSGFMT = @MSGFMT@
239 MSGFMT_OPTS = @MSGFMT_OPTS@
240226 MSGMERGE = @MSGMERGE@
241227 NM = @NM@
242228 NMEDIT = @NMEDIT@
257243 PKG_CONFIG = @PKG_CONFIG@
258244 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
259245 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
260 POFILES = @POFILES@
261 POSUB = @POSUB@
262 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
263 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
264246 RANLIB = @RANLIB@
247 REST_REQUIRED = @REST_REQUIRED@
265248 SED = @SED@
266249 SET_MAKE = @SET_MAKE@
267250 SHELL = @SHELL@
273256 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
274257 STRIP = @STRIP@
275258 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
276 USE_NLS = @USE_NLS@
277259 VERSION = @VERSION@
260 VTE_CFLAGS = @VTE_CFLAGS@
261 VTE_LIBS = @VTE_LIBS@
278262 WARN_CFLAGS = @WARN_CFLAGS@
279263 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
280264 WINDRES = @WINDRES@
313297 includedir = @includedir@
314298 infodir = @infodir@
315299 install_sh = @install_sh@
316 intltool__v_merge_options_ = @intltool__v_merge_options_@
317 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
318300 libdir = @libdir@
319301 libexecdir = @libexecdir@
320302 localedir = @localedir@
358340 *config.status*) \
359341 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
360342 *) \
361 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
362 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
343 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
344 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
363345 esac;
364346
365347 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
404386 cscope cscopelist:
405387
406388
407 distdir: $(DISTFILES)
389 distdir: $(BUILT_SOURCES)
390 $(MAKE) $(AM_MAKEFLAGS) distdir-am
391
392 distdir-am: $(DISTFILES)
408393 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
409394 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
410395 list='$(DISTFILES)'; \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons/48x48
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
92 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/virt-bash-completion.m4 \
96 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9697 $(top_srcdir)/configure.ac
9798 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9899 $(ACLOCAL_M4)
153154 am__DIST_COMMON = $(srcdir)/Makefile.in
154155 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
155156 ACLOCAL = @ACLOCAL@
156 ALL_LINGUAS = @ALL_LINGUAS@
157157 AMTAR = @AMTAR@
158158 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
159159 AR = @AR@
161161 AUTOHEADER = @AUTOHEADER@
162162 AUTOMAKE = @AUTOMAKE@
163163 AWK = @AWK@
164 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
165 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
166 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
167 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
164168 BUILDID = @BUILDID@
165 CATALOGS = @CATALOGS@
166 CATOBJEXT = @CATOBJEXT@
167169 CC = @CC@
168170 CCDEPMODE = @CCDEPMODE@
169171 CFLAGS = @CFLAGS@
170172 CPP = @CPP@
171173 CPPFLAGS = @CPPFLAGS@
172174 CYGPATH_W = @CYGPATH_W@
173 DATADIRNAME = @DATADIRNAME@
174175 DEFS = @DEFS@
175176 DEPDIR = @DEPDIR@
176177 DLLTOOL = @DLLTOOL@
188189 GLIB2_REQUIRED = @GLIB2_REQUIRED@
189190 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
190191 GLIB_MKENUMS = @GLIB_MKENUMS@
191 GMOFILES = @GMOFILES@
192 GMSGFMT = @GMSGFMT@
193192 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
194193 GREP = @GREP@
195194 GTK_CFLAGS = @GTK_CFLAGS@
204203 INSTALL_PROGRAM = @INSTALL_PROGRAM@
205204 INSTALL_SCRIPT = @INSTALL_SCRIPT@
206205 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
207 INSTOBJEXT = @INSTOBJEXT@
208 INTLLIBS = @INTLLIBS@
209 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
210 INTLTOOL_MERGE = @INTLTOOL_MERGE@
211 INTLTOOL_PERL = @INTLTOOL_PERL@
212 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
213 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
214 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
215 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
216 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
217 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
218206 LD = @LD@
219207 LDFLAGS = @LDFLAGS@
220208 LIBOBJS = @LIBOBJS@
234222 MAKEINFO = @MAKEINFO@
235223 MANIFEST_TOOL = @MANIFEST_TOOL@
236224 MKDIR_P = @MKDIR_P@
237 MKINSTALLDIRS = @MKINSTALLDIRS@
238225 MSGFMT = @MSGFMT@
239 MSGFMT_OPTS = @MSGFMT_OPTS@
240226 MSGMERGE = @MSGMERGE@
241227 NM = @NM@
242228 NMEDIT = @NMEDIT@
257243 PKG_CONFIG = @PKG_CONFIG@
258244 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
259245 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
260 POFILES = @POFILES@
261 POSUB = @POSUB@
262 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
263 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
264246 RANLIB = @RANLIB@
247 REST_REQUIRED = @REST_REQUIRED@
265248 SED = @SED@
266249 SET_MAKE = @SET_MAKE@
267250 SHELL = @SHELL@
273256 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
274257 STRIP = @STRIP@
275258 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
276 USE_NLS = @USE_NLS@
277259 VERSION = @VERSION@
260 VTE_CFLAGS = @VTE_CFLAGS@
261 VTE_LIBS = @VTE_LIBS@
278262 WARN_CFLAGS = @WARN_CFLAGS@
279263 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
280264 WINDRES = @WINDRES@
313297 includedir = @includedir@
314298 infodir = @infodir@
315299 install_sh = @install_sh@
316 intltool__v_merge_options_ = @intltool__v_merge_options_@
317 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
318300 libdir = @libdir@
319301 libexecdir = @libexecdir@
320302 localedir = @localedir@
358340 *config.status*) \
359341 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
360342 *) \
361 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
362 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
343 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
344 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
363345 esac;
364346
365347 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
404386 cscope cscopelist:
405387
406388
407 distdir: $(DISTFILES)
389 distdir: $(BUILT_SOURCES)
390 $(MAKE) $(AM_MAKEFLAGS) distdir-am
391
392 distdir-am: $(DISTFILES)
408393 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
409394 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
410395 list='$(DISTFILES)'; \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8989 host_triplet = @host@
9090 subdir = icons
9191 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
93 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
94 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
95 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
92 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95 $(top_srcdir)/m4/virt-bash-completion.m4 \
96 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9697 $(top_srcdir)/configure.ac
9798 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9899 $(ACLOCAL_M4)
136137 $(RECURSIVE_CLEAN_TARGETS) \
137138 $(am__extra_recursive_targets)
138139 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
139 distdir
140 distdir distdir-am
140141 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
141142 # Read a list of newline-separated strings from the standard input,
142143 # and print each of them once, without duplicates. Input order is
185186 done; \
186187 reldir="$$dir2"
187188 ACLOCAL = @ACLOCAL@
188 ALL_LINGUAS = @ALL_LINGUAS@
189189 AMTAR = @AMTAR@
190190 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
191191 AR = @AR@
193193 AUTOHEADER = @AUTOHEADER@
194194 AUTOMAKE = @AUTOMAKE@
195195 AWK = @AWK@
196 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
197 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
198 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
199 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
196200 BUILDID = @BUILDID@
197 CATALOGS = @CATALOGS@
198 CATOBJEXT = @CATOBJEXT@
199201 CC = @CC@
200202 CCDEPMODE = @CCDEPMODE@
201203 CFLAGS = @CFLAGS@
202204 CPP = @CPP@
203205 CPPFLAGS = @CPPFLAGS@
204206 CYGPATH_W = @CYGPATH_W@
205 DATADIRNAME = @DATADIRNAME@
206207 DEFS = @DEFS@
207208 DEPDIR = @DEPDIR@
208209 DLLTOOL = @DLLTOOL@
220221 GLIB2_REQUIRED = @GLIB2_REQUIRED@
221222 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
222223 GLIB_MKENUMS = @GLIB_MKENUMS@
223 GMOFILES = @GMOFILES@
224 GMSGFMT = @GMSGFMT@
225224 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
226225 GREP = @GREP@
227226 GTK_CFLAGS = @GTK_CFLAGS@
236235 INSTALL_PROGRAM = @INSTALL_PROGRAM@
237236 INSTALL_SCRIPT = @INSTALL_SCRIPT@
238237 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
239 INSTOBJEXT = @INSTOBJEXT@
240 INTLLIBS = @INTLLIBS@
241 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
242 INTLTOOL_MERGE = @INTLTOOL_MERGE@
243 INTLTOOL_PERL = @INTLTOOL_PERL@
244 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
245 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
246 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
247 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
248 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
249 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
250238 LD = @LD@
251239 LDFLAGS = @LDFLAGS@
252240 LIBOBJS = @LIBOBJS@
266254 MAKEINFO = @MAKEINFO@
267255 MANIFEST_TOOL = @MANIFEST_TOOL@
268256 MKDIR_P = @MKDIR_P@
269 MKINSTALLDIRS = @MKINSTALLDIRS@
270257 MSGFMT = @MSGFMT@
271 MSGFMT_OPTS = @MSGFMT_OPTS@
272258 MSGMERGE = @MSGMERGE@
273259 NM = @NM@
274260 NMEDIT = @NMEDIT@
289275 PKG_CONFIG = @PKG_CONFIG@
290276 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
291277 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
292 POFILES = @POFILES@
293 POSUB = @POSUB@
294 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
295 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
296278 RANLIB = @RANLIB@
279 REST_REQUIRED = @REST_REQUIRED@
297280 SED = @SED@
298281 SET_MAKE = @SET_MAKE@
299282 SHELL = @SHELL@
305288 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
306289 STRIP = @STRIP@
307290 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
308 USE_NLS = @USE_NLS@
309291 VERSION = @VERSION@
292 VTE_CFLAGS = @VTE_CFLAGS@
293 VTE_LIBS = @VTE_LIBS@
310294 WARN_CFLAGS = @WARN_CFLAGS@
311295 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
312296 WINDRES = @WINDRES@
345329 includedir = @includedir@
346330 infodir = @infodir@
347331 install_sh = @install_sh@
348 intltool__v_merge_options_ = @intltool__v_merge_options_@
349 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
350332 libdir = @libdir@
351333 libexecdir = @libexecdir@
352334 localedir = @localedir@
392374 *config.status*) \
393375 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
394376 *) \
395 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
396 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
377 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
378 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
397379 esac;
398380
399381 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
510492 distclean-tags:
511493 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
512494
513 distdir: $(DISTFILES)
495 distdir: $(BUILT_SOURCES)
496 $(MAKE) $(AM_MAKEFLAGS) distdir-am
497
498 distdir-am: $(DISTFILES)
514499 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
515500 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
516501 list='$(DISTFILES)'; \
+0
-0
intltool-extract.in less more
(Empty file)
+0
-0
intltool-merge.in less more
(Empty file)
+0
-0
intltool-update.in less more
(Empty file)
+0
-212
m4/intltool.m4 less more
0 ## intltool.m4 - Configure intltool for the target system. -*-Shell-script-*-
1 ## Copyright (C) 2001 Eazel, Inc.
2 ## Author: Maciej Stachowiak <mjs@noisehavoc.org>
3 ## Kenneth Christiansen <kenneth@gnu.org>
4 ##
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2 of the License, or
8 ## (at your option) any later version.
9 ##
10 ## This program is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program; if not, write to the Free Software
17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 ##
19 ## As a special exception to the GNU General Public License, if you
20 ## distribute this file as part of a program that contains a
21 ## configuration script generated by Autoconf, you may include it under
22 ## the same distribution terms that you use for the rest of that program.
23
24 dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
25 # serial 42 IT_PROG_INTLTOOL
26 AC_DEFUN([IT_PROG_INTLTOOL], [
27 AC_PREREQ([2.50])dnl
28 AC_REQUIRE([AM_NLS])dnl
29
30 case "$am__api_version" in
31 1.[01234])
32 AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
33 ;;
34 *)
35 ;;
36 esac
37
38 INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
39 INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
40 INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
41 if test -n "$1"; then
42 AC_MSG_CHECKING([for intltool >= $1])
43 AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
44 test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
45 AC_MSG_ERROR([Your intltool is too old. You need intltool $1 or later.])
46 fi
47
48 AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
49 AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
50 AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
51 if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
52 AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
53 fi
54
55 if test -z "$AM_DEFAULT_VERBOSITY"; then
56 AM_DEFAULT_VERBOSITY=1
57 fi
58 AC_SUBST([AM_DEFAULT_VERBOSITY])
59
60 INTLTOOL_V_MERGE='$(INTLTOOL__v_MERGE_$(V))'
61 INTLTOOL__v_MERGE_='$(INTLTOOL__v_MERGE_$(AM_DEFAULT_VERBOSITY))'
62 INTLTOOL__v_MERGE_0='@echo " ITMRG " [$]@;'
63 AC_SUBST(INTLTOOL_V_MERGE)
64 AC_SUBST(INTLTOOL__v_MERGE_)
65 AC_SUBST(INTLTOOL__v_MERGE_0)
66
67 INTLTOOL_V_MERGE_OPTIONS='$(intltool__v_merge_options_$(V))'
68 intltool__v_merge_options_='$(intltool__v_merge_options_$(AM_DEFAULT_VERBOSITY))'
69 intltool__v_merge_options_0='-q'
70 AC_SUBST(INTLTOOL_V_MERGE_OPTIONS)
71 AC_SUBST(intltool__v_merge_options_)
72 AC_SUBST(intltool__v_merge_options_0)
73
74 INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
75 INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
76 INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
77 INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
78 INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -p $(top_srcdir)/po $< [$]@'
79 INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
80 INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
81 INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
82 INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
83 INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
84 INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
85 if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge 5000; then
86 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u --no-translations $< [$]@'
87 else
88 INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; $(INTLTOOL_V_MERGE)_it_tmp_dir=tmp.intltool.[$][$]RANDOM && mkdir [$][$]_it_tmp_dir && LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u [$][$]_it_tmp_dir $< [$]@ && rmdir [$][$]_it_tmp_dir'
89 fi
90 INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
91 INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
92 INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
93 INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
94 INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
95 INTLTOOL_SERVICE_RULE='%.service: %.service.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
96 INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; $(INTLTOOL_V_MERGE)LC_ALL=C $(INTLTOOL_MERGE) $(INTLTOOL_V_MERGE_OPTIONS) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
97
98 _IT_SUBST(INTLTOOL_DESKTOP_RULE)
99 _IT_SUBST(INTLTOOL_DIRECTORY_RULE)
100 _IT_SUBST(INTLTOOL_KEYS_RULE)
101 _IT_SUBST(INTLTOOL_PROP_RULE)
102 _IT_SUBST(INTLTOOL_OAF_RULE)
103 _IT_SUBST(INTLTOOL_PONG_RULE)
104 _IT_SUBST(INTLTOOL_SERVER_RULE)
105 _IT_SUBST(INTLTOOL_SHEET_RULE)
106 _IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
107 _IT_SUBST(INTLTOOL_UI_RULE)
108 _IT_SUBST(INTLTOOL_XAM_RULE)
109 _IT_SUBST(INTLTOOL_KBD_RULE)
110 _IT_SUBST(INTLTOOL_XML_RULE)
111 _IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
112 _IT_SUBST(INTLTOOL_CAVES_RULE)
113 _IT_SUBST(INTLTOOL_SCHEMAS_RULE)
114 _IT_SUBST(INTLTOOL_THEME_RULE)
115 _IT_SUBST(INTLTOOL_SERVICE_RULE)
116 _IT_SUBST(INTLTOOL_POLICY_RULE)
117
118 # Check the gettext tools to make sure they are GNU
119 AC_PATH_PROG(XGETTEXT, xgettext)
120 AC_PATH_PROG(MSGMERGE, msgmerge)
121 AC_PATH_PROG(MSGFMT, msgfmt)
122 AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
123 if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
124 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
125 fi
126 xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
127 mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
128 mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
129 if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
130 AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
131 fi
132
133 AC_PATH_PROG(INTLTOOL_PERL, perl)
134 if test -z "$INTLTOOL_PERL"; then
135 AC_MSG_ERROR([perl not found])
136 fi
137 AC_MSG_CHECKING([for perl >= 5.8.1])
138 $INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
139 if test $? -ne 0; then
140 AC_MSG_ERROR([perl 5.8.1 is required for intltool])
141 else
142 IT_PERL_VERSION=`$INTLTOOL_PERL -e "printf '%vd', $^V"`
143 AC_MSG_RESULT([$IT_PERL_VERSION])
144 fi
145 if test "x$2" != "xno-xml"; then
146 AC_MSG_CHECKING([for XML::Parser])
147 if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
148 AC_MSG_RESULT([ok])
149 else
150 AC_MSG_ERROR([XML::Parser perl module is required for intltool])
151 fi
152 fi
153
154 # Substitute ALL_LINGUAS so we can use it in po/Makefile
155 AC_SUBST(ALL_LINGUAS)
156
157 IT_PO_SUBDIR([po])
158
159 ])
160
161
162 # IT_PO_SUBDIR(DIRNAME)
163 # ---------------------
164 # All po subdirs have to be declared with this macro; the subdir "po" is
165 # declared by IT_PROG_INTLTOOL.
166 #
167 AC_DEFUN([IT_PO_SUBDIR],
168 [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
169 dnl
170 dnl The following CONFIG_COMMANDS should be executed at the very end
171 dnl of config.status.
172 AC_CONFIG_COMMANDS_PRE([
173 AC_CONFIG_COMMANDS([$1/stamp-it], [
174 if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
175 AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
176 fi
177 rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
178 >"$1/stamp-it.tmp"
179 [sed '/^#/d
180 s/^[[].*] *//
181 /^[ ]*$/d
182 '"s|^| $ac_top_srcdir/|" \
183 "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
184 ]
185 [sed '/^POTFILES =/,/[^\\]$/ {
186 /^POTFILES =/!d
187 r $1/POTFILES
188 }
189 ' "$1/Makefile.in" >"$1/Makefile"]
190 rm -f "$1/Makefile.tmp"
191 mv "$1/stamp-it.tmp" "$1/stamp-it"
192 ])
193 ])dnl
194 ])
195
196 # _IT_SUBST(VARIABLE)
197 # -------------------
198 # Abstract macro to do either _AM_SUBST_NOTMAKE or AC_SUBST
199 #
200 AC_DEFUN([_IT_SUBST],
201 [
202 AC_SUBST([$1])
203 m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
204 ]
205 )
206
207 # deprecated macros
208 AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
209 # A hint is needed for aclocal from Automake <= 1.9.4:
210 # AC_DEFUN([AC_PROG_INTLTOOL], ...)
211
0 dnl Bash completion support
1 dnl
2 dnl Copyright (C) 2017 Red Hat, Inc.
3 dnl
4 dnl This library is free software; you can redistribute it and/or
5 dnl modify it under the terms of the GNU Lesser General Public
6 dnl License as published by the Free Software Foundation; either
7 dnl version 2.1 of the License, or (at your option) any later version.
8 dnl
9 dnl This library is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 dnl Lesser General Public License for more details.
13 dnl
14 dnl You should have received a copy of the GNU Lesser General Public
15 dnl License along with this library. If not, see
16 dnl <http://www.gnu.org/licenses/>.
17 dnl
18 dnl Inspired by libvirt code.
19 dnl
20
21 AC_DEFUN([VIRT_VIEWER_ARG_BASH_COMPLETION],[
22 m4_divert_text([DEFAULTS], [[enable_bash_completion=check]])
23 AC_ARG_ENABLE([bash_completion],
24 [AS_HELP_STRING([--enable-bash-completion],
25 [bash completion @<:@default=check@:>@])])
26 m4_divert_text([DEFAULTS], [[with_bash_completions_dir=check]])
27 AC_ARG_WITH([bash_completions_dir],
28 [AS_HELP_STRING([--with-bash-completions-dir=DIR],
29 [directory containing bash completions scripts @<:@default=check@:>@])])
30 ])
31
32
33 AC_DEFUN([VIRT_VIEWER_CHECK_BASH_COMPLETION], [
34 if test "x$enable_bash_completion" != "xno" ; then
35 PKG_CHECK_MODULES(BASH_COMPLETION, bash-completion >= $BASH_COMPLETION_REQUIRED,
36 [with_bash_completion=yes],
37 [with_bash_completion=no])
38 if test "x$enable_bash_completion:x$with_bash_completion" = "yes:no"; then
39 m4_default(fail_action,
40 [AC_MSG_ERROR([You must install the ]pc_name[ >= ]pc_version[ pkg-config module to compile virt-viewer])])
41 fi
42 enable_bash_completion=$with_bash_completion
43 fi
44
45 if test "x$with_bash_completion" = "xyes" ; then
46 if test "x$with_bash_completions_dir" = "xcheck"; then
47 AC_MSG_CHECKING([for bash-completions directory])
48 BASH_COMPLETIONS_DIR="$($PKG_CONFIG --variable=completionsdir bash-completion)"
49 AC_MSG_RESULT([$BASH_COMPLETIONS_DIR])
50 with_bash_completions_dir=$BASH_COMPLETIONS_DIR
51
52 dnl Replace bash completions's exec_prefix with our own.
53 dnl Note that ${exec_prefix} is kept verbatim at this point in time,
54 dnl and will only be expanded later, when make is called: this makes
55 dnl it possible to override such prefix at compilation or installation
56 dnl time
57 bash_completions_prefix="$($PKG_CONFIG --variable=prefix bash-completion)"
58 if test "x$bash_completions_prefix" = "x" ; then
59 bash_completions_prefix="/usr"
60 fi
61
62 BASH_COMPLETIONS_DIR='${exec_prefix}'"${BASH_COMPLETIONS_DIR#$bash_completions_prefix}"
63 elif test "x$with_bash_completions_dir" = "xno" || test "x$with_bash_completions_dir" = "xyes"; then
64 AC_MSG_ERROR([bash-completions-dir must be used only with valid path])
65 else
66 BASH_COMPLETIONS_DIR=$with_bash_completions_dir
67 fi
68 AC_SUBST([BASH_COMPLETIONS_DIR])
69 fi
70
71 AM_CONDITIONAL([WITH_BASH_COMPLETION], [test "x$enable_bash_completion" = "xyes"])
72 ])
73
74
75 AC_DEFUN([VIRT_VIEWER_RESULT_BASH_COMPLETION],[
76 if test "x$enable_bash_completion" = "xyes" ; then
77 AC_MSG_NOTICE([bash completion: $enable_bash_completion DIR: [$with_bash_completions_dir]])
78 else
79 AC_MSG_NOTICE([bash completion: $enable_bash_completion])
80 fi
81 AC_MSG_NOTICE([])
82 ])
0 dnl gettext utilities
1 dnl
2 dnl Copyright (C) 2018 Red Hat, Inc.
3 dnl
4 dnl This library is free software; you can redistribute it and/or
5 dnl modify it under the terms of the GNU Lesser General Public
6 dnl License as published by the Free Software Foundation; either
7 dnl version 2.1 of the License, or (at your option) any later version.
8 dnl
9 dnl This library is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 dnl Lesser General Public License for more details.
13 dnl
14 dnl You should have received a copy of the GNU Lesser General Public
15 dnl License along with this library. If not, see
16 dnl <http://www.gnu.org/licenses/>.
17 dnl
18
19 AC_DEFUN([VIRT_VIEWER_ARG_NLS],[
20 m4_divert_text([DEFAULTS], [[enable_nls=yes]])
21 AC_ARG_ENABLE([nls],
22 [AS_HELP_STRING([--enable-nls],
23 [NLS @<:@default=yes@:>@])])
24 ])
25
26 AC_DEFUN([VIRT_VIEWER_CHECK_NLS],[
27 dnl GNU gettext tools (optional).
28 AC_CHECK_PROG([XGETTEXT], [xgettext], [xgettext], [no])
29 AC_CHECK_PROG([MSGFMT], [msgfmt], [msgfmt], [no])
30 AC_CHECK_PROG([MSGMERGE], [msgmerge], [msgmerge], [no])
31
32 dnl Check they are the GNU gettext tools.
33 AC_MSG_CHECKING([msgfmt is GNU tool])
34 if $MSGFMT --version >/dev/null 2>&1 && $MSGFMT --version | grep -q 'GNU gettext'; then
35 msgfmt_is_gnu=yes
36 else
37 msgfmt_is_gnu=no
38 fi
39 AC_MSG_RESULT([$msgfmt_is_gnu])
40 AM_CONDITIONAL([ENABLE_NLS], [test "x$enable_nls" = "xyes"])
41 AM_CONDITIONAL([HAVE_GNU_GETTEXT_TOOLS],
42 [test "x$XGETTEXT" != "xno" && test "x$MSGFMT" != "xno" && \
43 test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"])
44 ])
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
8888 host_triplet = @host@
8989 subdir = man
9090 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
91 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
92 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
93 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
94 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
91 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
92 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
93 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
94 $(top_srcdir)/m4/virt-bash-completion.m4 \
95 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
9596 $(top_srcdir)/configure.ac
9697 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
9798 $(ACLOCAL_M4)
154155 am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in
155156 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
156157 ACLOCAL = @ACLOCAL@
157 ALL_LINGUAS = @ALL_LINGUAS@
158158 AMTAR = @AMTAR@
159159 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
160160 AR = @AR@
162162 AUTOHEADER = @AUTOHEADER@
163163 AUTOMAKE = @AUTOMAKE@
164164 AWK = @AWK@
165 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
166 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
167 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
168 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
165169 BUILDID = @BUILDID@
166 CATALOGS = @CATALOGS@
167 CATOBJEXT = @CATOBJEXT@
168170 CC = @CC@
169171 CCDEPMODE = @CCDEPMODE@
170172 CFLAGS = @CFLAGS@
171173 CPP = @CPP@
172174 CPPFLAGS = @CPPFLAGS@
173175 CYGPATH_W = @CYGPATH_W@
174 DATADIRNAME = @DATADIRNAME@
175176 DEFS = @DEFS@
176177 DEPDIR = @DEPDIR@
177178 DLLTOOL = @DLLTOOL@
189190 GLIB2_REQUIRED = @GLIB2_REQUIRED@
190191 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
191192 GLIB_MKENUMS = @GLIB_MKENUMS@
192 GMOFILES = @GMOFILES@
193 GMSGFMT = @GMSGFMT@
194193 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
195194 GREP = @GREP@
196195 GTK_CFLAGS = @GTK_CFLAGS@
205204 INSTALL_PROGRAM = @INSTALL_PROGRAM@
206205 INSTALL_SCRIPT = @INSTALL_SCRIPT@
207206 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
208 INSTOBJEXT = @INSTOBJEXT@
209 INTLLIBS = @INTLLIBS@
210 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
211 INTLTOOL_MERGE = @INTLTOOL_MERGE@
212 INTLTOOL_PERL = @INTLTOOL_PERL@
213 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
214 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
215 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
216 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
217 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
218 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
219207 LD = @LD@
220208 LDFLAGS = @LDFLAGS@
221209 LIBOBJS = @LIBOBJS@
235223 MAKEINFO = @MAKEINFO@
236224 MANIFEST_TOOL = @MANIFEST_TOOL@
237225 MKDIR_P = @MKDIR_P@
238 MKINSTALLDIRS = @MKINSTALLDIRS@
239226 MSGFMT = @MSGFMT@
240 MSGFMT_OPTS = @MSGFMT_OPTS@
241227 MSGMERGE = @MSGMERGE@
242228 NM = @NM@
243229 NMEDIT = @NMEDIT@
258244 PKG_CONFIG = @PKG_CONFIG@
259245 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
260246 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
261 POFILES = @POFILES@
262 POSUB = @POSUB@
263 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
264 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
265247 RANLIB = @RANLIB@
248 REST_REQUIRED = @REST_REQUIRED@
266249 SED = @SED@
267250 SET_MAKE = @SET_MAKE@
268251 SHELL = @SHELL@
274257 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
275258 STRIP = @STRIP@
276259 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
277 USE_NLS = @USE_NLS@
278260 VERSION = @VERSION@
261 VTE_CFLAGS = @VTE_CFLAGS@
262 VTE_LIBS = @VTE_LIBS@
279263 WARN_CFLAGS = @WARN_CFLAGS@
280264 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
281265 WINDRES = @WINDRES@
314298 includedir = @includedir@
315299 infodir = @infodir@
316300 install_sh = @install_sh@
317 intltool__v_merge_options_ = @intltool__v_merge_options_@
318 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
319301 libdir = @libdir@
320302 libexecdir = @libexecdir@
321303 localedir = @localedir@
367349 *config.status*) \
368350 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
369351 *) \
370 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
371 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
352 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
353 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
372354 esac;
373355
374356 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
435417 cscope cscopelist:
436418
437419
438 distdir: $(DISTFILES)
420 distdir: $(BUILT_SOURCES)
421 $(MAKE) $(AM_MAKEFLAGS) distdir-am
422
423 distdir-am: $(DISTFILES)
439424 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
440425 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
441426 list='$(DISTFILES)'; \
0 .\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35)
0 .\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40)
11 .\"
22 .\" Standard preamble:
33 .\" ========================================================================
132132 .\" ========================================================================
133133 .\"
134134 .IX Title "REMOTE-VIEWER 1"
135 .TH REMOTE-VIEWER 1 "2018-07-27" "perl v5.26.2" "Virtualization Support"
135 .TH REMOTE-VIEWER 1 "2020-04-03" "perl v5.30.2" "Virtualization Support"
136136 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
137137 .\" way too many mistakes in technical documents.
138138 .if n .ad l
280280 .el .IP "\f(CWtype\fR (string, mandatory)" 4
281281 .IX Item "type (string, mandatory)"
282282 The session type, either \*(L"spice\*(R", \*(L"vnc\*(R" or \*(L"ovirt\*(R".
283 .ie n .IP """host"" (string, mandatory)" 4
284 .el .IP "\f(CWhost\fR (string, mandatory)" 4
285 .IX Item "host (string, mandatory)"
283 .ie n .IP """unix\-path"" (string)" 4
284 .el .IP "\f(CWunix\-path\fR (string)" 4
285 .IX Item "unix-path (string)"
286 The server to connect to, using a Unix socket path. (supported with spice, since 8.0)
287 .Sp
288 This option is incompatible with \f(CW\*(C`host\*(C'\fR, \f(CW\*(C`port\*(C'\fR and \f(CW\*(C`tls\-port\*(C'\fR.
289 .ie n .IP """host"" (string)" 4
290 .el .IP "\f(CWhost\fR (string)" 4
291 .IX Item "host (string)"
286292 The server host to connect to.
287293 .ie n .IP """port"" (integer)" 4
288294 .el .IP "\f(CWport\fR (integer)" 4
468474 The monitor-mapping must contain ids of all displays from 1 to the last
469475 desired display id, e.g. \*(L"monitor\-mapping=3:3\*(R" is invalid because mappings
470476 for displays 1 and 2 are not specified.
477 .PP
478 Configuration key \fBshare-clipboard\fR contains a boolean value. If it's \*(L"true\*(R",
479 then clipboard is shared with guests if clipboard sharing is supported by used protocol.
471480 .SH "EXAMPLES"
472481 .IX Header "EXAMPLES"
473482 To connect to \s-1SPICE\s0 server on host \*(L"makai\*(R" with port 5900
490499 .Ve
491500 .SH "BUGS"
492501 .IX Header "BUGS"
493 Report bugs to the mailing list \f(CW\*(C`http://www.redhat.com/mailman/listinfo/virt\-tools\-list\*(C'\fR
502 Report bugs to https://gitlab.com/virt\-viewer/virt\-viewer/\-/issues
494503 .SH "COPYRIGHT"
495504 .IX Header "COPYRIGHT"
496 Copyright (C) 2012\-2014 Red Hat, Inc., and various contributors.
505 Copyright (C) 2012\-2020 Red Hat, Inc., and various contributors.
497506 This is free software. You may redistribute copies of it under the terms of the \s-1GNU\s0 General
498507 Public License \f(CW\*(C`https://www.gnu.org/licenses/gpl\-2.0.html\*(C'\fR. There is \s-1NO WARRANTY,\s0
499508 to the extent permitted by law.
500509 .SH "SEE ALSO"
501510 .IX Header "SEE ALSO"
502 \&\f(CW\*(C`virt\-viewer(1)\*(C'\fR, \f(CW\*(C`spice\-client(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR
511 \&\f(CW\*(C`virt\-viewer(1)\*(C'\fR, \f(CW\*(C`spice\-client(1)\*(C'\fR, the project website \f(CW\*(C`http://gitlab.com/virt\-viewer/virt\-viewer\*(C'\fR
161161
162162 The session type, either "spice", "vnc" or "ovirt".
163163
164 =item C<host> (string, mandatory)
164 =item C<unix-path> (string)
165
166 The server to connect to, using a Unix socket path. (supported with spice, since 8.0)
167
168 This option is incompatible with C<host>, C<port> and C<tls-port>.
169
170 =item C<host> (string)
165171
166172 The server host to connect to.
167173
353359 desired display id, e.g. "monitor-mapping=3:3" is invalid because mappings
354360 for displays 1 and 2 are not specified.
355361
362 Configuration key B<share-clipboard> contains a boolean value. If it's "true",
363 then clipboard is shared with guests if clipboard sharing is supported by used protocol.
364
356365 =head1 EXAMPLES
357366
358367 To connect to SPICE server on host "makai" with port 5900
370379
371380 =head1 BUGS
372381
373 Report bugs to the mailing list C<http://www.redhat.com/mailman/listinfo/virt-tools-list>
382 Report bugs to https://gitlab.com/virt-viewer/virt-viewer/-/issues
374383
375384 =head1 COPYRIGHT
376385
377 Copyright (C) 2012-2014 Red Hat, Inc., and various contributors.
386 Copyright (C) 2012-2020 Red Hat, Inc., and various contributors.
378387 This is free software. You may redistribute copies of it under the terms of the GNU General
379388 Public License C<https://www.gnu.org/licenses/gpl-2.0.html>. There is NO WARRANTY,
380389 to the extent permitted by law.
381390
382391 =head1 SEE ALSO
383392
384 C<virt-viewer(1)>, C<spice-client(1)>, the project website C<http://virt-manager.org>
393 C<virt-viewer(1)>, C<spice-client(1)>, the project website C<http://gitlab.com/virt-viewer/virt-viewer>
385394
386395 =cut
0 .\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35)
0 .\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.40)
11 .\"
22 .\" Standard preamble:
33 .\" ========================================================================
132132 .\" ========================================================================
133133 .\"
134134 .IX Title "VIRT-VIEWER 1"
135 .TH VIRT-VIEWER 1 "2018-07-27" "perl v5.26.2" "Virtualization Support"
135 .TH VIRT-VIEWER 1 "2020-04-03" "perl v5.30.2" "Virtualization Support"
136136 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
137137 .\" way too many mistakes in technical documents.
138138 .if n .ad l
346346 Written by Daniel P. Berrange, based on the GTK-VNC example program gvncviewer.
347347 .SH "BUGS"
348348 .IX Header "BUGS"
349 Report bugs to the mailing list \f(CW\*(C`http://www.redhat.com/mailman/listinfo/virt\-tools\-list\*(C'\fR
349 Report bugs to https://gitlab.com/virt\-viewer/virt\-viewer/\-/issues
350350 .SH "COPYRIGHT"
351351 .IX Header "COPYRIGHT"
352 Copyright (C) 2007\-2014 Red Hat, Inc., and various contributors.
352 Copyright (C) 2007\-2020 Red Hat, Inc., and various contributors.
353353 This is free software. You may redistribute copies of it under the terms of the \s-1GNU\s0 General
354354 Public License \f(CW\*(C`https://www.gnu.org/licenses/gpl\-2.0.html\*(C'\fR. There is \s-1NO WARRANTY,\s0
355355 to the extent permitted by law.
356356 .SH "SEE ALSO"
357357 .IX Header "SEE ALSO"
358 \&\f(CWvirsh(1)\fR, \f(CW\*(C`virt\-manager(1)\*(C'\fR, \f(CW\*(C`spice\-client(1)\*(C'\fR, the project website \f(CW\*(C`http://virt\-manager.org\*(C'\fR
358 \&\f(CWvirsh(1)\fR, \f(CW\*(C`virt\-manager(1)\*(C'\fR, \f(CW\*(C`spice\-client(1)\*(C'\fR, the project website \f(CW\*(C`http://gitlab.com/virt\-viewer/virt\-viewer\*(C'\fR
211211
212212 =head1 BUGS
213213
214 Report bugs to the mailing list C<http://www.redhat.com/mailman/listinfo/virt-tools-list>
214 Report bugs to https://gitlab.com/virt-viewer/virt-viewer/-/issues
215215
216216 =head1 COPYRIGHT
217217
218 Copyright (C) 2007-2014 Red Hat, Inc., and various contributors.
218 Copyright (C) 2007-2020 Red Hat, Inc., and various contributors.
219219 This is free software. You may redistribute copies of it under the terms of the GNU General
220220 Public License C<https://www.gnu.org/licenses/gpl-2.0.html>. There is NO WARRANTY,
221221 to the extent permitted by law.
222222
223223 =head1 SEE ALSO
224224
225 C<virsh(1)>, C<virt-manager(1)>, C<spice-client(1)>, the project website C<http://virt-manager.org>
225 C<virsh(1)>, C<virt-manager(1)>, C<spice-client(1)>, the project website C<http://gitlab.com/virt-viewer/virt-viewer>
226226
227227 =cut
22 %define relver 1%{?dist}
33
44 # We want the 1st part of the release number, and
5 # the 3rd part (or 0 if not present). We want to
6 # avoid the autobuild magic 'extra_release' too
7 # which is not purely numeric and larger than 255.
5 # the 3rd part (or 0 if not present).
86 # This scheme lets us cope with RHEL-style z-stream
97 # versioning when creating Win product versions
108 %define rel0 %(echo %{relver} | cut -d. -f1)
1311
1412 Name: mingw-virt-viewer
1513 Version: @VERSION@
16 Release: %{relver}%{?extra_release}
14 Release: %{relver}
1715 Summary: MinGW Windows virt-viewer console application
1816
1917 License: GPLv2+
20 Group: Applications/Internet
21 URL: http://virt-manager.org/
18 URL: http://gitlab.com/virt-viewer/virt-viewer
2219 Source0: ftp://virt-manager.org/downloads/virt-viewer/virt-viewer-%{version}.tar.gz
2320
2421 BuildRequires: mingw32-adwaita-icon-theme
3532 BuildRequires: mingw64-gstreamer1-plugins-good
3633 BuildRequires: mingw32-gtk3 >= @GTK_REQUIRED@
3734 BuildRequires: mingw64-gtk3 >= @GTK_REQUIRED@
35 BuildRequires: mingw32-hicolor-icon-theme
36 BuildRequires: mingw64-hicolor-icon-theme
3837 BuildRequires: mingw32-libgovirt
3938 BuildRequires: mingw64-libgovirt
4039 BuildRequires: mingw32-libusbx
5958 BuildRequires: mingw64-usbredir
6059 BuildRequires: pkgconfig
6160 BuildRequires: /usr/bin/pod2man
62 BuildRequires: intltool
61 BuildRequires: gettext
6362 BuildRequires: icoutils
6463 BuildRequires: dos2unix
65 BuildRequires: hicolor-icon-theme
6664 BuildRequires: hwdata
6765 BuildRequires: msitools >= 0.95-5
66 BuildRequires: glib2-devel
6867
6968 BuildArch: noarch
7069
+0
-95
po/LINGUAS less more
0 af
1 am
2 anp
3 ar
4 as
5 ast
6 bal
7 be
8 bg
9 bn_IN
10 bn
11 bo
12 br
13 brx
14 bs
15 ca
16 cs
17 cy
18 da
19 de_CH
20 de
21 el
22 en_GB
23 eo
24 es
25 et
26 eu
27 fa
28 fi
29 fr
30 gl
31 gu
32 he
33 hi
34 hr
35 hu
36 ia
37 id
38 ilo
39 is
40 it
41 ja
42 ka
43 kk
44 km
45 kn
46 ko
47 kw_GB
48 kw@kkcor
49 kw
50 kw@uccor
51 ky
52 lt
53 lv
54 mai
55 mk
56 ml
57 mn
58 mr
59 ms
60 nb
61 nds
62 ne
63 nl
64 nn
65 nso
66 or
67 pa
68 pl
69 pt_BR
70 pt
71 ro
72 ru
73 si
74 sk
75 sl
76 sq
77 sr@latin
78 sr
79 sv
80 ta
81 te
82 tg
83 th
84 tr
85 tw
86 uk
87 ur
88 vi
89 wba
90 yo
91 zh_CN
92 zh_HK
93 zh_TW
94 zu
0 DOMAIN = $(PACKAGE_NAME)
1 COPYRIGHT_HOLDER = The Virt Viewer authors
2 MSGID_BUGS_ADDRESS = https://gitlab.com/virt-viewer/virt-viewer/-/issues
3
4 MAINTAINERCLEANFILES = $(GMOFILES) $(POTFILE) $(POFILES)
5
6 LANGS := \
7 af am anp ar as ast bal be bg \
8 bn_IN bn bo br brx bs ca cs cy da \
9 de_CH de el en_GB eo es et eu fa fi \
10 fr gl gu he hi hr hu ia \
11 id ilo is it ja ka kk km kn ko \
12 kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml \
13 mn mr ms nb nds ne nl nn nso \
14 or pa pl pt_BR pt ro ru si sk sl \
15 sq sr@latin sr sv ta te tg th tr tw \
16 uk ur vi wba yo zh_CN zh_HK zh_TW zu
17
18
19 POTFILE_DEPS := $(shell $(SED) 's,^,$(top_srcdir)/,' $(srcdir)/POTFILES)
20 POTFILE := $(srcdir)/$(DOMAIN).pot
21 POFILES := $(LANGS:%=$(srcdir)/%.po)
22 GMOFILES := $(LANGS:%=$(srcdir)/%.gmo)
23
24 EXTRA_DIST = \
25 POTFILES \
26 $(POTFILE) \
27 $(POFILES) \
28 $(GMOFILES)
29
30 if HAVE_GNU_GETTEXT_TOOLS
31
32 XGETTEXT_ARGS = \
33 --default-domain=$(DOMAIN) \
34 --from-code=utf-8 \
35 --add-comments=TRANSLATORS: \
36 --keyword=_ --keyword=N_ \
37 --copyright-holder='$(COPYRIGHT_HOLDER)' \
38 --package-name="$(PACKAGE_NAME)" \
39 --package-version="$(PACKAGE_VERSION)" \
40 --msgid-bugs-address="$(MSGID_BUGS_ADDRESS)" \
41 --directory=$(top_srcdir) \
42 $(NULL)
43
44 SED_PO_FIXUP_ARGS = \
45 -e "s|text/plain; charset=CHARSET|text/plain; charset=UTF-8|g" \
46 -e "s|SOME DESCRIPTIVE TITLE|Virt Viewer package strings|g" \
47 -e "s|Copyright (C) YEAR|Copyright (C) $$(date +'%Y')|" \
48 $(NULL)
49
50 all: update-po
51
52 update-po: $(POFILES)
53
54 update-gmo: $(GMOFILES)
55
56 update-mini-po: $(POTFILE)
57 for lang in $(LANGS); do \
58 echo "Minimizing $$lang content" && \
59 $(MSGMERGE) --no-location --no-fuzzy-matching --sort-output \
60 $(srcdir)/$$lang.po $(POTFILE) | \
61 $(SED) $(SED_PO_FIXUP_ARGS) | \
62 $(PERL) $(top_srcdir)/build-aux/minimize-po.pl > \
63 $(srcdir)/$$lang.mini.po ; \
64 done
65
66 push-pot: $(POTFILE)
67 zanata push --push-type=source
68
69 pull-po: $(POTFILE)
70 zanata pull --create-skeletons
71 $(MAKE) update-mini-po
72 $(MAKE) update-gmo
73
74 $(POTFILE): POTFILES $(POTFILE_DEPS)
75 $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \
76 --files-from=$(abs_srcdir)/POTFILES
77 $(SED) $(SED_PO_FIXUP_ARGS) < $@-t > $@
78 rm -f $@-t
79
80 $(srcdir)/%.po: $(srcdir)/%.mini.po $(POTFILE)
81 $(MSGMERGE) --no-fuzzy-matching $< $(POTFILE) | \
82 $(SED) $(SED_PO_FIXUP_ARGS) > $@
83
84 $(srcdir)/%.gmo: $(srcdir)/%.po
85 rm -f $@ $@-t
86 $(MSGFMT) -c -o $@-t $<
87 mv $@-t $@
88
89 .PRECIOUS: $(POTFILE) $(POFILES)
90
91 endif HAVE_GNU_GETTEXT_TOOLS
92
93 if ENABLE_NLS
94
95 # Cannot use 'localedir' since this conflicts with autoconf.
96 langinstdir = $(datadir)/locale
97
98 install-data-hook: $(GMOFILES)
99 mkdir -p $(DESTDIR)$(langinstdir)
100 for lang in $(LANGS); do \
101 d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
102 mkdir -p $$d; \
103 install -m 0644 $(srcdir)/$$lang.gmo $$d/$(DOMAIN).mo; \
104 done
105
106 uninstall-hook:
107 for lang in $(LANGS); do \
108 d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
109 rm -f $$d/$(DOMAIN).mo; \
110 done
111
112 endif ENABLE_NLS
113
114 -include $(top_srcdir)/git.mk
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
1 # @configure_input@
2
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
4
5 # This Makefile.in is free software; the Free Software Foundation
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
13
14 @SET_MAKE@
15 VPATH = @srcdir@
16 am__is_gnu_make = { \
17 if test -z '$(MAKELEVEL)'; then \
18 false; \
19 elif test -n '$(MAKE_HOST)'; then \
20 true; \
21 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
22 true; \
23 else \
24 false; \
25 fi; \
26 }
27 am__make_running_with_option = \
28 case $${target_option-} in \
29 ?) ;; \
30 *) echo "am__make_running_with_option: internal error: invalid" \
31 "target option '$${target_option-}' specified" >&2; \
32 exit 1;; \
33 esac; \
34 has_opt=no; \
35 sane_makeflags=$$MAKEFLAGS; \
36 if $(am__is_gnu_make); then \
37 sane_makeflags=$$MFLAGS; \
38 else \
39 case $$MAKEFLAGS in \
40 *\\[\ \ ]*) \
41 bs=\\; \
42 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
43 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
44 esac; \
45 fi; \
46 skip_next=no; \
47 strip_trailopt () \
48 { \
49 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
50 }; \
51 for flg in $$sane_makeflags; do \
52 test $$skip_next = yes && { skip_next=no; continue; }; \
53 case $$flg in \
54 *=*|--*) continue;; \
55 -*I) strip_trailopt 'I'; skip_next=yes;; \
56 -*I?*) strip_trailopt 'I';; \
57 -*O) strip_trailopt 'O'; skip_next=yes;; \
58 -*O?*) strip_trailopt 'O';; \
59 -*l) strip_trailopt 'l'; skip_next=yes;; \
60 -*l?*) strip_trailopt 'l';; \
61 -[dEDm]) skip_next=yes;; \
62 -[JT]) skip_next=yes;; \
63 esac; \
64 case $$flg in \
65 *$$target_option*) has_opt=yes; break;; \
66 esac; \
67 done; \
68 test $$has_opt = yes
69 am__make_dryrun = (target_option=n; $(am__make_running_with_option))
70 am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
71 pkgdatadir = $(datadir)/@PACKAGE@
72 pkgincludedir = $(includedir)/@PACKAGE@
73 pkglibdir = $(libdir)/@PACKAGE@
74 pkglibexecdir = $(libexecdir)/@PACKAGE@
75 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
76 install_sh_DATA = $(install_sh) -c -m 644
77 install_sh_PROGRAM = $(install_sh) -c
78 install_sh_SCRIPT = $(install_sh) -c
79 INSTALL_HEADER = $(INSTALL_DATA)
80 transform = $(program_transform_name)
81 NORMAL_INSTALL = :
82 PRE_INSTALL = :
83 POST_INSTALL = :
84 NORMAL_UNINSTALL = :
85 PRE_UNINSTALL = :
86 POST_UNINSTALL = :
87 build_triplet = @build@
88 host_triplet = @host@
89 subdir = po
90 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
91 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
92 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
93 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
94 $(top_srcdir)/m4/virt-bash-completion.m4 \
95 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
96 $(top_srcdir)/configure.ac
97 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
98 $(ACLOCAL_M4)
99 DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
100 mkinstalldirs = $(install_sh) -d
101 CONFIG_HEADER = $(top_builddir)/config.h
102 CONFIG_CLEAN_FILES =
103 CONFIG_CLEAN_VPATH_FILES =
104 AM_V_P = $(am__v_P_@AM_V@)
105 am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
106 am__v_P_0 = false
107 am__v_P_1 = :
108 AM_V_GEN = $(am__v_GEN_@AM_V@)
109 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
110 am__v_GEN_0 = @echo " GEN " $@;
111 am__v_GEN_1 =
112 AM_V_at = $(am__v_at_@AM_V@)
113 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
114 am__v_at_0 = @
115 am__v_at_1 =
116 SOURCES =
117 DIST_SOURCES =
118 am__can_run_installinfo = \
119 case $$AM_UPDATE_INFO_DIR in \
120 n|no|NO) false;; \
121 *) (install-info --version) >/dev/null 2>&1;; \
122 esac
123 am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
124 am__DIST_COMMON = $(srcdir)/Makefile.in
125 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
126 ACLOCAL = @ACLOCAL@
127 AMTAR = @AMTAR@
128 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
129 AR = @AR@
130 AUTOCONF = @AUTOCONF@
131 AUTOHEADER = @AUTOHEADER@
132 AUTOMAKE = @AUTOMAKE@
133 AWK = @AWK@
134 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
135 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
136 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
137 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
138 BUILDID = @BUILDID@
139 CC = @CC@
140 CCDEPMODE = @CCDEPMODE@
141 CFLAGS = @CFLAGS@
142 CPP = @CPP@
143 CPPFLAGS = @CPPFLAGS@
144 CYGPATH_W = @CYGPATH_W@
145 DEFS = @DEFS@
146 DEPDIR = @DEPDIR@
147 DLLTOOL = @DLLTOOL@
148 DSYMUTIL = @DSYMUTIL@
149 DUMPBIN = @DUMPBIN@
150 ECHO_C = @ECHO_C@
151 ECHO_N = @ECHO_N@
152 ECHO_T = @ECHO_T@
153 EGREP = @EGREP@
154 EXEEXT = @EXEEXT@
155 FGREP = @FGREP@
156 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
157 GLIB2_CFLAGS = @GLIB2_CFLAGS@
158 GLIB2_LIBS = @GLIB2_LIBS@
159 GLIB2_REQUIRED = @GLIB2_REQUIRED@
160 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
161 GLIB_MKENUMS = @GLIB_MKENUMS@
162 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
163 GREP = @GREP@
164 GTK_CFLAGS = @GTK_CFLAGS@
165 GTK_LIBS = @GTK_LIBS@
166 GTK_REQUIRED = @GTK_REQUIRED@
167 GTK_VNC_CFLAGS = @GTK_VNC_CFLAGS@
168 GTK_VNC_LIBS = @GTK_VNC_LIBS@
169 GTK_VNC_REQUIRED = @GTK_VNC_REQUIRED@
170 ICOTOOL = @ICOTOOL@
171 INSTALL = @INSTALL@
172 INSTALL_DATA = @INSTALL_DATA@
173 INSTALL_PROGRAM = @INSTALL_PROGRAM@
174 INSTALL_SCRIPT = @INSTALL_SCRIPT@
175 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
176 LD = @LD@
177 LDFLAGS = @LDFLAGS@
178 LIBOBJS = @LIBOBJS@
179 LIBS = @LIBS@
180 LIBTOOL = @LIBTOOL@
181 LIBVIRT_CFLAGS = @LIBVIRT_CFLAGS@
182 LIBVIRT_GLIB_REQUIRED = @LIBVIRT_GLIB_REQUIRED@
183 LIBVIRT_LIBS = @LIBVIRT_LIBS@
184 LIBVIRT_REQUIRED = @LIBVIRT_REQUIRED@
185 LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
186 LIBXML2_LIBS = @LIBXML2_LIBS@
187 LIBXML2_REQUIRED = @LIBXML2_REQUIRED@
188 LIPO = @LIPO@
189 LN_S = @LN_S@
190 LTLIBOBJS = @LTLIBOBJS@
191 LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
192 MAKEINFO = @MAKEINFO@
193 MANIFEST_TOOL = @MANIFEST_TOOL@
194 MKDIR_P = @MKDIR_P@
195 MSGFMT = @MSGFMT@
196 MSGMERGE = @MSGMERGE@
197 NM = @NM@
198 NMEDIT = @NMEDIT@
199 OBJDUMP = @OBJDUMP@
200 OBJEXT = @OBJEXT@
201 OTOOL = @OTOOL@
202 OTOOL64 = @OTOOL64@
203 OVIRT_CFLAGS = @OVIRT_CFLAGS@
204 OVIRT_LIBS = @OVIRT_LIBS@
205 PACKAGE = @PACKAGE@
206 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
207 PACKAGE_NAME = @PACKAGE_NAME@
208 PACKAGE_STRING = @PACKAGE_STRING@
209 PACKAGE_TARNAME = @PACKAGE_TARNAME@
210 PACKAGE_URL = @PACKAGE_URL@
211 PACKAGE_VERSION = @PACKAGE_VERSION@
212 PATH_SEPARATOR = @PATH_SEPARATOR@
213 PKG_CONFIG = @PKG_CONFIG@
214 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
215 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
216 RANLIB = @RANLIB@
217 REST_REQUIRED = @REST_REQUIRED@
218 SED = @SED@
219 SET_MAKE = @SET_MAKE@
220 SHELL = @SHELL@
221 SPICE_GTK_CFLAGS = @SPICE_GTK_CFLAGS@
222 SPICE_GTK_LIBS = @SPICE_GTK_LIBS@
223 SPICE_GTK_REQUIRED = @SPICE_GTK_REQUIRED@
224 SPICE_PROTOCOL_CFLAGS = @SPICE_PROTOCOL_CFLAGS@
225 SPICE_PROTOCOL_LIBS = @SPICE_PROTOCOL_LIBS@
226 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
227 STRIP = @STRIP@
228 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
229 VERSION = @VERSION@
230 VTE_CFLAGS = @VTE_CFLAGS@
231 VTE_LIBS = @VTE_LIBS@
232 WARN_CFLAGS = @WARN_CFLAGS@
233 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
234 WINDRES = @WINDRES@
235 WIXL_ARCH = @WIXL_ARCH@
236 XGETTEXT = @XGETTEXT@
237 abs_builddir = @abs_builddir@
238 abs_srcdir = @abs_srcdir@
239 abs_top_builddir = @abs_top_builddir@
240 abs_top_srcdir = @abs_top_srcdir@
241 ac_ct_AR = @ac_ct_AR@
242 ac_ct_CC = @ac_ct_CC@
243 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
244 am__include = @am__include@
245 am__leading_dot = @am__leading_dot@
246 am__quote = @am__quote@
247 am__tar = @am__tar@
248 am__untar = @am__untar@
249 bindir = @bindir@
250 build = @build@
251 build_alias = @build_alias@
252 build_cpu = @build_cpu@
253 build_os = @build_os@
254 build_vendor = @build_vendor@
255 builddir = @builddir@
256 datadir = @datadir@
257 datarootdir = @datarootdir@
258 docdir = @docdir@
259 dvidir = @dvidir@
260 exec_prefix = @exec_prefix@
261 host = @host@
262 host_alias = @host_alias@
263 host_cpu = @host_cpu@
264 host_os = @host_os@
265 host_vendor = @host_vendor@
266 htmldir = @htmldir@
267 includedir = @includedir@
268 infodir = @infodir@
269 install_sh = @install_sh@
270 libdir = @libdir@
271 libexecdir = @libexecdir@
272 localedir = @localedir@
273 localstatedir = @localstatedir@
274 mandir = @mandir@
275 mkdir_p = @mkdir_p@
276 oldincludedir = @oldincludedir@
277 pdfdir = @pdfdir@
278 prefix = @prefix@
279 program_transform_name = @program_transform_name@
280 psdir = @psdir@
281 sbindir = @sbindir@
282 sharedstatedir = @sharedstatedir@
283 srcdir = @srcdir@
284 sysconfdir = @sysconfdir@
285 target_alias = @target_alias@
286 top_build_prefix = @top_build_prefix@
287 top_builddir = @top_builddir@
288 top_srcdir = @top_srcdir@
289 DOMAIN = $(PACKAGE_NAME)
290 COPYRIGHT_HOLDER = The Virt Viewer authors
291 MSGID_BUGS_ADDRESS = https://gitlab.com/virt-viewer/virt-viewer/-/issues
292 MAINTAINERCLEANFILES = $(GMOFILES) $(POTFILE) $(POFILES)
293 LANGS := \
294 af am anp ar as ast bal be bg \
295 bn_IN bn bo br brx bs ca cs cy da \
296 de_CH de el en_GB eo es et eu fa fi \
297 fr gl gu he hi hr hu ia \
298 id ilo is it ja ka kk km kn ko \
299 kw_GB kw@kkcor kw kw@uccor ky lt lv mai mk ml \
300 mn mr ms nb nds ne nl nn nso \
301 or pa pl pt_BR pt ro ru si sk sl \
302 sq sr@latin sr sv ta te tg th tr tw \
303 uk ur vi wba yo zh_CN zh_HK zh_TW zu
304
305 POTFILE_DEPS := $(shell $(SED) 's,^,$(top_srcdir)/,' $(srcdir)/POTFILES)
306 POTFILE := $(srcdir)/$(DOMAIN).pot
307 POFILES := $(LANGS:%=$(srcdir)/%.po)
308 GMOFILES := $(LANGS:%=$(srcdir)/%.gmo)
309 EXTRA_DIST = \
310 POTFILES \
311 $(POTFILE) \
312 $(POFILES) \
313 $(GMOFILES)
314
315 @HAVE_GNU_GETTEXT_TOOLS_TRUE@XGETTEXT_ARGS = \
316 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --default-domain=$(DOMAIN) \
317 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --from-code=utf-8 \
318 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --add-comments=TRANSLATORS: \
319 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --keyword=_ --keyword=N_ \
320 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --copyright-holder='$(COPYRIGHT_HOLDER)' \
321 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --package-name="$(PACKAGE_NAME)" \
322 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --package-version="$(PACKAGE_VERSION)" \
323 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --msgid-bugs-address="$(MSGID_BUGS_ADDRESS)" \
324 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --directory=$(top_srcdir) \
325 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(NULL)
326
327 @HAVE_GNU_GETTEXT_TOOLS_TRUE@SED_PO_FIXUP_ARGS = \
328 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ -e "s|text/plain; charset=CHARSET|text/plain; charset=UTF-8|g" \
329 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ -e "s|SOME DESCRIPTIVE TITLE|Virt Viewer package strings|g" \
330 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ -e "s|Copyright (C) YEAR|Copyright (C) $$(date +'%Y')|" \
331 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(NULL)
332
333
334 # Cannot use 'localedir' since this conflicts with autoconf.
335 @ENABLE_NLS_TRUE@langinstdir = $(datadir)/locale
336 all: all-am
337
338 .SUFFIXES:
339 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
340 @for dep in $?; do \
341 case '$(am__configure_deps)' in \
342 *$$dep*) \
343 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
344 && { if test -f $@; then exit 0; else break; fi; }; \
345 exit 1;; \
346 esac; \
347 done; \
348 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign po/Makefile'; \
349 $(am__cd) $(top_srcdir) && \
350 $(AUTOMAKE) --foreign po/Makefile
351 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
352 @case '$?' in \
353 *config.status*) \
354 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
355 *) \
356 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
357 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
358 esac;
359
360 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
361 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
362
363 $(top_srcdir)/configure: $(am__configure_deps)
364 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
365 $(ACLOCAL_M4): $(am__aclocal_m4_deps)
366 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
367 $(am__aclocal_m4_deps):
368
369 mostlyclean-libtool:
370 -rm -f *.lo
371
372 clean-libtool:
373 -rm -rf .libs _libs
374 tags TAGS:
375
376 ctags CTAGS:
377
378 cscope cscopelist:
379
380
381 distdir: $(BUILT_SOURCES)
382 $(MAKE) $(AM_MAKEFLAGS) distdir-am
383
384 distdir-am: $(DISTFILES)
385 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
386 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
387 list='$(DISTFILES)'; \
388 dist_files=`for file in $$list; do echo $$file; done | \
389 sed -e "s|^$$srcdirstrip/||;t" \
390 -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
391 case $$dist_files in \
392 */*) $(MKDIR_P) `echo "$$dist_files" | \
393 sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
394 sort -u` ;; \
395 esac; \
396 for file in $$dist_files; do \
397 if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
398 if test -d $$d/$$file; then \
399 dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
400 if test -d "$(distdir)/$$file"; then \
401 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
402 fi; \
403 if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
404 cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
405 find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
406 fi; \
407 cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
408 else \
409 test -f "$(distdir)/$$file" \
410 || cp -p $$d/$$file "$(distdir)/$$file" \
411 || exit 1; \
412 fi; \
413 done
414 check-am: all-am
415 check: check-am
416 all-am: Makefile
417 installdirs:
418 install: install-am
419 install-exec: install-exec-am
420 install-data: install-data-am
421 uninstall: uninstall-am
422
423 install-am: all-am
424 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
425
426 installcheck: installcheck-am
427 install-strip:
428 if test -z '$(STRIP)'; then \
429 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
430 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
431 install; \
432 else \
433 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
434 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
435 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
436 fi
437 mostlyclean-generic:
438
439 clean-generic:
440
441 distclean-generic:
442 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
443 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
444
445 maintainer-clean-generic:
446 @echo "This command is intended for maintainers to use"
447 @echo "it deletes files that may require special tools to rebuild."
448 -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
449 @ENABLE_NLS_FALSE@install-data-hook:
450 @ENABLE_NLS_FALSE@uninstall-hook:
451 clean: clean-am
452
453 clean-am: clean-generic clean-libtool mostlyclean-am
454
455 distclean: distclean-am
456 -rm -f Makefile
457 distclean-am: clean-am distclean-generic
458
459 dvi: dvi-am
460
461 dvi-am:
462
463 html: html-am
464
465 html-am:
466
467 info: info-am
468
469 info-am:
470
471 install-data-am:
472 @$(NORMAL_INSTALL)
473 $(MAKE) $(AM_MAKEFLAGS) install-data-hook
474 install-dvi: install-dvi-am
475
476 install-dvi-am:
477
478 install-exec-am:
479
480 install-html: install-html-am
481
482 install-html-am:
483
484 install-info: install-info-am
485
486 install-info-am:
487
488 install-man:
489
490 install-pdf: install-pdf-am
491
492 install-pdf-am:
493
494 install-ps: install-ps-am
495
496 install-ps-am:
497
498 installcheck-am:
499
500 maintainer-clean: maintainer-clean-am
501 -rm -f Makefile
502 maintainer-clean-am: distclean-am maintainer-clean-generic
503
504 mostlyclean: mostlyclean-am
505
506 mostlyclean-am: mostlyclean-generic mostlyclean-libtool
507
508 pdf: pdf-am
509
510 pdf-am:
511
512 ps: ps-am
513
514 ps-am:
515
516 uninstall-am:
517 @$(NORMAL_INSTALL)
518 $(MAKE) $(AM_MAKEFLAGS) uninstall-hook
519 .MAKE: install-am install-data-am install-strip uninstall-am
520
521 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
522 cscopelist-am ctags-am distclean distclean-generic \
523 distclean-libtool distdir dvi dvi-am html html-am info info-am \
524 install install-am install-data install-data-am \
525 install-data-hook install-dvi install-dvi-am install-exec \
526 install-exec-am install-html install-html-am install-info \
527 install-info-am install-man install-pdf install-pdf-am \
528 install-ps install-ps-am install-strip installcheck \
529 installcheck-am installdirs maintainer-clean \
530 maintainer-clean-generic mostlyclean mostlyclean-generic \
531 mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
532 uninstall-am uninstall-hook
533
534 .PRECIOUS: Makefile
535
536
537 @HAVE_GNU_GETTEXT_TOOLS_TRUE@all: update-po
538
539 @HAVE_GNU_GETTEXT_TOOLS_TRUE@update-po: $(POFILES)
540
541 @HAVE_GNU_GETTEXT_TOOLS_TRUE@update-gmo: $(GMOFILES)
542
543 @HAVE_GNU_GETTEXT_TOOLS_TRUE@update-mini-po: $(POTFILE)
544 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ for lang in $(LANGS); do \
545 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ echo "Minimizing $$lang content" && \
546 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MSGMERGE) --no-location --no-fuzzy-matching --sort-output \
547 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(srcdir)/$$lang.po $(POTFILE) | \
548 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(SED) $(SED_PO_FIXUP_ARGS) | \
549 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(PERL) $(top_srcdir)/build-aux/minimize-po.pl > \
550 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(srcdir)/$$lang.mini.po ; \
551 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ done
552
553 @HAVE_GNU_GETTEXT_TOOLS_TRUE@push-pot: $(POTFILE)
554 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ zanata push --push-type=source
555
556 @HAVE_GNU_GETTEXT_TOOLS_TRUE@pull-po: $(POTFILE)
557 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ zanata pull --create-skeletons
558 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MAKE) update-mini-po
559 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MAKE) update-gmo
560
561 @HAVE_GNU_GETTEXT_TOOLS_TRUE@$(POTFILE): POTFILES $(POTFILE_DEPS)
562 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(XGETTEXT) -o $@-t $(XGETTEXT_ARGS) \
563 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ --files-from=$(abs_srcdir)/POTFILES
564 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(SED) $(SED_PO_FIXUP_ARGS) < $@-t > $@
565 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ rm -f $@-t
566
567 @HAVE_GNU_GETTEXT_TOOLS_TRUE@$(srcdir)/%.po: $(srcdir)/%.mini.po $(POTFILE)
568 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MSGMERGE) --no-fuzzy-matching $< $(POTFILE) | \
569 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(SED) $(SED_PO_FIXUP_ARGS) > $@
570
571 @HAVE_GNU_GETTEXT_TOOLS_TRUE@$(srcdir)/%.gmo: $(srcdir)/%.po
572 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ rm -f $@ $@-t
573 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ $(MSGFMT) -c -o $@-t $<
574 @HAVE_GNU_GETTEXT_TOOLS_TRUE@ mv $@-t $@
575
576 @HAVE_GNU_GETTEXT_TOOLS_TRUE@.PRECIOUS: $(POTFILE) $(POFILES)
577
578 @ENABLE_NLS_TRUE@install-data-hook: $(GMOFILES)
579 @ENABLE_NLS_TRUE@ mkdir -p $(DESTDIR)$(langinstdir)
580 @ENABLE_NLS_TRUE@ for lang in $(LANGS); do \
581 @ENABLE_NLS_TRUE@ d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
582 @ENABLE_NLS_TRUE@ mkdir -p $$d; \
583 @ENABLE_NLS_TRUE@ install -m 0644 $(srcdir)/$$lang.gmo $$d/$(DOMAIN).mo; \
584 @ENABLE_NLS_TRUE@ done
585
586 @ENABLE_NLS_TRUE@uninstall-hook:
587 @ENABLE_NLS_TRUE@ for lang in $(LANGS); do \
588 @ENABLE_NLS_TRUE@ d=$(DESTDIR)$(langinstdir)/$$lang/LC_MESSAGES; \
589 @ENABLE_NLS_TRUE@ rm -f $$d/$(DOMAIN).mo; \
590 @ENABLE_NLS_TRUE@ done
591
592 -include $(top_srcdir)/git.mk
593
594 # Tell versions [3.59,3.63) of GNU make to not export all variables.
595 # Otherwise a system limit (for SysV at least) may be exceeded.
596 .NOEXPORT:
+0
-221
po/Makefile.in.in less more
0 # Makefile for program source directory in GNU NLS utilities package.
1 # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
2 # Copyright (C) 2004-2008 Rodney Dawes <dobey.pwns@gmail.com>
3 #
4 # This file may be copied and used freely without restrictions. It may
5 # be used in projects which are not available under a GNU Public License,
6 # but which still want to provide support for the GNU gettext functionality.
7 #
8 # - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
9 # instead of PACKAGE and to look for po2tbl in ./ not in intl/
10 #
11 # - Modified by jacob berkman <jacob@ximian.com> to install
12 # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
13 #
14 # - Modified by Rodney Dawes <dobey.pwns@gmail.com> for use with intltool
15 #
16 # We have the following line for use by intltoolize:
17 # INTLTOOL_MAKEFILE
18
19 GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
20 PACKAGE = @PACKAGE@
21 VERSION = @VERSION@
22
23 SHELL = @SHELL@
24
25 srcdir = @srcdir@
26 top_srcdir = @top_srcdir@
27 top_builddir = @top_builddir@
28 VPATH = @srcdir@
29
30 prefix = @prefix@
31 exec_prefix = @exec_prefix@
32 datadir = @datadir@
33 datarootdir = @datarootdir@
34 libdir = @libdir@
35 localedir = @localedir@
36 subdir = po
37 install_sh = @install_sh@
38 # Automake >= 1.8 provides @mkdir_p@.
39 # Until it can be supposed, use the safe fallback:
40 mkdir_p = $(install_sh) -d
41
42 INSTALL = @INSTALL@
43 INSTALL_DATA = @INSTALL_DATA@
44
45 GMSGFMT = @GMSGFMT@
46 MSGFMT = @MSGFMT@
47 XGETTEXT = @XGETTEXT@
48 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
49 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
50 MSGMERGE = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
51 GENPOT = INTLTOOL_EXTRACT="$(INTLTOOL_EXTRACT)" XGETTEXT="$(XGETTEXT)" srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
52
53 ALL_LINGUAS = @ALL_LINGUAS@
54
55 PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
56
57 USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi)
58
59 USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
60
61 POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
62
63 DISTFILES = Makefile.in.in POTFILES.in $(POFILES)
64 EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS
65
66 POTFILES = \
67 # This comment gets stripped out
68
69 CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
70
71 .SUFFIXES:
72 .SUFFIXES: .po .pox .gmo .mo .msg .cat
73
74 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
75 INTLTOOL_V_MSGFMT = $(INTLTOOL__v_MSGFMT_$(V))
76 INTLTOOL__v_MSGFMT_= $(INTLTOOL__v_MSGFMT_$(AM_DEFAULT_VERBOSITY))
77 INTLTOOL__v_MSGFMT_0 = @echo " MSGFMT" $@;
78
79 .po.pox:
80 $(MAKE) $(GETTEXT_PACKAGE).pot
81 $(MSGMERGE) $* $(GETTEXT_PACKAGE).pot -o $*.pox
82
83 .po.mo:
84 $(INTLTOOL_V_MSGFMT)$(MSGFMT) -o $@ $<
85
86 .po.gmo:
87 $(INTLTOOL_V_MSGFMT)file=`echo $* | sed 's,.*/,,'`.gmo \
88 && rm -f $$file && $(GMSGFMT) -o $$file $<
89
90 .po.cat:
91 sed -f ../intl/po2msg.sed < $< > $*.msg \
92 && rm -f $@ && gencat $@ $*.msg
93
94
95 all: all-@USE_NLS@
96
97 all-yes: $(CATALOGS)
98 all-no:
99
100 $(GETTEXT_PACKAGE).pot: $(POTFILES)
101 $(GENPOT)
102
103 install: install-data
104 install-data: install-data-@USE_NLS@
105 install-data-no: all
106 install-data-yes: all
107 linguas="$(USE_LINGUAS)"; \
108 for lang in $$linguas; do \
109 dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
110 $(mkdir_p) $$dir; \
111 if test -r $$lang.gmo; then \
112 $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
113 echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
114 else \
115 $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
116 echo "installing $(srcdir)/$$lang.gmo as" \
117 "$$dir/$(GETTEXT_PACKAGE).mo"; \
118 fi; \
119 if test -r $$lang.gmo.m; then \
120 $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
121 echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
122 else \
123 if test -r $(srcdir)/$$lang.gmo.m ; then \
124 $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
125 $$dir/$(GETTEXT_PACKAGE).mo.m; \
126 echo "installing $(srcdir)/$$lang.gmo.m as" \
127 "$$dir/$(GETTEXT_PACKAGE).mo.m"; \
128 else \
129 true; \
130 fi; \
131 fi; \
132 done
133
134 # Empty stubs to satisfy archaic automake needs
135 dvi info ctags tags CTAGS TAGS ID:
136
137 # Define this as empty until I found a useful application.
138 install-exec installcheck:
139
140 uninstall:
141 linguas="$(USE_LINGUAS)"; \
142 for lang in $$linguas; do \
143 rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
144 rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
145 done
146
147 check: all $(GETTEXT_PACKAGE).pot
148 rm -f missing notexist
149 srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
150 if [ -r missing -o -r notexist ]; then \
151 exit 1; \
152 fi
153
154 mostlyclean:
155 rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
156 rm -f .intltool-merge-cache
157
158 clean: mostlyclean
159
160 distclean: clean
161 rm -f Makefile Makefile.in POTFILES stamp-it
162 rm -f *.mo *.msg *.cat *.cat.m *.gmo
163
164 maintainer-clean: distclean
165 @echo "This command is intended for maintainers to use;"
166 @echo "it deletes files that may require special tools to rebuild."
167 rm -f Makefile.in.in
168
169 distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
170 dist distdir: $(DISTFILES)
171 dists="$(DISTFILES)"; \
172 extra_dists="$(EXTRA_DISTFILES)"; \
173 for file in $$extra_dists; do \
174 test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
175 done; \
176 for file in $$dists; do \
177 test -f $$file || file="$(srcdir)/$$file"; \
178 ln $$file $(distdir) 2> /dev/null \
179 || cp -p $$file $(distdir); \
180 done
181
182 update-po: Makefile
183 $(MAKE) $(GETTEXT_PACKAGE).pot
184 tmpdir=`pwd`; \
185 linguas="$(USE_LINGUAS)"; \
186 for lang in $$linguas; do \
187 echo "$$lang:"; \
188 result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
189 if $$result; then \
190 if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
191 rm -f $$tmpdir/$$lang.new.po; \
192 else \
193 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
194 :; \
195 else \
196 echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
197 rm -f $$tmpdir/$$lang.new.po; \
198 exit 1; \
199 fi; \
200 fi; \
201 else \
202 echo "msgmerge for $$lang.gmo failed!"; \
203 rm -f $$tmpdir/$$lang.new.po; \
204 fi; \
205 done
206
207 Makefile POTFILES: stamp-it
208 @if test ! -f $@; then \
209 rm -f stamp-it; \
210 $(MAKE) stamp-it; \
211 fi
212
213 stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
214 cd $(top_builddir) \
215 && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
216 $(SHELL) ./config.status
217
218 # Tell versions [3.59,3.63) of GNU make not to export all variables.
219 # Otherwise a system limit (for SysV at least) may be exceeded.
220 .NOEXPORT:
0 data/remote-viewer.appdata.xml.in
1 data/remote-viewer.desktop.in
2 data/virt-viewer-mime.xml.in
3 src/remote-viewer-iso-list-dialog.c
4 src/remote-viewer-main.c
5 src/remote-viewer.c
6 src/resources/ui/remote-viewer-connect.ui
7 src/resources/ui/remote-viewer-iso-list.ui
8 src/resources/ui/virt-viewer-about.ui
9 src/virt-viewer-app.c
10 src/virt-viewer-auth.c
11 src/resources/ui/virt-viewer-auth.ui
12 src/virt-viewer-display-vnc.c
13 src/virt-viewer-display-vte.c
14 src/virt-viewer-file-transfer-dialog.c
15 src/virt-viewer-main.c
16 src/virt-viewer-session-spice.c
17 src/virt-viewer-session-vnc.c
18 src/virt-viewer-vm-connection.c
19 src/virt-viewer-window.c
20 src/virt-viewer-file.c
21 src/virt-viewer.c
22 src/resources/ui/virt-viewer.ui
23 src/resources/ui/virt-viewer-guest-details.ui
24 src/resources/ui/virt-viewer-vm-connection.ui
25 src/resources/ui/virt-viewer-preferences.ui
26 src/resources/ui/virt-viewer-file-transfer-dialog.ui
+0
-26
po/POTFILES.in less more
0 data/remote-viewer.appdata.xml.in
1 data/remote-viewer.desktop.in
2 data/virt-viewer-mime.xml.in
3 src/remote-viewer-iso-list-dialog.c
4 src/remote-viewer-main.c
5 src/remote-viewer.c
6 [type: gettext/glade] src/resources/ui/remote-viewer-connect.ui
7 [type: gettext/glade] src/resources/ui/remote-viewer-iso-list.ui
8 [type: gettext/glade] src/resources/ui/virt-viewer-about.ui
9 src/virt-viewer-app.c
10 src/virt-viewer-auth.c
11 [type: gettext/glade] src/resources/ui/virt-viewer-auth.ui
12 src/virt-viewer-display-vnc.c
13 src/virt-viewer-file-transfer-dialog.c
14 src/virt-viewer-main.c
15 src/virt-viewer-session-spice.c
16 src/virt-viewer-session-vnc.c
17 src/virt-viewer-vm-connection.c
18 src/virt-viewer-window.c
19 src/virt-viewer-file.c
20 src/virt-viewer.c
21 [type: gettext/glade] src/resources/ui/virt-viewer.ui
22 [type: gettext/glade] src/resources/ui/virt-viewer-guest-details.ui
23 [type: gettext/glade] src/resources/ui/virt-viewer-vm-connection.ui
24 [type: gettext/glade] src/resources/ui/virt-viewer-preferences.ui
25 [type: gettext/glade] src/resources/ui/virt-viewer-file-transfer-dialog.ui
Binary diff not shown
+264
-252
po/af.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Afrikaans\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/am.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Amharic\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n > 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Angika\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/ar.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Arabic\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
1818 "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
459445 msgstr[4] ""
460446 msgstr[5] ""
461447
462 #: ../src/virt-viewer-file-transfer-dialog.c:228
463 #, c-format
464 msgid "An error caused the following file transfers to fail:%s"
465 msgstr ""
466
467 #: ../src/virt-viewer-main.c:38
448 #: src/virt-viewer-file-transfer-dialog.c:225
449 msgid "An error caused the following file transfers to fail:"
450 msgstr ""
451
452 #: src/virt-viewer-main.c:38
468453 msgid "Virt Viewer"
469454 msgstr ""
470455
471 #: ../src/virt-viewer-session-spice.c:704
456 #: src/virt-viewer-session-spice.c:731
472457 msgid "Invalid password"
473458 msgstr ""
474459
475 #. Create the widgets
476 #: ../src/virt-viewer-session-spice.c:802
460 #: src/virt-viewer-session-spice.c:829
477461 msgid "Select USB devices for redirection"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-spice.c:804
481 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
464 #: src/virt-viewer-session-spice.c:831
465 #: src/resources/ui/virt-viewer-guest-details.ui:23
482466 msgid "_Close"
483467 msgstr ""
484468
485 #: ../src/virt-viewer-session-vnc.c:162
486 #, c-format
487 msgid "Unsupported authentication type %d"
488 msgstr ""
489
490 #: ../src/virt-viewer-vm-connection.c:64
469 #: src/virt-viewer-session-spice.c:1019
470 msgid "Serial"
471 msgstr ""
472
473 #: src/virt-viewer-session-spice.c:1021
474 msgid "QEMU human monitor"
475 msgstr ""
476
477 #: src/virt-viewer-session-spice.c:1023
478 msgid "QEMU debug console"
479 msgstr ""
480
481 #: src/virt-viewer-session-vnc.c:158
482 #, c-format
483 msgid "Unsupported authentication type %u"
484 msgstr ""
485
486 #: src/virt-viewer-vm-connection.c:64
491487 msgid "No running virtual machine found"
492488 msgstr ""
493489
494 #: ../src/virt-viewer-vm-connection.c:93
490 #: src/virt-viewer-vm-connection.c:93
495491 msgid "No virtual machine was chosen"
496492 msgstr ""
497493
498 #: ../src/virt-viewer-window.c:544
494 #: src/virt-viewer-window.c:621
499495 msgid "Ctrl+Alt+_Del"
500496 msgstr ""
501497
502 #: ../src/virt-viewer-window.c:545
498 #: src/virt-viewer-window.c:622
503499 msgid "Ctrl+Alt+_Backspace"
504500 msgstr ""
505501
506 #: ../src/virt-viewer-window.c:547
502 #: src/virt-viewer-window.c:624
507503 msgid "Ctrl+Alt+F_1"
508504 msgstr ""
509505
510 #: ../src/virt-viewer-window.c:548
506 #: src/virt-viewer-window.c:625
511507 msgid "Ctrl+Alt+F_2"
512508 msgstr ""
513509
514 #: ../src/virt-viewer-window.c:549
510 #: src/virt-viewer-window.c:626
515511 msgid "Ctrl+Alt+F_3"
516512 msgstr ""
517513
518 #: ../src/virt-viewer-window.c:550
514 #: src/virt-viewer-window.c:627
519515 msgid "Ctrl+Alt+F_4"
520516 msgstr ""
521517
522 #: ../src/virt-viewer-window.c:551
518 #: src/virt-viewer-window.c:628
523519 msgid "Ctrl+Alt+F_5"
524520 msgstr ""
525521
526 #: ../src/virt-viewer-window.c:552
522 #: src/virt-viewer-window.c:629
527523 msgid "Ctrl+Alt+F_6"
528524 msgstr ""
529525
530 #: ../src/virt-viewer-window.c:553
526 #: src/virt-viewer-window.c:630
531527 msgid "Ctrl+Alt+F_7"
532528 msgstr ""
533529
534 #: ../src/virt-viewer-window.c:554
530 #: src/virt-viewer-window.c:631
535531 msgid "Ctrl+Alt+F_8"
536532 msgstr ""
537533
538 #: ../src/virt-viewer-window.c:555
534 #: src/virt-viewer-window.c:632
539535 msgid "Ctrl+Alt+F_9"
540536 msgstr ""
541537
542 #: ../src/virt-viewer-window.c:556
538 #: src/virt-viewer-window.c:633
543539 msgid "Ctrl+Alt+F1_0"
544540 msgstr ""
545541
546 #: ../src/virt-viewer-window.c:557
542 #: src/virt-viewer-window.c:634
547543 msgid "Ctrl+Alt+F11"
548544 msgstr ""
549545
550 #: ../src/virt-viewer-window.c:558
546 #: src/virt-viewer-window.c:635
551547 msgid "Ctrl+Alt+F12"
552548 msgstr ""
553549
554 #: ../src/virt-viewer-window.c:953
550 #: src/virt-viewer-window.c:637
551 msgid "_PrintScreen"
552 msgstr ""
553
554 #: src/virt-viewer-window.c:1030
555555 #, c-format
556556 msgid "Unable to determine image format for file '%s'"
557557 msgstr ""
558558
559 #: ../src/virt-viewer-window.c:980
559 #: src/virt-viewer-window.c:1053
560 msgid "Save screenshot"
561 msgstr ""
562
563 #: src/virt-viewer-window.c:1057
560564 msgid "_Save"
561565 msgstr ""
562566
563 #: ../src/virt-viewer-window.c:988
567 #: src/virt-viewer-window.c:1065
564568 msgid "Screenshot.png"
565569 msgstr ""
566570
567 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
571 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
568572 msgid "Unknown"
569573 msgstr ""
570574
571 #: ../src/virt-viewer-window.c:1152
575 #: src/virt-viewer-window.c:1237
572576 msgid "Unable to connnect to oVirt"
573577 msgstr ""
574578
575 #: ../src/virt-viewer-window.c:1175
579 #: src/virt-viewer-window.c:1260
576580 msgid "Disconnect"
577581 msgstr ""
578582
579 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
583 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
580584 msgid "USB device selection"
581585 msgstr ""
582586
583 #: ../src/virt-viewer-window.c:1193
587 #: src/virt-viewer-window.c:1278
584588 msgid "Send key combination"
585589 msgstr ""
586590
587 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
591 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
588592 msgid "Leave fullscreen"
589593 msgstr ""
590594
591 #: ../src/virt-viewer-window.c:1279
595 #: src/virt-viewer-window.c:1364
592596 msgid "Ctrl+Alt"
593597 msgstr ""
594598
595 #: ../src/virt-viewer-window.c:1282
599 #: src/virt-viewer-window.c:1367
596600 #, c-format
597601 msgid "(Press %s to release pointer)"
598602 msgstr ""
599603
600 #. translators:
601 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
602 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
603 #.
604 #: ../src/virt-viewer-window.c:1293
604 #: src/virt-viewer-window.c:1378
605605 #, c-format
606606 msgid "%s%s%s - %s"
607607 msgstr ""
608608
609 #. translators: <space>
610 #: ../src/virt-viewer-window.c:1297
609 #: src/virt-viewer-window.c:1382
611610 msgid " "
612611 msgstr ""
613612
614 #: ../src/virt-viewer-file.c:862
613 #: src/virt-viewer-file.c:875
615614 #, c-format
616615 msgid ""
617616 "At least %s version %s is required to setup this connection, see %s for "
618617 "details"
619618 msgstr ""
620619
621 #: ../src/virt-viewer-file.c:870
620 #: src/virt-viewer-file.c:883
622621 #, c-format
623622 msgid "At least %s version %s is required to setup this connection"
624623 msgstr ""
625624
626 #: ../src/virt-viewer.c:133
625 #: src/virt-viewer.c:131
627626 msgid "Direct connection with no automatic tunnels"
628627 msgstr ""
629628
630 #: ../src/virt-viewer.c:135
629 #: src/virt-viewer.c:133
631630 msgid "Attach to the local display using libvirt"
632631 msgstr ""
633632
634 #: ../src/virt-viewer.c:137
633 #: src/virt-viewer.c:135
635634 msgid "Connect to hypervisor"
636635 msgstr ""
637636
638 #: ../src/virt-viewer.c:139
637 #: src/virt-viewer.c:137
639638 msgid "Wait for domain to start"
640639 msgstr ""
641640
642 #: ../src/virt-viewer.c:141
641 #: src/virt-viewer.c:139
643642 msgid "Reconnect to domain upon restart"
644643 msgstr ""
645644
646 #: ../src/virt-viewer.c:143
645 #: src/virt-viewer.c:141
647646 msgid "Select the virtual machine only by its name"
648647 msgstr ""
649648
650 #: ../src/virt-viewer.c:145
649 #: src/virt-viewer.c:143
651650 msgid "Select the virtual machine only by its id"
652651 msgstr ""
653652
654 #: ../src/virt-viewer.c:147
653 #: src/virt-viewer.c:145
655654 msgid "Select the virtual machine only by its uuid"
656655 msgstr ""
657656
658 #: ../src/virt-viewer.c:154
657 #: src/virt-viewer.c:152
659658 msgid "Virtual machine graphical console"
660659 msgstr ""
661660
662 #: ../src/virt-viewer.c:173
661 #: src/virt-viewer.c:171
663662 #, c-format
664663 msgid ""
665664 "\n"
667666 "\n"
668667 msgstr ""
669668
670 #: ../src/virt-viewer.c:185
669 #: src/virt-viewer.c:183
671670 #, c-format
672671 msgid ""
673672 "\n"
675674 "\n"
676675 msgstr ""
677676
678 #: ../src/virt-viewer.c:300
677 #: src/virt-viewer.c:296
679678 msgid "Waiting for guest domain to re-start"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:554
681 #: src/virt-viewer.c:550
683682 #, c-format
684683 msgid "Cannot determine the graphic type for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:603
686 #: src/virt-viewer.c:599
688687 #, c-format
689688 msgid "Cannot determine the host for the guest %s"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:631
691 #: src/virt-viewer.c:627
693692 #, c-format
694693 msgid "Guest '%s' is not reachable"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:860
696 #: src/virt-viewer.c:856
698697 #, c-format
699698 msgid "Virtual machine %s is not running"
700699 msgstr ""
701700
702 #: ../src/virt-viewer.c:884
701 #: src/virt-viewer.c:881
703702 msgid "Waiting for libvirt to start"
704703 msgstr ""
705704
706 #: ../src/virt-viewer.c:888
705 #: src/virt-viewer.c:885
707706 msgid "Finding guest domain"
708707 msgstr ""
709708
710 #: ../src/virt-viewer.c:892
709 #: src/virt-viewer.c:889
711710 msgid "Waiting for guest domain to be created"
712711 msgstr ""
713712
714 #: ../src/virt-viewer.c:918
713 #: src/virt-viewer.c:921
715714 msgid "Checking guest domain status"
716715 msgstr ""
717716
718 #: ../src/virt-viewer.c:921
717 #: src/virt-viewer.c:924
719718 msgid "Cannot get guest state"
720719 msgstr ""
721720
722 #: ../src/virt-viewer.c:927
721 #: src/virt-viewer.c:930
723722 msgid "Waiting for guest domain to start"
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1040
725 #: src/virt-viewer.c:1044
727726 #, c-format
728727 msgid "Unable to connect to libvirt with URI: %s."
729728 msgstr ""
730729
731 #: ../src/virt-viewer.c:1041
730 #: src/virt-viewer.c:1045
732731 msgid "[none]"
733732 msgstr ""
734733
735 #: ../src/virt-viewer.c:1048
734 #: src/virt-viewer.c:1052
736735 msgid "Authentication failed."
737736 msgstr ""
738737
739 #: ../src/virt-viewer.c:1108
738 #: src/virt-viewer.c:1112
740739 msgid "Failed to connect: "
741740 msgstr ""
742741
743 #.
744 #. * Local variables:
745 #. * c-indent-level: 4
746 #. * c-basic-offset: 4
747 #. * indent-tabs-mode: nil
748 #. * End:
749 #.
750 #: ../src/resources/ui/virt-viewer.ui.h:1
742 #: src/resources/ui/virt-viewer.ui:28
751743 msgid "_File"
752744 msgstr ""
753745
754 #: ../src/resources/ui/virt-viewer.ui.h:2
746 #: src/resources/ui/virt-viewer.ui:41
755747 msgid "_Screenshot"
756748 msgstr ""
757749
758 #: ../src/resources/ui/virt-viewer.ui.h:3
750 #: src/resources/ui/virt-viewer.ui:52
759751 msgid "_USB device selection"
760752 msgstr ""
761753
762 #: ../src/resources/ui/virt-viewer.ui.h:4
754 #: src/resources/ui/virt-viewer.ui:62
763755 msgid "Smartcard insertion"
764756 msgstr ""
765757
766 #: ../src/resources/ui/virt-viewer.ui.h:5
758 #: src/resources/ui/virt-viewer.ui:72
767759 msgid "Smartcard removal"
768760 msgstr ""
769761
770 #: ../src/resources/ui/virt-viewer.ui.h:6
762 #: src/resources/ui/virt-viewer.ui:80
771763 msgid "_Change CD"
772764 msgstr ""
773765
774 #: ../src/resources/ui/virt-viewer.ui.h:7
766 #: src/resources/ui/virt-viewer.ui:90
775767 msgid "_Preferences"
776768 msgstr ""
777769
778 #: ../src/resources/ui/virt-viewer.ui.h:8
770 #: src/resources/ui/virt-viewer.ui:103
779771 msgid "_Quit"
780772 msgstr ""
781773
782 #: ../src/resources/ui/virt-viewer.ui.h:9
774 #: src/resources/ui/virt-viewer.ui:119
775 msgid "_Machine"
776 msgstr ""
777
778 #: src/resources/ui/virt-viewer.ui:129
779 msgid "_Pause"
780 msgstr ""
781
782 #: src/resources/ui/virt-viewer.ui:144
783 msgid "_Reset"
784 msgstr ""
785
786 #: src/resources/ui/virt-viewer.ui:153
787 msgid "_Power down"
788 msgstr ""
789
790 #: src/resources/ui/virt-viewer.ui:167
783791 msgid "_View"
784792 msgstr ""
785793
786 #: ../src/resources/ui/virt-viewer.ui.h:10
794 #: src/resources/ui/virt-viewer.ui:180
787795 msgid "_Full screen"
788796 msgstr ""
789797
790 #: ../src/resources/ui/virt-viewer.ui.h:11
798 #: src/resources/ui/virt-viewer.ui:191
791799 msgid "_Zoom"
792800 msgstr ""
793801
794 #: ../src/resources/ui/virt-viewer.ui.h:12
802 #: src/resources/ui/virt-viewer.ui:201
795803 msgid "Zoom _In"
796804 msgstr ""
797805
798 #: ../src/resources/ui/virt-viewer.ui.h:13
806 #: src/resources/ui/virt-viewer.ui:212
799807 msgid "Zoom _Out"
800808 msgstr ""
801809
802 #: ../src/resources/ui/virt-viewer.ui.h:14
810 #: src/resources/ui/virt-viewer.ui:229
803811 msgid "_Normal Size"
804812 msgstr ""
805813
806 #: ../src/resources/ui/virt-viewer.ui.h:15
814 #: src/resources/ui/virt-viewer.ui:246
807815 msgid "_Displays"
808816 msgstr ""
809817
810 #: ../src/resources/ui/virt-viewer.ui.h:16
818 #: src/resources/ui/virt-viewer.ui:255
811819 msgid "Release cursor"
812820 msgstr ""
813821
814 #: ../src/resources/ui/virt-viewer.ui.h:17
822 #: src/resources/ui/virt-viewer.ui:270
815823 msgid "_Send key"
816824 msgstr ""
817825
818 #: ../src/resources/ui/virt-viewer.ui.h:18
826 #: src/resources/ui/virt-viewer.ui:279
819827 msgid "_Help"
820828 msgstr ""
821829
822 #: ../src/resources/ui/virt-viewer.ui.h:19
830 #: src/resources/ui/virt-viewer.ui:290
823831 msgid "_Guest Details"
824832 msgstr ""
825833
826 #: ../src/resources/ui/virt-viewer.ui.h:20
834 #: src/resources/ui/virt-viewer.ui:297
827835 msgid "_About"
828836 msgstr ""
829837
830 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
838 #: src/resources/ui/virt-viewer-guest-details.ui:7
831839 msgid "Guest Details"
832840 msgstr ""
833841
834 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
842 #: src/resources/ui/virt-viewer-guest-details.ui:56
835843 msgid "Name:"
836844 msgstr ""
837845
838 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
846 #: src/resources/ui/virt-viewer-guest-details.ui:68
839847 msgid "GUID:"
840848 msgstr ""
841849
842 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
850 #: src/resources/ui/virt-viewer-vm-connection.ui:7
843851 msgid "Choose a virtual machine"
844852 msgstr ""
845853
846 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
854 #: src/resources/ui/virt-viewer-vm-connection.ui:96
847855 msgid "Available virtual machines"
848856 msgstr ""
849857
850 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
858 #: src/resources/ui/virt-viewer-preferences.ui:8
851859 msgid "Preferences"
852860 msgstr ""
853861
854 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
862 #: src/resources/ui/virt-viewer-preferences.ui:48
855863 msgid "Folder sharing"
856864 msgstr ""
857865
858 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
866 #: src/resources/ui/virt-viewer-preferences.ui:70
859867 msgid "Share folder"
860868 msgstr ""
861869
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
870 #: src/resources/ui/virt-viewer-preferences.ui:82
863871 msgid "Read-only"
864872 msgstr ""
865873
866 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
874 #: src/resources/ui/virt-viewer-preferences.ui:96
875 msgid "Share clipboard"
876 msgstr ""
877
878 #: src/resources/ui/virt-viewer-preferences.ui:132
867879 msgid "Spice"
868880 msgstr ""
Binary diff not shown
+269
-253
po/as.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
77 # Nilamdyuti Goswami <ngoswami@redhat.com>, 2012-2014
88 msgid ""
99 msgstr ""
10 "Project-Id-Version: PACKAGE VERSION\n"
11 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
13 "PO-Revision-Date: 2015-02-20 08:08-0500\n"
10 "Project-Id-Version: virt-viewer 9.0\n"
11 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
12 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
13 "PO-Revision-Date: 2015-02-20 08:08+0000\n"
1414 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1515 "Language-Team: Assamese (http://www.transifex.com/projects/p/virt-viewer/"
1616 "language/as/)\n"
1919 "Content-Type: text/plain; charset=UTF-8\n"
2020 "Content-Transfer-Encoding: 8bit\n"
2121 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22 "X-Generator: Zanata 3.9.6\n"
23
24 #: ../data/remote-viewer.appdata.xml.in.h:1
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
22 "X-Generator: Zanata 4.6.2\n"
23
24 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
25 #: src/remote-viewer-main.c:39
2626 msgid "Remote Viewer"
2727 msgstr "দূৰৱৰ্তী দৰ্শক"
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:2
29 #: data/remote-viewer.appdata.xml.in:7
3030 msgid "Remotely access virtual machines"
3131 msgstr ""
3232
33 #: ../data/remote-viewer.appdata.xml.in.h:3
33 #: data/remote-viewer.appdata.xml.in:9
3434 msgid ""
3535 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3636 "time it supports guest OS using the VNC or SPICE protocols. Further "
3939 "using SSL/TLS encryption."
4040 msgstr ""
4141
42 #: ../data/remote-viewer.desktop.in.h:2
42 #: data/remote-viewer.desktop.in:4
4343 msgid "Access remote desktops"
4444 msgstr "দূৰৱৰ্তী ডেস্কটপসমূহ অভিগম কৰক"
4545
46 #: ../data/virt-viewer-mime.xml.in.h:1
47 msgid "Virt-Viewer connection file"
48 msgstr "Virt-Viewer সংযোগ ফাইল"
49
50 #: ../src/remote-viewer-iso-list-dialog.c:160
46 #: src/remote-viewer-iso-list-dialog.c:156
5147 msgid "Failed to fetch CD names"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:212
50 #: src/remote-viewer-iso-list-dialog.c:205
5551 msgid "<b>Loading...</b>"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:285
54 #: src/remote-viewer-iso-list-dialog.c:276
5955 msgid "Refresh"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:286
58 #: src/remote-viewer-iso-list-dialog.c:277
6359 msgid "Close"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:306
62 #: src/remote-viewer-iso-list-dialog.c:297
6763 msgid "Unspecified error"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:328
66 #: src/remote-viewer-iso-list-dialog.c:318
7167 msgid "Failed to change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer-iso-list-dialog.c:380
70 #: src/remote-viewer-iso-list-dialog.c:370
7571 msgid "Change CD"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:118
74 #: src/remote-viewer.c:116
7975 msgid "Set window title"
8076 msgstr "উইন্ডো শীৰ্ষক সংহতি কৰক"
8177
82 #: ../src/remote-viewer.c:125
78 #: src/remote-viewer.c:123
8379 msgid "Remote viewer client"
8480 msgstr "দূৰৱৰ্তী দৰ্শক ক্লাএণ্ট"
8581
86 #: ../src/remote-viewer.c:150
87 #, c-format
82 #: src/remote-viewer.c:148
8883 msgid ""
8984 "\n"
9085 "Error: can't handle multiple URIs\n"
9186 "\n"
9287 msgstr ""
9388
94 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
89 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9590 #, c-format
9691 msgid "Run '%s --help' to see a full list of available command line options\n"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:435
94 #: src/remote-viewer.c:429
10095 msgid "failed to parse ovirt uri"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
98 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10499 msgid "Authentication was cancelled"
105100 msgstr ""
106101
107 #: ../src/remote-viewer.c:480
102 #: src/remote-viewer.c:472
108103 #, c-format
109104 msgid "oVirt VM %s is not running"
110105 msgstr ""
111106
112 #: ../src/remote-viewer.c:494
107 #: src/remote-viewer.c:486
113108 #, c-format
114109 msgid "oVirt VM %s has no display"
115110 msgstr ""
116111
117 #: ../src/remote-viewer.c:520
112 #: src/remote-viewer.c:512
118113 #, c-format
119114 msgid "oVirt VM %s has no host information"
120115 msgstr ""
121116
122 #: ../src/remote-viewer.c:531
123 #, c-format
124 msgid "oVirt VM %s has unknown display type: %d"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:713
117 #: src/remote-viewer.c:523
118 #, c-format
119 msgid "oVirt VM %s has unknown display type: %u"
120 msgstr ""
121
122 #: src/remote-viewer.c:690
123 msgid "Couldn't open oVirt session: "
124 msgstr ""
125
126 #: src/remote-viewer.c:718
128127 msgid "Failed to initiate connection"
129128 msgstr "সংযোগ আৰম্ভ কৰিবলে ব্যৰ্থ"
130129
131 #: ../src/remote-viewer.c:742
130 #: src/remote-viewer.c:747
132131 msgid "No connection was chosen"
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:759
134 #: src/remote-viewer.c:764
136135 msgid "Failed to read stdin: "
137136 msgstr ""
138137
139 #: ../src/remote-viewer.c:776
138 #: src/remote-viewer.c:781
140139 #, c-format
141140 msgid "Invalid file %s: "
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:786
143 #: src/remote-viewer.c:791
145144 msgid "Cannot determine the connection type from URI"
146145 msgstr "URI ৰ পৰা সংযোগ ধৰণ নিৰ্ধাৰণ কৰিব পৰা নগল"
147146
148 #: ../src/remote-viewer.c:792
149 msgid "Couldn't open oVirt session: "
150 msgstr ""
151
152 #: ../src/remote-viewer.c:815
147 #: src/remote-viewer.c:810
153148 #, c-format
154149 msgid "Unable to connect: %s"
155150 msgstr ""
156151
157 #.
158 #. * Local variables:
159 #. * c-indent-level: 4
160 #. * c-basic-offset: 4
161 #. * indent-tabs-mode: nil
162 #. * End:
163 #.
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
152 #: src/resources/ui/remote-viewer-connect.ui:6
165153 msgid "Connection details"
166154 msgstr "সংযোগৰ বিৱৰণসমূহ"
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
156 #: src/resources/ui/remote-viewer-connect.ui:24
169157 msgid "Connection _Address"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
160 #: src/resources/ui/remote-viewer-connect.ui:54
173161 msgid "For example, spice://foo.example.org:5900"
174162 msgstr "উদাহৰণস্বৰূপ, spice://foo.example.org:5900"
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
164 #: src/resources/ui/remote-viewer-connect.ui:78
177165 msgid "Recent connections"
178166 msgstr ""
179167
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
181 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
182 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
183 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
168 #: src/resources/ui/remote-viewer-connect.ui:120
169 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
170 #: src/resources/ui/virt-viewer-vm-connection.ui:24
171 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
184172 msgid "_Cancel"
185173 msgstr ""
186174
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
188 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:134
176 #: src/resources/ui/virt-viewer-vm-connection.ui:38
189177 msgid "C_onnect"
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
180 #: src/resources/ui/remote-viewer-iso-list.ui:28
193181 msgid "Loading..."
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
184 #: src/resources/ui/remote-viewer-iso-list.ui:78
197185 msgid "Select ISO"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
188 #: src/resources/ui/remote-viewer-iso-list.ui:116
201189 msgid "Selected"
202190 msgstr ""
203191
204 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
205 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
192 #: src/resources/ui/remote-viewer-iso-list.ui:129
193 #: src/resources/ui/virt-viewer-vm-connection.ui:72
206194 msgid "Name"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:1
197 #: src/resources/ui/virt-viewer-about.ui:7
210198 msgid "About Virt-Viewer"
211199 msgstr ""
212200
213 #: ../src/resources/ui/virt-viewer-about.ui.h:2
201 #: src/resources/ui/virt-viewer-about.ui:16
214202 msgid ""
215203 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216204 "Copyright (C) 2007-2014 Red Hat, Inc."
218206 "স্বত্বাধিকাৰ (C) ২০০৭-২০১২ Daniel P. Berrange\n"
219207 "স্বত্বাধিকাৰ (C) ২০০৭-২০১৪ Red Hat, Inc."
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:4
209 #: src/resources/ui/virt-viewer-about.ui:18
222210 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
223211 msgstr ""
224212 "GTK-VNC, SPICE-GTK আৰু libvirt ৰ সৈতে নিৰ্মাণ কৰা এটা দূৰৱৰ্তী ডেস্কটপ ক্লাএন্ট"
225213
226 #: ../src/resources/ui/virt-viewer-about.ui.h:5
227 msgid "virt-manager.org"
228 msgstr "virt-manager.org"
229
230 #: ../src/resources/ui/virt-viewer-about.ui.h:6
214 #: src/resources/ui/virt-viewer-about.ui:20
215 msgid "gitlab.com/virt-viewer/virt-viewer"
216 msgstr ""
217
218 #: src/resources/ui/virt-viewer-about.ui:21
231219 msgid ""
232220 "This program is free software; you can redistribute it and/or modify\n"
233221 "it under the terms of the GNU General Public License as published by\n"
257245 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA লে "
258246 "লিখক\n"
259247
260 #: ../src/resources/ui/virt-viewer-about.ui.h:20
248 #: src/resources/ui/virt-viewer-about.ui:38
261249 msgid "The Fedora Translation Team"
262250 msgstr "Fedora অনুবাদ দল"
263251
264 #: ../src/virt-viewer-app.c:459
252 #: src/virt-viewer-app.c:594
265253 msgid "Do you want to close the session?"
266254 msgstr "আপুনি অধিবেশন বন্ধ কৰিব বিচাৰে নে?"
267255
268 #: ../src/virt-viewer-app.c:461
256 #: src/virt-viewer-app.c:596
269257 msgid "Do not ask me again"
270258 msgstr "মোক আকৌ নুশুধিব"
271259
272 #: ../src/virt-viewer-app.c:655
260 #: src/virt-viewer-app.c:767
273261 #, c-format
274262 msgid "Address is too long for unix socket_path: %s"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:665
265 #: src/virt-viewer-app.c:777
278266 #, c-format
279267 msgid "Creating unix socket failed: %s"
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:671
270 #: src/virt-viewer-app.c:783
283271 #, c-format
284272 msgid "Connecting to unix socket failed: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:955
275 #: src/virt-viewer-app.c:1077
288276 #, c-format
289277 msgid "Waiting for display %d..."
290278 msgstr "প্ৰদৰ্শন %d ৰ বাবে অপেক্ষা কৰা হৈ আছে..."
291279
292 #: ../src/virt-viewer-app.c:1062
280 #: src/virt-viewer-app.c:1193
293281 #, c-format
294282 msgid "Unsupported graphic type '%s'"
295283 msgstr ""
296284
297 #: ../src/virt-viewer-app.c:1146
285 #: src/virt-viewer-app.c:1277
298286 msgid "Connect to ssh failed."
299287 msgstr "ssh লে সংযোগ ব্যৰ্থ হল।"
300288
301 #: ../src/virt-viewer-app.c:1161
289 #: src/virt-viewer-app.c:1292
302290 #, c-format
303291 msgid "Can't connect to channel: %s"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1163
294 #: src/virt-viewer-app.c:1294
307295 msgid "only SSH or unix socket connection supported."
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1176
298 #: src/virt-viewer-app.c:1311
311299 msgid "Connect to channel unsupported."
312300 msgstr "চেনেললে সংযোগ অসমৰ্থিত।"
313301
314 #: ../src/virt-viewer-app.c:1238
302 #: src/virt-viewer-app.c:1376
315303 msgid "Display can only be attached through libvirt with --attach"
316304 msgstr ""
317305
318 #: ../src/virt-viewer-app.c:1263
306 #: src/virt-viewer-app.c:1401
319307 msgid "Connecting to graphic server"
320308 msgstr "গ্ৰাফিক চাৰ্ভাৰলে সংযোগ কৰা হৈ আছে"
321309
322 #: ../src/virt-viewer-app.c:1362
310 #: src/virt-viewer-app.c:1500
323311 msgid "Guest domain has shutdown"
324312 msgstr "অতিথি ডমেইন বন্ধ হল"
325313
326 #: ../src/virt-viewer-app.c:1423
314 #: src/virt-viewer-app.c:1561
327315 msgid "Connected to graphic server"
328316 msgstr "গ্ৰাফিক চাৰ্ভাৰলে সংযোগিত"
329317
330 #: ../src/virt-viewer-app.c:1452
318 #: src/virt-viewer-app.c:1590
331319 #, c-format
332320 msgid "Unable to connect to the graphic server %s"
333321 msgstr "গ্ৰাফিক চাৰ্ভাৰ %s লে সংযোগ কৰিবলে অক্ষম"
334322
335 #: ../src/virt-viewer-app.c:1478
323 #: src/virt-viewer-app.c:1616
336324 #, c-format
337325 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1492
328 #: src/virt-viewer-app.c:1630
341329 #, c-format
342330 msgid "Unable to authenticate with remote desktop server: %s"
343331 msgstr "দূৰৱৰ্তী ডেস্কটপ চাৰ্ভাৰৰ সৈতে প্ৰমাণিত কৰিবলে অক্ষম: %s"
344332
345 #: ../src/virt-viewer-app.c:1500
333 #: src/virt-viewer-app.c:1638
346334 #, c-format
347335 msgid "USB redirection error: %s"
348336 msgstr "USB পুনৰনিৰ্দেশ ত্ৰুটি: %s"
349337
350 #: ../src/virt-viewer-app.c:1834
338 #: src/virt-viewer-app.c:2026
351339 #, c-format
352340 msgid "Zoom level must be within %d-%d\n"
353341 msgstr "জুম স্তৰ %d-%d ৰ মাজত হব লাগিব\n"
354342
355 #: ../src/virt-viewer-app.c:1887
343 #: src/virt-viewer-app.c:2081
356344 #, c-format
357345 msgid "%s\n"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:1897
348 #: src/virt-viewer-app.c:2091
361349 #, c-format
362350 msgid "%s version %s"
363351 msgstr ""
364352
365 #: ../src/virt-viewer-app.c:2321
353 #: src/virt-viewer-app.c:2545
366354 #, c-format
367355 msgid "Display _%d"
368356 msgstr ""
369357
370 #: ../src/virt-viewer-app.c:2577
358 #: src/virt-viewer-app.c:2829
371359 #, c-format
372360 msgid "Invalid kiosk-quit argument: %s"
373361 msgstr "অবৈধ kiosk-quit তৰ্ক: %s"
374362
375 #: ../src/virt-viewer-app.c:2588
363 #: src/virt-viewer-app.c:2840
376364 msgid "Display version information"
377365 msgstr "সংস্কৰণ তথ্য প্ৰদৰ্শন কৰক"
378366
379 #: ../src/virt-viewer-app.c:2590
367 #: src/virt-viewer-app.c:2842
380368 msgid "Zoom level of window, in percentage"
381369 msgstr "উইন্ডোৰ জুম স্তৰ, শতাংশত"
382370
383 #: ../src/virt-viewer-app.c:2592
371 #: src/virt-viewer-app.c:2844
384372 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
385373 msgstr ""
386374 "পূৰ্ণ পৰ্দা অৱস্থাত খোলক (ক্লাএন্টৰ সৈতে খাপ খোৱাবলে অতিথিৰ বিভেদন ধাৰ্য্য কৰে)"
387375
388 #: ../src/virt-viewer-app.c:2594
376 #: src/virt-viewer-app.c:2846
389377 msgid "Customise hotkeys"
390378 msgstr "হটকি'সমূহ স্বনিৰ্বাচন কৰক"
391379
392 #: ../src/virt-viewer-app.c:2596
380 #: src/virt-viewer-app.c:2848
393381 msgid "Enable kiosk mode"
394382 msgstr "কিঅস্ক অৱস্থা সামৰ্থবান কৰক"
395383
396 #: ../src/virt-viewer-app.c:2598
384 #: src/virt-viewer-app.c:2850
397385 msgid "Quit on given condition in kiosk mode"
398386 msgstr "কিঅস্ক অৱস্থাত দিয়া চুক্তিত প্ৰস্থান কৰিব"
399387
400 #: ../src/virt-viewer-app.c:2598
388 #: src/virt-viewer-app.c:2850
401389 msgid "<never|on-disconnect>"
402390 msgstr "<never|on-disconnect>"
403391
404 #: ../src/virt-viewer-app.c:2600
392 #: src/virt-viewer-app.c:2852
405393 msgid "Display verbose information"
406394 msgstr "ভাৰভৌচ তথ্য প্ৰদৰ্শন কৰক"
407395
408 #: ../src/virt-viewer-app.c:2602
396 #: src/virt-viewer-app.c:2854
409397 msgid "Display debugging information"
410398 msgstr "ডিবাগ তথ্য প্ৰদৰ্শন কৰক"
411399
412 #: ../src/virt-viewer-auth.c:89
400 #: src/virt-viewer-auth.c:89
413401 #, c-format
414402 msgid ""
415403 "Authentication is required for the %s connection to:\n"
418406 "\n"
419407 msgstr ""
420408
421 #: ../src/virt-viewer-auth.c:93
409 #: src/virt-viewer-auth.c:93
422410 #, c-format
423411 msgid "Authentication is required for the %s connection:\n"
424412 msgstr ""
425413
426 #.
427 #. * Local variables:
428 #. * c-indent-level: 4
429 #. * c-basic-offset: 4
430 #. * indent-tabs-mode: nil
431 #. * End:
432 #.
433 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
414 #: src/resources/ui/virt-viewer-auth.ui:7
434415 msgid "Authentication required"
435416 msgstr "প্ৰমাণীকৰণৰ প্ৰয়োজন"
436417
437 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
418 #: src/resources/ui/virt-viewer-auth.ui:42
438419 msgid "_OK"
439420 msgstr ""
440421
441 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
442 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
443 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
422 #: src/resources/ui/virt-viewer-auth.ui:71
423 #: src/resources/ui/virt-viewer-guest-details.ui:82
424 #: src/resources/ui/virt-viewer-guest-details.ui:96
425 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
444426 msgid "label"
445427 msgstr "লেবেল"
446428
447 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
429 #: src/resources/ui/virt-viewer-auth.ui:93
448430 msgid "Password:"
449431 msgstr "পাছৱাৰ্ড:"
450432
451 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
433 #: src/resources/ui/virt-viewer-auth.ui:105
452434 msgid "Username:"
453435 msgstr "ব্যৱহাৰকাৰীৰ নাম:"
454436
455 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
437 #: src/resources/ui/virt-viewer-auth.ui:137
456438 msgid "Show password"
457439 msgstr ""
458440
459 #: ../src/virt-viewer-display-vnc.c:134
441 #: src/virt-viewer-display-vnc.c:130
460442 msgid "VNC does not provide GUID"
461443 msgstr ""
462444
463 #: ../src/virt-viewer-file-transfer-dialog.c:128
445 #: src/virt-viewer-display-vte.c:181
446 msgid "Console support is compiled out!"
447 msgstr ""
448
449 #: src/virt-viewer-file-transfer-dialog.c:124
464450 msgid "File Transfers"
465451 msgstr ""
466452
467 #: ../src/virt-viewer-file-transfer-dialog.c:154
453 #: src/virt-viewer-file-transfer-dialog.c:150
468454 msgid "Transferring 1 file..."
469455 msgstr ""
470456
471 #: ../src/virt-viewer-file-transfer-dialog.c:156
472 #, c-format
473 msgid "Transferring %d file of %d..."
474 msgid_plural "Transferring %d files of %d..."
457 #: src/virt-viewer-file-transfer-dialog.c:152
458 #, c-format
459 msgid "Transferring %u file of %u..."
460 msgid_plural "Transferring %u files of %u..."
475461 msgstr[0] ""
476
477 #: ../src/virt-viewer-file-transfer-dialog.c:228
478 #, c-format
479 msgid "An error caused the following file transfers to fail:%s"
480 msgstr ""
481
482 #: ../src/virt-viewer-main.c:38
462 msgstr[1] ""
463
464 #: src/virt-viewer-file-transfer-dialog.c:225
465 msgid "An error caused the following file transfers to fail:"
466 msgstr ""
467
468 #: src/virt-viewer-main.c:38
483469 msgid "Virt Viewer"
484470 msgstr "Virt দৰ্শক"
485471
486 #: ../src/virt-viewer-session-spice.c:704
472 #: src/virt-viewer-session-spice.c:731
487473 msgid "Invalid password"
488474 msgstr ""
489475
490 #. Create the widgets
491 #: ../src/virt-viewer-session-spice.c:802
476 #: src/virt-viewer-session-spice.c:829
492477 msgid "Select USB devices for redirection"
493478 msgstr "পুনৰনিৰ্দেশৰ বাবে USB ডিভাইচসমূহ বাছক"
494479
495 #: ../src/virt-viewer-session-spice.c:804
496 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
480 #: src/virt-viewer-session-spice.c:831
481 #: src/resources/ui/virt-viewer-guest-details.ui:23
497482 msgid "_Close"
498483 msgstr ""
499484
500 #: ../src/virt-viewer-session-vnc.c:162
501 #, c-format
502 msgid "Unsupported authentication type %d"
503 msgstr "অসমৰ্থিত প্ৰমাণীকৰণ ধৰণ %d"
504
505 #: ../src/virt-viewer-vm-connection.c:64
485 #: src/virt-viewer-session-spice.c:1019
486 msgid "Serial"
487 msgstr ""
488
489 #: src/virt-viewer-session-spice.c:1021
490 msgid "QEMU human monitor"
491 msgstr ""
492
493 #: src/virt-viewer-session-spice.c:1023
494 msgid "QEMU debug console"
495 msgstr ""
496
497 #: src/virt-viewer-session-vnc.c:158
498 #, c-format
499 msgid "Unsupported authentication type %u"
500 msgstr ""
501
502 #: src/virt-viewer-vm-connection.c:64
506503 msgid "No running virtual machine found"
507504 msgstr ""
508505
509 #: ../src/virt-viewer-vm-connection.c:93
506 #: src/virt-viewer-vm-connection.c:93
510507 msgid "No virtual machine was chosen"
511508 msgstr ""
512509
513 #: ../src/virt-viewer-window.c:544
510 #: src/virt-viewer-window.c:621
514511 msgid "Ctrl+Alt+_Del"
515512 msgstr "Ctrl+Alt+_Del"
516513
517 #: ../src/virt-viewer-window.c:545
514 #: src/virt-viewer-window.c:622
518515 msgid "Ctrl+Alt+_Backspace"
519516 msgstr "Ctrl+Alt+_Backspace"
520517
521 #: ../src/virt-viewer-window.c:547
518 #: src/virt-viewer-window.c:624
522519 msgid "Ctrl+Alt+F_1"
523520 msgstr "Ctrl+Alt+F_1"
524521
525 #: ../src/virt-viewer-window.c:548
522 #: src/virt-viewer-window.c:625
526523 msgid "Ctrl+Alt+F_2"
527524 msgstr "Ctrl+Alt+F_2"
528525
529 #: ../src/virt-viewer-window.c:549
526 #: src/virt-viewer-window.c:626
530527 msgid "Ctrl+Alt+F_3"
531528 msgstr "Ctrl+Alt+F_3"
532529
533 #: ../src/virt-viewer-window.c:550
530 #: src/virt-viewer-window.c:627
534531 msgid "Ctrl+Alt+F_4"
535532 msgstr "Ctrl+Alt+F_4"
536533
537 #: ../src/virt-viewer-window.c:551
534 #: src/virt-viewer-window.c:628
538535 msgid "Ctrl+Alt+F_5"
539536 msgstr "Ctrl+Alt+F_5"
540537
541 #: ../src/virt-viewer-window.c:552
538 #: src/virt-viewer-window.c:629
542539 msgid "Ctrl+Alt+F_6"
543540 msgstr "Ctrl+Alt+F_6"
544541
545 #: ../src/virt-viewer-window.c:553
542 #: src/virt-viewer-window.c:630
546543 msgid "Ctrl+Alt+F_7"
547544 msgstr "Ctrl+Alt+F_7"
548545
549 #: ../src/virt-viewer-window.c:554
546 #: src/virt-viewer-window.c:631
550547 msgid "Ctrl+Alt+F_8"
551548 msgstr "Ctrl+Alt+F_8"
552549
553 #: ../src/virt-viewer-window.c:555
550 #: src/virt-viewer-window.c:632
554551 msgid "Ctrl+Alt+F_9"
555552 msgstr "Ctrl+Alt+F_9"
556553
557 #: ../src/virt-viewer-window.c:556
554 #: src/virt-viewer-window.c:633
558555 msgid "Ctrl+Alt+F1_0"
559556 msgstr "Ctrl+Alt+F1_0"
560557
561 #: ../src/virt-viewer-window.c:557
558 #: src/virt-viewer-window.c:634
562559 msgid "Ctrl+Alt+F11"
563560 msgstr "Ctrl+Alt+F11"
564561
565 #: ../src/virt-viewer-window.c:558
562 #: src/virt-viewer-window.c:635
566563 msgid "Ctrl+Alt+F12"
567564 msgstr "Ctrl+Alt+F12"
568565
569 #: ../src/virt-viewer-window.c:953
566 #: src/virt-viewer-window.c:637
567 msgid "_PrintScreen"
568 msgstr ""
569
570 #: src/virt-viewer-window.c:1030
570571 #, c-format
571572 msgid "Unable to determine image format for file '%s'"
572573 msgstr ""
573574
574 #: ../src/virt-viewer-window.c:980
575 #: src/virt-viewer-window.c:1053
576 msgid "Save screenshot"
577 msgstr ""
578
579 #: src/virt-viewer-window.c:1057
575580 msgid "_Save"
576581 msgstr ""
577582
578 #: ../src/virt-viewer-window.c:988
583 #: src/virt-viewer-window.c:1065
579584 msgid "Screenshot.png"
580585 msgstr ""
581586
582 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
587 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
583588 msgid "Unknown"
584589 msgstr ""
585590
586 #: ../src/virt-viewer-window.c:1152
591 #: src/virt-viewer-window.c:1237
587592 msgid "Unable to connnect to oVirt"
588593 msgstr ""
589594
590 #: ../src/virt-viewer-window.c:1175
595 #: src/virt-viewer-window.c:1260
591596 msgid "Disconnect"
592597 msgstr "বিচ্ছিন্ন কৰক"
593598
594 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
599 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
595600 msgid "USB device selection"
596601 msgstr "USB ডিভাইছ নিৰ্বাচন"
597602
598 #: ../src/virt-viewer-window.c:1193
603 #: src/virt-viewer-window.c:1278
599604 msgid "Send key combination"
600605 msgstr "চাবি সংযুক্তি পঠাওক"
601606
602 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
607 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
603608 msgid "Leave fullscreen"
604609 msgstr "পূৰ্ণপৰ্দা ত্যাগ কৰক"
605610
606 #: ../src/virt-viewer-window.c:1279
611 #: src/virt-viewer-window.c:1364
607612 msgid "Ctrl+Alt"
608613 msgstr "Ctrl+Alt"
609614
610 #: ../src/virt-viewer-window.c:1282
615 #: src/virt-viewer-window.c:1367
611616 #, c-format
612617 msgid "(Press %s to release pointer)"
613618 msgstr "(পোইন্টাৰ এৰিবলে %s টিপক)"
614619
615 #. translators:
616 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
617 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
618 #.
619 #: ../src/virt-viewer-window.c:1293
620 #: src/virt-viewer-window.c:1378
620621 #, c-format
621622 msgid "%s%s%s - %s"
622623 msgstr "%s%s%s - %s"
623624
624 #. translators: <space>
625 #: ../src/virt-viewer-window.c:1297
625 #: src/virt-viewer-window.c:1382
626626 msgid " "
627627 msgstr " "
628628
629 #: ../src/virt-viewer-file.c:862
629 #: src/virt-viewer-file.c:875
630630 #, c-format
631631 msgid ""
632632 "At least %s version %s is required to setup this connection, see %s for "
633633 "details"
634634 msgstr ""
635635
636 #: ../src/virt-viewer-file.c:870
636 #: src/virt-viewer-file.c:883
637637 #, c-format
638638 msgid "At least %s version %s is required to setup this connection"
639639 msgstr "এই সংযোগ সংস্থাপন কৰিবলে অন্তত %s সংস্কৰণ %s ৰ প্ৰয়োজন"
640640
641 #: ../src/virt-viewer.c:133
641 #: src/virt-viewer.c:131
642642 msgid "Direct connection with no automatic tunnels"
643643 msgstr "কোনো স্বচালিত টানেল নহোৱাকৈ প্ৰত্যক্ষ সংযোগ"
644644
645 #: ../src/virt-viewer.c:135
645 #: src/virt-viewer.c:133
646646 msgid "Attach to the local display using libvirt"
647647 msgstr "libvirt ব্যৱহাৰ কৰি স্থানীয় প্ৰদৰ্শনলে সংলঘ্ন কৰক"
648648
649 #: ../src/virt-viewer.c:137
649 #: src/virt-viewer.c:135
650650 msgid "Connect to hypervisor"
651651 msgstr "হাইপাৰভাইছৰলে সংযোগ কৰক"
652652
653 #: ../src/virt-viewer.c:139
653 #: src/virt-viewer.c:137
654654 msgid "Wait for domain to start"
655655 msgstr "ডমেইন আৰম্ভ হবলে অপেক্ষা কৰক"
656656
657 #: ../src/virt-viewer.c:141
657 #: src/virt-viewer.c:139
658658 msgid "Reconnect to domain upon restart"
659659 msgstr "পুনৰাম্ভ হওতে ডমেইনলে পুনৰসংযোগ কৰক"
660660
661 #: ../src/virt-viewer.c:143
661 #: src/virt-viewer.c:141
662662 msgid "Select the virtual machine only by its name"
663663 msgstr ""
664664
665 #: ../src/virt-viewer.c:145
665 #: src/virt-viewer.c:143
666666 msgid "Select the virtual machine only by its id"
667667 msgstr ""
668668
669 #: ../src/virt-viewer.c:147
669 #: src/virt-viewer.c:145
670670 msgid "Select the virtual machine only by its uuid"
671671 msgstr ""
672672
673 #: ../src/virt-viewer.c:154
673 #: src/virt-viewer.c:152
674674 msgid "Virtual machine graphical console"
675675 msgstr "ভাৰছুৱেল মেচিন গ্ৰাফিকেল কনচৌল"
676676
677 #: ../src/virt-viewer.c:173
677 #: src/virt-viewer.c:171
678678 #, c-format
679679 msgid ""
680680 "\n"
682682 "\n"
683683 msgstr ""
684684
685 #: ../src/virt-viewer.c:185
685 #: src/virt-viewer.c:183
686686 #, c-format
687687 msgid ""
688688 "\n"
690690 "\n"
691691 msgstr ""
692692
693 #: ../src/virt-viewer.c:300
693 #: src/virt-viewer.c:296
694694 msgid "Waiting for guest domain to re-start"
695695 msgstr "অতিথি ডমেইন পুনৰাম্ভ হোৱাৰ বাবে অপেক্ষা কৰা হৈ আছে"
696696
697 #: ../src/virt-viewer.c:554
697 #: src/virt-viewer.c:550
698698 #, c-format
699699 msgid "Cannot determine the graphic type for the guest %s"
700700 msgstr "অতিথি %s ৰ বাবে গ্ৰাফিক ধৰণ নিৰ্ধাৰণ কৰিব নোৱাৰি"
701701
702 #: ../src/virt-viewer.c:603
702 #: src/virt-viewer.c:599
703703 #, c-format
704704 msgid "Cannot determine the host for the guest %s"
705705 msgstr "অতিথি %s ৰ বাবে হস্ট নিৰ্ধাৰণ কৰিব নোৱাৰি"
706706
707 #: ../src/virt-viewer.c:631
707 #: src/virt-viewer.c:627
708708 #, c-format
709709 msgid "Guest '%s' is not reachable"
710710 msgstr ""
711711
712 #: ../src/virt-viewer.c:860
712 #: src/virt-viewer.c:856
713713 #, c-format
714714 msgid "Virtual machine %s is not running"
715715 msgstr ""
716716
717 #: ../src/virt-viewer.c:884
717 #: src/virt-viewer.c:881
718718 msgid "Waiting for libvirt to start"
719719 msgstr "libvirt আৰম্ভ হবলে অপেক্ষা কৰা হৈছে"
720720
721 #: ../src/virt-viewer.c:888
721 #: src/virt-viewer.c:885
722722 msgid "Finding guest domain"
723723 msgstr "অতিথি ডমেইন বিচৰা"
724724
725 #: ../src/virt-viewer.c:892
725 #: src/virt-viewer.c:889
726726 msgid "Waiting for guest domain to be created"
727727 msgstr "অতিথি ডমেইন সৃষ্টি হোৱালে অপেক্ষা কৰা হৈ আছে"
728728
729 #: ../src/virt-viewer.c:918
729 #: src/virt-viewer.c:921
730730 msgid "Checking guest domain status"
731731 msgstr "অতিথি ডমেইন অৱস্থা নীৰিক্ষণ কৰা"
732732
733 #: ../src/virt-viewer.c:921
733 #: src/virt-viewer.c:924
734734 msgid "Cannot get guest state"
735735 msgstr ""
736736
737 #: ../src/virt-viewer.c:927
737 #: src/virt-viewer.c:930
738738 msgid "Waiting for guest domain to start"
739739 msgstr "অতিথি ডমেইন আৰম্ভ হোৱালে অপেক্ষা কৰা হৈ আছে"
740740
741 #: ../src/virt-viewer.c:1040
741 #: src/virt-viewer.c:1044
742742 #, c-format
743743 msgid "Unable to connect to libvirt with URI: %s."
744744 msgstr ""
745745
746 #: ../src/virt-viewer.c:1041
746 #: src/virt-viewer.c:1045
747747 msgid "[none]"
748748 msgstr "[none]"
749749
750 #: ../src/virt-viewer.c:1048
750 #: src/virt-viewer.c:1052
751751 msgid "Authentication failed."
752752 msgstr ""
753753
754 #: ../src/virt-viewer.c:1108
754 #: src/virt-viewer.c:1112
755755 msgid "Failed to connect: "
756756 msgstr ""
757757
758 #.
759 #. * Local variables:
760 #. * c-indent-level: 4
761 #. * c-basic-offset: 4
762 #. * indent-tabs-mode: nil
763 #. * End:
764 #.
765 #: ../src/resources/ui/virt-viewer.ui.h:1
758 #: src/resources/ui/virt-viewer.ui:28
766759 msgid "_File"
767760 msgstr "ফাইল (_F)"
768761
769 #: ../src/resources/ui/virt-viewer.ui.h:2
762 #: src/resources/ui/virt-viewer.ui:41
770763 msgid "_Screenshot"
771764 msgstr ""
772765
773 #: ../src/resources/ui/virt-viewer.ui.h:3
766 #: src/resources/ui/virt-viewer.ui:52
774767 msgid "_USB device selection"
775768 msgstr ""
776769
777 #: ../src/resources/ui/virt-viewer.ui.h:4
770 #: src/resources/ui/virt-viewer.ui:62
778771 msgid "Smartcard insertion"
779772 msgstr "স্মাৰ্টকাৰ্ড সোমোৱা"
780773
781 #: ../src/resources/ui/virt-viewer.ui.h:5
774 #: src/resources/ui/virt-viewer.ui:72
782775 msgid "Smartcard removal"
783776 msgstr "স্মাৰ্টকাৰ্ড আতৰোৱা"
784777
785 #: ../src/resources/ui/virt-viewer.ui.h:6
778 #: src/resources/ui/virt-viewer.ui:80
786779 msgid "_Change CD"
787780 msgstr ""
788781
789 #: ../src/resources/ui/virt-viewer.ui.h:7
782 #: src/resources/ui/virt-viewer.ui:90
790783 msgid "_Preferences"
791784 msgstr ""
792785
793 #: ../src/resources/ui/virt-viewer.ui.h:8
786 #: src/resources/ui/virt-viewer.ui:103
794787 msgid "_Quit"
795788 msgstr ""
796789
797 #: ../src/resources/ui/virt-viewer.ui.h:9
790 #: src/resources/ui/virt-viewer.ui:119
791 msgid "_Machine"
792 msgstr ""
793
794 #: src/resources/ui/virt-viewer.ui:129
795 msgid "_Pause"
796 msgstr ""
797
798 #: src/resources/ui/virt-viewer.ui:144
799 msgid "_Reset"
800 msgstr ""
801
802 #: src/resources/ui/virt-viewer.ui:153
803 msgid "_Power down"
804 msgstr ""
805
806 #: src/resources/ui/virt-viewer.ui:167
798807 msgid "_View"
799808 msgstr "দৰ্শন কৰক (_V)"
800809
801 #: ../src/resources/ui/virt-viewer.ui.h:10
810 #: src/resources/ui/virt-viewer.ui:180
802811 msgid "_Full screen"
803812 msgstr ""
804813
805 #: ../src/resources/ui/virt-viewer.ui.h:11
814 #: src/resources/ui/virt-viewer.ui:191
806815 msgid "_Zoom"
807816 msgstr "জুম কৰক (_Z)"
808817
809 #: ../src/resources/ui/virt-viewer.ui.h:12
818 #: src/resources/ui/virt-viewer.ui:201
810819 msgid "Zoom _In"
811820 msgstr ""
812821
813 #: ../src/resources/ui/virt-viewer.ui.h:13
822 #: src/resources/ui/virt-viewer.ui:212
814823 msgid "Zoom _Out"
815824 msgstr ""
816825
817 #: ../src/resources/ui/virt-viewer.ui.h:14
826 #: src/resources/ui/virt-viewer.ui:229
818827 msgid "_Normal Size"
819828 msgstr ""
820829
821 #: ../src/resources/ui/virt-viewer.ui.h:15
830 #: src/resources/ui/virt-viewer.ui:246
822831 msgid "_Displays"
823832 msgstr ""
824833
825 #: ../src/resources/ui/virt-viewer.ui.h:16
834 #: src/resources/ui/virt-viewer.ui:255
826835 msgid "Release cursor"
827836 msgstr "উন্মোচন কাৰ্চাৰ"
828837
829 #: ../src/resources/ui/virt-viewer.ui.h:17
838 #: src/resources/ui/virt-viewer.ui:270
830839 msgid "_Send key"
831840 msgstr "কি পঠাওক (_S)"
832841
833 #: ../src/resources/ui/virt-viewer.ui.h:18
842 #: src/resources/ui/virt-viewer.ui:279
834843 msgid "_Help"
835844 msgstr "সহায় (_H)"
836845
837 #: ../src/resources/ui/virt-viewer.ui.h:19
846 #: src/resources/ui/virt-viewer.ui:290
838847 msgid "_Guest Details"
839848 msgstr ""
840849
841 #: ../src/resources/ui/virt-viewer.ui.h:20
850 #: src/resources/ui/virt-viewer.ui:297
842851 msgid "_About"
843852 msgstr ""
844853
845 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
854 #: src/resources/ui/virt-viewer-guest-details.ui:7
846855 msgid "Guest Details"
847856 msgstr ""
848857
849 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
858 #: src/resources/ui/virt-viewer-guest-details.ui:56
850859 msgid "Name:"
851860 msgstr ""
852861
853 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
862 #: src/resources/ui/virt-viewer-guest-details.ui:68
854863 msgid "GUID:"
855864 msgstr ""
856865
857 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
866 #: src/resources/ui/virt-viewer-vm-connection.ui:7
858867 msgid "Choose a virtual machine"
859868 msgstr ""
860869
861 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
870 #: src/resources/ui/virt-viewer-vm-connection.ui:96
862871 msgid "Available virtual machines"
863872 msgstr ""
864873
865 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
874 #: src/resources/ui/virt-viewer-preferences.ui:8
866875 msgid "Preferences"
867876 msgstr ""
868877
869 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
878 #: src/resources/ui/virt-viewer-preferences.ui:48
870879 msgid "Folder sharing"
871880 msgstr ""
872881
873 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
882 #: src/resources/ui/virt-viewer-preferences.ui:70
874883 msgid "Share folder"
875884 msgstr ""
876885
877 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
886 #: src/resources/ui/virt-viewer-preferences.ui:82
878887 msgid "Read-only"
879888 msgstr ""
880889
881 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
890 #: src/resources/ui/virt-viewer-preferences.ui:96
891 msgid "Share clipboard"
892 msgstr ""
893
894 #: src/resources/ui/virt-viewer-preferences.ui:132
882895 msgid "Spice"
883896 msgstr ""
897
898 #~ msgid "virt-manager.org"
899 #~ msgstr "virt-manager.org"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Asturian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Baluchi\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/be.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Belarusian\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1818 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444
459 #: ../src/virt-viewer-file-transfer-dialog.c:228
460 #, c-format
461 msgid "An error caused the following file transfers to fail:%s"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:38
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
465450 msgid "Virt Viewer"
466451 msgstr ""
467452
468 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
469454 msgid "Invalid password"
470455 msgstr ""
471456
472 #. Create the widgets
473 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
474458 msgid "Select USB devices for redirection"
475459 msgstr ""
476460
477 #: ../src/virt-viewer-session-spice.c:804
478 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
479463 msgid "_Close"
480464 msgstr ""
481465
482 #: ../src/virt-viewer-session-vnc.c:162
483 #, c-format
484 msgid "Unsupported authentication type %d"
485 msgstr ""
486
487 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
488484 msgid "No running virtual machine found"
489485 msgstr ""
490486
491 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
492488 msgid "No virtual machine was chosen"
493489 msgstr ""
494490
495 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
496492 msgid "Ctrl+Alt+_Del"
497493 msgstr ""
498494
499 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
500496 msgid "Ctrl+Alt+_Backspace"
501497 msgstr ""
502498
503 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
504500 msgid "Ctrl+Alt+F_1"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
508504 msgid "Ctrl+Alt+F_2"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
512508 msgid "Ctrl+Alt+F_3"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
516512 msgid "Ctrl+Alt+F_4"
517513 msgstr ""
518514
519 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
520516 msgid "Ctrl+Alt+F_5"
521517 msgstr ""
522518
523 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
524520 msgid "Ctrl+Alt+F_6"
525521 msgstr ""
526522
527 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
528524 msgid "Ctrl+Alt+F_7"
529525 msgstr ""
530526
531 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
532528 msgid "Ctrl+Alt+F_8"
533529 msgstr ""
534530
535 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
536532 msgid "Ctrl+Alt+F_9"
537533 msgstr ""
538534
539 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
540536 msgid "Ctrl+Alt+F1_0"
541537 msgstr ""
542538
543 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
544540 msgid "Ctrl+Alt+F11"
545541 msgstr ""
546542
547 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
548544 msgid "Ctrl+Alt+F12"
549545 msgstr ""
550546
551 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
552552 #, c-format
553553 msgid "Unable to determine image format for file '%s'"
554554 msgstr ""
555555
556 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
557561 msgid "_Save"
558562 msgstr ""
559563
560 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
561565 msgid "Screenshot.png"
562566 msgstr ""
563567
564 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
565569 msgid "Unknown"
566570 msgstr ""
567571
568 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
569573 msgid "Unable to connnect to oVirt"
570574 msgstr ""
571575
572 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
573577 msgid "Disconnect"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
577581 msgid "USB device selection"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
581585 msgid "Send key combination"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
585589 msgid "Leave fullscreen"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
589593 msgid "Ctrl+Alt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
593597 #, c-format
594598 msgid "(Press %s to release pointer)"
595599 msgstr ""
596600
597 #. translators:
598 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600 #.
601 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
602602 #, c-format
603603 msgid "%s%s%s - %s"
604604 msgstr ""
605605
606 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
608607 msgid " "
609608 msgstr ""
610609
611 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
612611 #, c-format
613612 msgid ""
614613 "At least %s version %s is required to setup this connection, see %s for "
615614 "details"
616615 msgstr ""
617616
618 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
619618 #, c-format
620619 msgid "At least %s version %s is required to setup this connection"
621620 msgstr ""
622621
623 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
624623 msgid "Direct connection with no automatic tunnels"
625624 msgstr ""
626625
627 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
628627 msgid "Attach to the local display using libvirt"
629628 msgstr ""
630629
631 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
632631 msgid "Connect to hypervisor"
633632 msgstr ""
634633
635 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
636635 msgid "Wait for domain to start"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
640639 msgid "Reconnect to domain upon restart"
641640 msgstr ""
642641
643 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
644643 msgid "Select the virtual machine only by its name"
645644 msgstr ""
646645
647 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
648647 msgid "Select the virtual machine only by its id"
649648 msgstr ""
650649
651 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
652651 msgid "Select the virtual machine only by its uuid"
653652 msgstr ""
654653
655 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
656655 msgid "Virtual machine graphical console"
657656 msgstr ""
658657
659 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
660659 #, c-format
661660 msgid ""
662661 "\n"
664663 "\n"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
668667 #, c-format
669668 msgid ""
670669 "\n"
672671 "\n"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
676675 msgid "Waiting for guest domain to re-start"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
680679 #, c-format
681680 msgid "Cannot determine the graphic type for the guest %s"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
685684 #, c-format
686685 msgid "Cannot determine the host for the guest %s"
687686 msgstr ""
688687
689 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
690689 #, c-format
691690 msgid "Guest '%s' is not reachable"
692691 msgstr ""
693692
694 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
695694 #, c-format
696695 msgid "Virtual machine %s is not running"
697696 msgstr ""
698697
699 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
700699 msgid "Waiting for libvirt to start"
701700 msgstr ""
702701
703 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
704703 msgid "Finding guest domain"
705704 msgstr ""
706705
707 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
708707 msgid "Waiting for guest domain to be created"
709708 msgstr ""
710709
711 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
712711 msgid "Checking guest domain status"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
716715 msgid "Cannot get guest state"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
720719 msgid "Waiting for guest domain to start"
721720 msgstr ""
722721
723 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
724723 #, c-format
725724 msgid "Unable to connect to libvirt with URI: %s."
726725 msgstr ""
727726
728 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
729728 msgid "[none]"
730729 msgstr ""
731730
732 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
733732 msgid "Authentication failed."
734733 msgstr ""
735734
736 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
737736 msgid "Failed to connect: "
738737 msgstr ""
739738
740 #.
741 #. * Local variables:
742 #. * c-indent-level: 4
743 #. * c-basic-offset: 4
744 #. * indent-tabs-mode: nil
745 #. * End:
746 #.
747 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
748740 msgid "_File"
749741 msgstr ""
750742
751 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
752744 msgid "_Screenshot"
753745 msgstr ""
754746
755 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
756748 msgid "_USB device selection"
757749 msgstr ""
758750
759 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
760752 msgid "Smartcard insertion"
761753 msgstr ""
762754
763 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
764756 msgid "Smartcard removal"
765757 msgstr ""
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
768760 msgid "_Change CD"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
772764 msgid "_Preferences"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
776768 msgid "_Quit"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
780788 msgid "_View"
781789 msgstr ""
782790
783 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
784792 msgid "_Full screen"
785793 msgstr ""
786794
787 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
788796 msgid "_Zoom"
789797 msgstr ""
790798
791 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
792800 msgid "Zoom _In"
793801 msgstr ""
794802
795 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
796804 msgid "Zoom _Out"
797805 msgstr ""
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
800808 msgid "_Normal Size"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
804812 msgid "_Displays"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
808816 msgid "Release cursor"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
812820 msgid "_Send key"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
816824 msgid "_Help"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
820828 msgid "_Guest Details"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
824832 msgid "_About"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
828836 msgid "Guest Details"
829837 msgstr ""
830838
831 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
832840 msgid "Name:"
833841 msgstr ""
834842
835 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
836844 msgid "GUID:"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
840848 msgid "Choose a virtual machine"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
844852 msgid "Available virtual machines"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
848856 msgid "Preferences"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
852860 msgid "Folder sharing"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
856864 msgid "Share folder"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
860868 msgid "Read-only"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
864876 msgid "Spice"
865877 msgstr ""
Binary diff not shown
+269
-253
po/bg.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Valentin Laskov <laskov@festa.bg>, 2012-2013
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:08-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:08+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Bulgarian (http://www.transifex.com/projects/p/virt-viewer/"
1414 "language/bg/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr "Remote Viewer"
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr "Достъп до отдалечени десктопи"
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr "Virt-Viewer файл за връзка"
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr "Задаване заглавие на прозореца"
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr ""
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr "Неуспешно инициализиране на връзка"
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr "От това URI не може да се определи типа на връзката"
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr "Параметри на връзката"
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
215203 msgstr ""
216204
217 #: ../src/resources/ui/virt-viewer-about.ui.h:4
205 #: src/resources/ui/virt-viewer-about.ui:18
218206 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219207 msgstr "Отдалечен десктоп клиент, създаден с GTK-VNC, SPICE-GTK и libvirt"
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222 msgid "virt-manager.org"
223 msgstr "virt-manager.org"
224
225 #: ../src/resources/ui/virt-viewer-about.ui.h:6
209 #: src/resources/ui/virt-viewer-about.ui:20
210 msgid "gitlab.com/virt-viewer/virt-viewer"
211 msgstr ""
212
213 #: src/resources/ui/virt-viewer-about.ui:21
226214 msgid ""
227215 "This program is free software; you can redistribute it and/or modify\n"
228216 "it under the terms of the GNU General Public License as published by\n"
253241 "заедно с тази програма; ако не, пишете на Free Software\n"
254242 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
255243
256 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244 #: src/resources/ui/virt-viewer-about.ui:38
257245 msgid "The Fedora Translation Team"
258246 msgstr ""
259247 "The Fedora Translation Team\n"
260248 "Валентин Ласков, 2012"
261249
262 #: ../src/virt-viewer-app.c:459
250 #: src/virt-viewer-app.c:594
263251 msgid "Do you want to close the session?"
264252 msgstr "Желаете ли да прекратите сесията?"
265253
266 #: ../src/virt-viewer-app.c:461
254 #: src/virt-viewer-app.c:596
267255 msgid "Do not ask me again"
268256 msgstr "Не ме питай отново"
269257
270 #: ../src/virt-viewer-app.c:655
258 #: src/virt-viewer-app.c:767
271259 #, c-format
272260 msgid "Address is too long for unix socket_path: %s"
273261 msgstr ""
274262
275 #: ../src/virt-viewer-app.c:665
263 #: src/virt-viewer-app.c:777
276264 #, c-format
277265 msgid "Creating unix socket failed: %s"
278266 msgstr ""
279267
280 #: ../src/virt-viewer-app.c:671
268 #: src/virt-viewer-app.c:783
281269 #, c-format
282270 msgid "Connecting to unix socket failed: %s"
283271 msgstr ""
284272
285 #: ../src/virt-viewer-app.c:955
273 #: src/virt-viewer-app.c:1077
286274 #, c-format
287275 msgid "Waiting for display %d..."
288276 msgstr "Изчаквам за да покажа %d..."
289277
290 #: ../src/virt-viewer-app.c:1062
278 #: src/virt-viewer-app.c:1193
291279 #, c-format
292280 msgid "Unsupported graphic type '%s'"
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1146
283 #: src/virt-viewer-app.c:1277
296284 msgid "Connect to ssh failed."
297285 msgstr "Връзката към ssh пропадна."
298286
299 #: ../src/virt-viewer-app.c:1161
287 #: src/virt-viewer-app.c:1292
300288 #, c-format
301289 msgid "Can't connect to channel: %s"
302290 msgstr ""
303291
304 #: ../src/virt-viewer-app.c:1163
292 #: src/virt-viewer-app.c:1294
305293 msgid "only SSH or unix socket connection supported."
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1176
296 #: src/virt-viewer-app.c:1311
309297 msgid "Connect to channel unsupported."
310298 msgstr "Свързване към канал не се поддържа."
311299
312 #: ../src/virt-viewer-app.c:1238
300 #: src/virt-viewer-app.c:1376
313301 msgid "Display can only be attached through libvirt with --attach"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1263
304 #: src/virt-viewer-app.c:1401
317305 msgid "Connecting to graphic server"
318306 msgstr "Свързване към графичен сървър"
319307
320 #: ../src/virt-viewer-app.c:1362
308 #: src/virt-viewer-app.c:1500
321309 msgid "Guest domain has shutdown"
322310 msgstr "Виртуализиращата среда на госта беше спряна"
323311
324 #: ../src/virt-viewer-app.c:1423
312 #: src/virt-viewer-app.c:1561
325313 msgid "Connected to graphic server"
326314 msgstr "Свързан към графичен сървър"
327315
328 #: ../src/virt-viewer-app.c:1452
316 #: src/virt-viewer-app.c:1590
329317 #, c-format
330318 msgid "Unable to connect to the graphic server %s"
331319 msgstr "Невъзможно е да се свържа с графичния сървър %s"
332320
333 #: ../src/virt-viewer-app.c:1478
321 #: src/virt-viewer-app.c:1616
334322 #, c-format
335323 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
336324 msgstr ""
337325
338 #: ../src/virt-viewer-app.c:1492
326 #: src/virt-viewer-app.c:1630
339327 #, c-format
340328 msgid "Unable to authenticate with remote desktop server: %s"
341329 msgstr "Невъзможно е удостоверяването пред отдалечения десктоп сървър: %s"
342330
343 #: ../src/virt-viewer-app.c:1500
331 #: src/virt-viewer-app.c:1638
344332 #, c-format
345333 msgid "USB redirection error: %s"
346334 msgstr "Грешка при USB пренасочването: %s"
347335
348 #: ../src/virt-viewer-app.c:1834
336 #: src/virt-viewer-app.c:2026
349337 #, c-format
350338 msgid "Zoom level must be within %d-%d\n"
351339 msgstr "Zoom level трябва да е в рамките %d-%d\n"
352340
353 #: ../src/virt-viewer-app.c:1887
341 #: src/virt-viewer-app.c:2081
354342 #, c-format
355343 msgid "%s\n"
356344 msgstr ""
357345
358 #: ../src/virt-viewer-app.c:1897
346 #: src/virt-viewer-app.c:2091
359347 #, c-format
360348 msgid "%s version %s"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2321
351 #: src/virt-viewer-app.c:2545
364352 #, c-format
365353 msgid "Display _%d"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2577
356 #: src/virt-viewer-app.c:2829
369357 #, c-format
370358 msgid "Invalid kiosk-quit argument: %s"
371359 msgstr "Невалиден kiosk-quit аргумент: %s"
372360
373 #: ../src/virt-viewer-app.c:2588
361 #: src/virt-viewer-app.c:2840
374362 msgid "Display version information"
375363 msgstr "Показва информация за версията"
376364
377 #: ../src/virt-viewer-app.c:2590
365 #: src/virt-viewer-app.c:2842
378366 msgid "Zoom level of window, in percentage"
379367 msgstr "Размер на прозореца в проценти"
380368
381 #: ../src/virt-viewer-app.c:2592
369 #: src/virt-viewer-app.c:2844
382370 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
383371 msgstr ""
384372
385 #: ../src/virt-viewer-app.c:2594
373 #: src/virt-viewer-app.c:2846
386374 msgid "Customise hotkeys"
387375 msgstr "Настройка на клавишни комбинации"
388376
389 #: ../src/virt-viewer-app.c:2596
377 #: src/virt-viewer-app.c:2848
390378 msgid "Enable kiosk mode"
391379 msgstr "Разрешаване на kiosk режим"
392380
393 #: ../src/virt-viewer-app.c:2598
381 #: src/virt-viewer-app.c:2850
394382 msgid "Quit on given condition in kiosk mode"
395383 msgstr "Изход при дадено състояние в kiosk режим"
396384
397 #: ../src/virt-viewer-app.c:2598
385 #: src/virt-viewer-app.c:2850
398386 msgid "<never|on-disconnect>"
399387 msgstr "<never|on-disconnect>"
400388
401 #: ../src/virt-viewer-app.c:2600
389 #: src/virt-viewer-app.c:2852
402390 msgid "Display verbose information"
403391 msgstr "Показва по-подробна информация"
404392
405 #: ../src/virt-viewer-app.c:2602
393 #: src/virt-viewer-app.c:2854
406394 msgid "Display debugging information"
407395 msgstr "Показва информация за отстраняване на грешки"
408396
409 #: ../src/virt-viewer-auth.c:89
397 #: src/virt-viewer-auth.c:89
410398 #, c-format
411399 msgid ""
412400 "Authentication is required for the %s connection to:\n"
415403 "\n"
416404 msgstr ""
417405
418 #: ../src/virt-viewer-auth.c:93
406 #: src/virt-viewer-auth.c:93
419407 #, c-format
420408 msgid "Authentication is required for the %s connection:\n"
421409 msgstr ""
422410
423 #.
424 #. * Local variables:
425 #. * c-indent-level: 4
426 #. * c-basic-offset: 4
427 #. * indent-tabs-mode: nil
428 #. * End:
429 #.
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
411 #: src/resources/ui/virt-viewer-auth.ui:7
431412 msgid "Authentication required"
432413 msgstr "Изисква се удостоверяване"
433414
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
415 #: src/resources/ui/virt-viewer-auth.ui:42
435416 msgid "_OK"
436417 msgstr ""
437418
438 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
439 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
440 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
419 #: src/resources/ui/virt-viewer-auth.ui:71
420 #: src/resources/ui/virt-viewer-guest-details.ui:82
421 #: src/resources/ui/virt-viewer-guest-details.ui:96
422 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
441423 msgid "label"
442424 msgstr "етикет"
443425
444 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
426 #: src/resources/ui/virt-viewer-auth.ui:93
445427 msgid "Password:"
446428 msgstr "Парола:"
447429
448 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
430 #: src/resources/ui/virt-viewer-auth.ui:105
449431 msgid "Username:"
450432 msgstr "Потребител:"
451433
452 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
434 #: src/resources/ui/virt-viewer-auth.ui:137
453435 msgid "Show password"
454436 msgstr ""
455437
456 #: ../src/virt-viewer-display-vnc.c:134
438 #: src/virt-viewer-display-vnc.c:130
457439 msgid "VNC does not provide GUID"
458440 msgstr ""
459441
460 #: ../src/virt-viewer-file-transfer-dialog.c:128
442 #: src/virt-viewer-display-vte.c:181
443 msgid "Console support is compiled out!"
444 msgstr ""
445
446 #: src/virt-viewer-file-transfer-dialog.c:124
461447 msgid "File Transfers"
462448 msgstr ""
463449
464 #: ../src/virt-viewer-file-transfer-dialog.c:154
450 #: src/virt-viewer-file-transfer-dialog.c:150
465451 msgid "Transferring 1 file..."
466452 msgstr ""
467453
468 #: ../src/virt-viewer-file-transfer-dialog.c:156
469 #, c-format
470 msgid "Transferring %d file of %d..."
471 msgid_plural "Transferring %d files of %d..."
454 #: src/virt-viewer-file-transfer-dialog.c:152
455 #, c-format
456 msgid "Transferring %u file of %u..."
457 msgid_plural "Transferring %u files of %u..."
472458 msgstr[0] ""
473
474 #: ../src/virt-viewer-file-transfer-dialog.c:228
475 #, c-format
476 msgid "An error caused the following file transfers to fail:%s"
477 msgstr ""
478
479 #: ../src/virt-viewer-main.c:38
459 msgstr[1] ""
460
461 #: src/virt-viewer-file-transfer-dialog.c:225
462 msgid "An error caused the following file transfers to fail:"
463 msgstr ""
464
465 #: src/virt-viewer-main.c:38
480466 msgid "Virt Viewer"
481467 msgstr "Вирт наблюдател"
482468
483 #: ../src/virt-viewer-session-spice.c:704
469 #: src/virt-viewer-session-spice.c:731
484470 msgid "Invalid password"
485471 msgstr ""
486472
487 #. Create the widgets
488 #: ../src/virt-viewer-session-spice.c:802
473 #: src/virt-viewer-session-spice.c:829
489474 msgid "Select USB devices for redirection"
490475 msgstr "Изберете USB устройства за пренасочване"
491476
492 #: ../src/virt-viewer-session-spice.c:804
493 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
477 #: src/virt-viewer-session-spice.c:831
478 #: src/resources/ui/virt-viewer-guest-details.ui:23
494479 msgid "_Close"
495480 msgstr ""
496481
497 #: ../src/virt-viewer-session-vnc.c:162
498 #, c-format
499 msgid "Unsupported authentication type %d"
500 msgstr "Не се поддържа удостоверяване тип %d"
501
502 #: ../src/virt-viewer-vm-connection.c:64
482 #: src/virt-viewer-session-spice.c:1019
483 msgid "Serial"
484 msgstr ""
485
486 #: src/virt-viewer-session-spice.c:1021
487 msgid "QEMU human monitor"
488 msgstr ""
489
490 #: src/virt-viewer-session-spice.c:1023
491 msgid "QEMU debug console"
492 msgstr ""
493
494 #: src/virt-viewer-session-vnc.c:158
495 #, c-format
496 msgid "Unsupported authentication type %u"
497 msgstr ""
498
499 #: src/virt-viewer-vm-connection.c:64
503500 msgid "No running virtual machine found"
504501 msgstr ""
505502
506 #: ../src/virt-viewer-vm-connection.c:93
503 #: src/virt-viewer-vm-connection.c:93
507504 msgid "No virtual machine was chosen"
508505 msgstr ""
509506
510 #: ../src/virt-viewer-window.c:544
507 #: src/virt-viewer-window.c:621
511508 msgid "Ctrl+Alt+_Del"
512509 msgstr "Ctrl+Alt+_Del"
513510
514 #: ../src/virt-viewer-window.c:545
511 #: src/virt-viewer-window.c:622
515512 msgid "Ctrl+Alt+_Backspace"
516513 msgstr "Ctrl+Alt+_Backspace"
517514
518 #: ../src/virt-viewer-window.c:547
515 #: src/virt-viewer-window.c:624
519516 msgid "Ctrl+Alt+F_1"
520517 msgstr "Ctrl+Alt+F_1"
521518
522 #: ../src/virt-viewer-window.c:548
519 #: src/virt-viewer-window.c:625
523520 msgid "Ctrl+Alt+F_2"
524521 msgstr "Ctrl+Alt+F_2"
525522
526 #: ../src/virt-viewer-window.c:549
523 #: src/virt-viewer-window.c:626
527524 msgid "Ctrl+Alt+F_3"
528525 msgstr "Ctrl+Alt+F_3"
529526
530 #: ../src/virt-viewer-window.c:550
527 #: src/virt-viewer-window.c:627
531528 msgid "Ctrl+Alt+F_4"
532529 msgstr "Ctrl+Alt+F_4"
533530
534 #: ../src/virt-viewer-window.c:551
531 #: src/virt-viewer-window.c:628
535532 msgid "Ctrl+Alt+F_5"
536533 msgstr "Ctrl+Alt+F_5"
537534
538 #: ../src/virt-viewer-window.c:552
535 #: src/virt-viewer-window.c:629
539536 msgid "Ctrl+Alt+F_6"
540537 msgstr "Ctrl+Alt+F_6"
541538
542 #: ../src/virt-viewer-window.c:553
539 #: src/virt-viewer-window.c:630
543540 msgid "Ctrl+Alt+F_7"
544541 msgstr "Ctrl+Alt+F_7"
545542
546 #: ../src/virt-viewer-window.c:554
543 #: src/virt-viewer-window.c:631
547544 msgid "Ctrl+Alt+F_8"
548545 msgstr "Ctrl+Alt+F_8"
549546
550 #: ../src/virt-viewer-window.c:555
547 #: src/virt-viewer-window.c:632
551548 msgid "Ctrl+Alt+F_9"
552549 msgstr "Ctrl+Alt+F_9"
553550
554 #: ../src/virt-viewer-window.c:556
551 #: src/virt-viewer-window.c:633
555552 msgid "Ctrl+Alt+F1_0"
556553 msgstr "Ctrl+Alt+F1_0"
557554
558 #: ../src/virt-viewer-window.c:557
555 #: src/virt-viewer-window.c:634
559556 msgid "Ctrl+Alt+F11"
560557 msgstr "Ctrl+Alt+F11"
561558
562 #: ../src/virt-viewer-window.c:558
559 #: src/virt-viewer-window.c:635
563560 msgid "Ctrl+Alt+F12"
564561 msgstr "Ctrl+Alt+F12"
565562
566 #: ../src/virt-viewer-window.c:953
563 #: src/virt-viewer-window.c:637
564 msgid "_PrintScreen"
565 msgstr ""
566
567 #: src/virt-viewer-window.c:1030
567568 #, c-format
568569 msgid "Unable to determine image format for file '%s'"
569570 msgstr ""
570571
571 #: ../src/virt-viewer-window.c:980
572 #: src/virt-viewer-window.c:1053
573 msgid "Save screenshot"
574 msgstr ""
575
576 #: src/virt-viewer-window.c:1057
572577 msgid "_Save"
573578 msgstr ""
574579
575 #: ../src/virt-viewer-window.c:988
580 #: src/virt-viewer-window.c:1065
576581 msgid "Screenshot.png"
577582 msgstr ""
578583
579 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
584 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
580585 msgid "Unknown"
581586 msgstr ""
582587
583 #: ../src/virt-viewer-window.c:1152
588 #: src/virt-viewer-window.c:1237
584589 msgid "Unable to connnect to oVirt"
585590 msgstr ""
586591
587 #: ../src/virt-viewer-window.c:1175
592 #: src/virt-viewer-window.c:1260
588593 msgid "Disconnect"
589594 msgstr "Изключване"
590595
591 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
596 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
592597 msgid "USB device selection"
593598 msgstr "Избор на USB устройства"
594599
595 #: ../src/virt-viewer-window.c:1193
600 #: src/virt-viewer-window.c:1278
596601 msgid "Send key combination"
597602 msgstr "Изпращане на клавишна комбинация"
598603
599 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
604 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
600605 msgid "Leave fullscreen"
601606 msgstr "Изход от Цял екран"
602607
603 #: ../src/virt-viewer-window.c:1279
608 #: src/virt-viewer-window.c:1364
604609 msgid "Ctrl+Alt"
605610 msgstr "Ctrl+Alt"
606611
607 #: ../src/virt-viewer-window.c:1282
612 #: src/virt-viewer-window.c:1367
608613 #, c-format
609614 msgid "(Press %s to release pointer)"
610615 msgstr "(Натиснете %s за освобождаване на показалеца)"
611616
612 #. translators:
613 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
614 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
615 #.
616 #: ../src/virt-viewer-window.c:1293
617 #: src/virt-viewer-window.c:1378
617618 #, c-format
618619 msgid "%s%s%s - %s"
619620 msgstr "%s%s%s - %s"
620621
621 #. translators: <space>
622 #: ../src/virt-viewer-window.c:1297
622 #: src/virt-viewer-window.c:1382
623623 msgid " "
624624 msgstr " "
625625
626 #: ../src/virt-viewer-file.c:862
626 #: src/virt-viewer-file.c:875
627627 #, c-format
628628 msgid ""
629629 "At least %s version %s is required to setup this connection, see %s for "
630630 "details"
631631 msgstr ""
632632
633 #: ../src/virt-viewer-file.c:870
633 #: src/virt-viewer-file.c:883
634634 #, c-format
635635 msgid "At least %s version %s is required to setup this connection"
636636 msgstr "Изисква се %s поне версия %s за създаване на тази връзка"
637637
638 #: ../src/virt-viewer.c:133
638 #: src/virt-viewer.c:131
639639 msgid "Direct connection with no automatic tunnels"
640640 msgstr "Директна връзка без автоматични тунели"
641641
642 #: ../src/virt-viewer.c:135
642 #: src/virt-viewer.c:133
643643 msgid "Attach to the local display using libvirt"
644644 msgstr "Прилагане към локалния дисплей посредством libvirt"
645645
646 #: ../src/virt-viewer.c:137
646 #: src/virt-viewer.c:135
647647 msgid "Connect to hypervisor"
648648 msgstr "Свързване към хипервайзор"
649649
650 #: ../src/virt-viewer.c:139
650 #: src/virt-viewer.c:137
651651 msgid "Wait for domain to start"
652652 msgstr "Изчаквам стартирането на виртуализиращата среда"
653653
654 #: ../src/virt-viewer.c:141
654 #: src/virt-viewer.c:139
655655 msgid "Reconnect to domain upon restart"
656656 msgstr "Повторно включване към виртуализиращата среда при рестартиране"
657657
658 #: ../src/virt-viewer.c:143
658 #: src/virt-viewer.c:141
659659 msgid "Select the virtual machine only by its name"
660660 msgstr ""
661661
662 #: ../src/virt-viewer.c:145
662 #: src/virt-viewer.c:143
663663 msgid "Select the virtual machine only by its id"
664664 msgstr ""
665665
666 #: ../src/virt-viewer.c:147
666 #: src/virt-viewer.c:145
667667 msgid "Select the virtual machine only by its uuid"
668668 msgstr ""
669669
670 #: ../src/virt-viewer.c:154
670 #: src/virt-viewer.c:152
671671 msgid "Virtual machine graphical console"
672672 msgstr ""
673673
674 #: ../src/virt-viewer.c:173
674 #: src/virt-viewer.c:171
675675 #, c-format
676676 msgid ""
677677 "\n"
679679 "\n"
680680 msgstr ""
681681
682 #: ../src/virt-viewer.c:185
682 #: src/virt-viewer.c:183
683683 #, c-format
684684 msgid ""
685685 "\n"
687687 "\n"
688688 msgstr ""
689689
690 #: ../src/virt-viewer.c:300
690 #: src/virt-viewer.c:296
691691 msgid "Waiting for guest domain to re-start"
692692 msgstr "Изчакване виртуализиращата среда на госта да се рестартира"
693693
694 #: ../src/virt-viewer.c:554
694 #: src/virt-viewer.c:550
695695 #, c-format
696696 msgid "Cannot determine the graphic type for the guest %s"
697697 msgstr "Не мога да определя графичния тип за госта %s"
698698
699 #: ../src/virt-viewer.c:603
699 #: src/virt-viewer.c:599
700700 #, c-format
701701 msgid "Cannot determine the host for the guest %s"
702702 msgstr "Не мога да определя хоста за госта %s"
703703
704 #: ../src/virt-viewer.c:631
704 #: src/virt-viewer.c:627
705705 #, c-format
706706 msgid "Guest '%s' is not reachable"
707707 msgstr ""
708708
709 #: ../src/virt-viewer.c:860
709 #: src/virt-viewer.c:856
710710 #, c-format
711711 msgid "Virtual machine %s is not running"
712712 msgstr ""
713713
714 #: ../src/virt-viewer.c:884
714 #: src/virt-viewer.c:881
715715 msgid "Waiting for libvirt to start"
716716 msgstr "Изчаквам стартирането на libvirt"
717717
718 #: ../src/virt-viewer.c:888
718 #: src/virt-viewer.c:885
719719 msgid "Finding guest domain"
720720 msgstr "Търсене на виртуализиращата среда на госта"
721721
722 #: ../src/virt-viewer.c:892
722 #: src/virt-viewer.c:889
723723 msgid "Waiting for guest domain to be created"
724724 msgstr "Изчакване виртуализиращата среда да бъде създадена"
725725
726 #: ../src/virt-viewer.c:918
726 #: src/virt-viewer.c:921
727727 msgid "Checking guest domain status"
728728 msgstr "Проверка състоянието на виртуализиращата среда"
729729
730 #: ../src/virt-viewer.c:921
730 #: src/virt-viewer.c:924
731731 msgid "Cannot get guest state"
732732 msgstr ""
733733
734 #: ../src/virt-viewer.c:927
734 #: src/virt-viewer.c:930
735735 msgid "Waiting for guest domain to start"
736736 msgstr "Изчакване виртуализиращата среда на госта да бъде стартирана"
737737
738 #: ../src/virt-viewer.c:1040
738 #: src/virt-viewer.c:1044
739739 #, c-format
740740 msgid "Unable to connect to libvirt with URI: %s."
741741 msgstr ""
742742
743 #: ../src/virt-viewer.c:1041
743 #: src/virt-viewer.c:1045
744744 msgid "[none]"
745745 msgstr "[нищо]"
746746
747 #: ../src/virt-viewer.c:1048
747 #: src/virt-viewer.c:1052
748748 msgid "Authentication failed."
749749 msgstr ""
750750
751 #: ../src/virt-viewer.c:1108
751 #: src/virt-viewer.c:1112
752752 msgid "Failed to connect: "
753753 msgstr ""
754754
755 #.
756 #. * Local variables:
757 #. * c-indent-level: 4
758 #. * c-basic-offset: 4
759 #. * indent-tabs-mode: nil
760 #. * End:
761 #.
762 #: ../src/resources/ui/virt-viewer.ui.h:1
755 #: src/resources/ui/virt-viewer.ui:28
763756 msgid "_File"
764757 msgstr "_Файл"
765758
766 #: ../src/resources/ui/virt-viewer.ui.h:2
759 #: src/resources/ui/virt-viewer.ui:41
767760 msgid "_Screenshot"
768761 msgstr ""
769762
770 #: ../src/resources/ui/virt-viewer.ui.h:3
763 #: src/resources/ui/virt-viewer.ui:52
771764 msgid "_USB device selection"
772765 msgstr ""
773766
774 #: ../src/resources/ui/virt-viewer.ui.h:4
767 #: src/resources/ui/virt-viewer.ui:62
775768 msgid "Smartcard insertion"
776769 msgstr "Поставяне на смарткарта"
777770
778 #: ../src/resources/ui/virt-viewer.ui.h:5
771 #: src/resources/ui/virt-viewer.ui:72
779772 msgid "Smartcard removal"
780773 msgstr "Премахване на смарткарта"
781774
782 #: ../src/resources/ui/virt-viewer.ui.h:6
775 #: src/resources/ui/virt-viewer.ui:80
783776 msgid "_Change CD"
784777 msgstr ""
785778
786 #: ../src/resources/ui/virt-viewer.ui.h:7
779 #: src/resources/ui/virt-viewer.ui:90
787780 msgid "_Preferences"
788781 msgstr ""
789782
790 #: ../src/resources/ui/virt-viewer.ui.h:8
783 #: src/resources/ui/virt-viewer.ui:103
791784 msgid "_Quit"
792785 msgstr ""
793786
794 #: ../src/resources/ui/virt-viewer.ui.h:9
787 #: src/resources/ui/virt-viewer.ui:119
788 msgid "_Machine"
789 msgstr ""
790
791 #: src/resources/ui/virt-viewer.ui:129
792 msgid "_Pause"
793 msgstr ""
794
795 #: src/resources/ui/virt-viewer.ui:144
796 msgid "_Reset"
797 msgstr ""
798
799 #: src/resources/ui/virt-viewer.ui:153
800 msgid "_Power down"
801 msgstr ""
802
803 #: src/resources/ui/virt-viewer.ui:167
795804 msgid "_View"
796805 msgstr "_Изглед"
797806
798 #: ../src/resources/ui/virt-viewer.ui.h:10
807 #: src/resources/ui/virt-viewer.ui:180
799808 msgid "_Full screen"
800809 msgstr ""
801810
802 #: ../src/resources/ui/virt-viewer.ui.h:11
811 #: src/resources/ui/virt-viewer.ui:191
803812 msgid "_Zoom"
804813 msgstr "_Мащабиране"
805814
806 #: ../src/resources/ui/virt-viewer.ui.h:12
815 #: src/resources/ui/virt-viewer.ui:201
807816 msgid "Zoom _In"
808817 msgstr ""
809818
810 #: ../src/resources/ui/virt-viewer.ui.h:13
819 #: src/resources/ui/virt-viewer.ui:212
811820 msgid "Zoom _Out"
812821 msgstr ""
813822
814 #: ../src/resources/ui/virt-viewer.ui.h:14
823 #: src/resources/ui/virt-viewer.ui:229
815824 msgid "_Normal Size"
816825 msgstr ""
817826
818 #: ../src/resources/ui/virt-viewer.ui.h:15
827 #: src/resources/ui/virt-viewer.ui:246
819828 msgid "_Displays"
820829 msgstr ""
821830
822 #: ../src/resources/ui/virt-viewer.ui.h:16
831 #: src/resources/ui/virt-viewer.ui:255
823832 msgid "Release cursor"
824833 msgstr "Освобождаване на показалеца"
825834
826 #: ../src/resources/ui/virt-viewer.ui.h:17
835 #: src/resources/ui/virt-viewer.ui:270
827836 msgid "_Send key"
828837 msgstr "Изпрати _клавиш"
829838
830 #: ../src/resources/ui/virt-viewer.ui.h:18
839 #: src/resources/ui/virt-viewer.ui:279
831840 msgid "_Help"
832841 msgstr "_Помощ"
833842
834 #: ../src/resources/ui/virt-viewer.ui.h:19
843 #: src/resources/ui/virt-viewer.ui:290
835844 msgid "_Guest Details"
836845 msgstr ""
837846
838 #: ../src/resources/ui/virt-viewer.ui.h:20
847 #: src/resources/ui/virt-viewer.ui:297
839848 msgid "_About"
840849 msgstr ""
841850
842 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
851 #: src/resources/ui/virt-viewer-guest-details.ui:7
843852 msgid "Guest Details"
844853 msgstr ""
845854
846 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
855 #: src/resources/ui/virt-viewer-guest-details.ui:56
847856 msgid "Name:"
848857 msgstr ""
849858
850 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
859 #: src/resources/ui/virt-viewer-guest-details.ui:68
851860 msgid "GUID:"
852861 msgstr ""
853862
854 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
863 #: src/resources/ui/virt-viewer-vm-connection.ui:7
855864 msgid "Choose a virtual machine"
856865 msgstr ""
857866
858 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
867 #: src/resources/ui/virt-viewer-vm-connection.ui:96
859868 msgid "Available virtual machines"
860869 msgstr ""
861870
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
871 #: src/resources/ui/virt-viewer-preferences.ui:8
863872 msgid "Preferences"
864873 msgstr ""
865874
866 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
875 #: src/resources/ui/virt-viewer-preferences.ui:48
867876 msgid "Folder sharing"
868877 msgstr ""
869878
870 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
879 #: src/resources/ui/virt-viewer-preferences.ui:70
871880 msgid "Share folder"
872881 msgstr ""
873882
874 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
883 #: src/resources/ui/virt-viewer-preferences.ui:82
875884 msgid "Read-only"
876885 msgstr ""
877886
878 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
887 #: src/resources/ui/virt-viewer-preferences.ui:96
888 msgid "Share clipboard"
889 msgstr ""
890
891 #: src/resources/ui/virt-viewer-preferences.ui:132
879892 msgid "Spice"
880893 msgstr ""
894
895 #~ msgid "virt-manager.org"
896 #~ msgstr "virt-manager.org"
Binary diff not shown
+269
-253
po/bn.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1010 # runa <runabh@gmail.com>, 2012
1111 msgid ""
1212 msgstr ""
13 "Project-Id-Version: PACKAGE VERSION\n"
14 "Report-Msgid-Bugs-To: \n"
15 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
16 "PO-Revision-Date: 2015-02-20 08:08-0500\n"
13 "Project-Id-Version: virt-viewer 9.0\n"
14 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
15 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
16 "PO-Revision-Date: 2015-02-20 08:08+0000\n"
1717 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1818 "Language-Team: Bengali (http://www.transifex.com/projects/p/virt-viewer/"
1919 "language/bn/)\n"
2222 "Content-Type: text/plain; charset=UTF-8\n"
2323 "Content-Transfer-Encoding: 8bit\n"
2424 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
25 "X-Generator: Zanata 3.9.6\n"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:1
28 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
25 "X-Generator: Zanata 4.6.2\n"
26
27 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
28 #: src/remote-viewer-main.c:39
2929 msgid "Remote Viewer"
3030 msgstr ""
3131
32 #: ../data/remote-viewer.appdata.xml.in.h:2
32 #: data/remote-viewer.appdata.xml.in:7
3333 msgid "Remotely access virtual machines"
3434 msgstr ""
3535
36 #: ../data/remote-viewer.appdata.xml.in.h:3
36 #: data/remote-viewer.appdata.xml.in:9
3737 msgid ""
3838 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3939 "time it supports guest OS using the VNC or SPICE protocols. Further "
4242 "using SSL/TLS encryption."
4343 msgstr ""
4444
45 #: ../data/remote-viewer.desktop.in.h:2
45 #: data/remote-viewer.desktop.in:4
4646 msgid "Access remote desktops"
4747 msgstr ""
4848
49 #: ../data/virt-viewer-mime.xml.in.h:1
50 msgid "Virt-Viewer connection file"
51 msgstr ""
52
53 #: ../src/remote-viewer-iso-list-dialog.c:160
49 #: src/remote-viewer-iso-list-dialog.c:156
5450 msgid "Failed to fetch CD names"
5551 msgstr ""
5652
57 #: ../src/remote-viewer-iso-list-dialog.c:212
53 #: src/remote-viewer-iso-list-dialog.c:205
5854 msgid "<b>Loading...</b>"
5955 msgstr ""
6056
61 #: ../src/remote-viewer-iso-list-dialog.c:285
57 #: src/remote-viewer-iso-list-dialog.c:276
6258 msgid "Refresh"
6359 msgstr ""
6460
65 #: ../src/remote-viewer-iso-list-dialog.c:286
61 #: src/remote-viewer-iso-list-dialog.c:277
6662 msgid "Close"
6763 msgstr ""
6864
69 #: ../src/remote-viewer-iso-list-dialog.c:306
65 #: src/remote-viewer-iso-list-dialog.c:297
7066 msgid "Unspecified error"
7167 msgstr ""
7268
73 #: ../src/remote-viewer-iso-list-dialog.c:328
69 #: src/remote-viewer-iso-list-dialog.c:318
7470 msgid "Failed to change CD"
7571 msgstr ""
7672
77 #: ../src/remote-viewer-iso-list-dialog.c:380
73 #: src/remote-viewer-iso-list-dialog.c:370
7874 msgid "Change CD"
7975 msgstr ""
8076
81 #: ../src/remote-viewer.c:118
77 #: src/remote-viewer.c:116
8278 msgid "Set window title"
8379 msgstr ""
8480
85 #: ../src/remote-viewer.c:125
81 #: src/remote-viewer.c:123
8682 msgid "Remote viewer client"
8783 msgstr ""
8884
89 #: ../src/remote-viewer.c:150
90 #, c-format
85 #: src/remote-viewer.c:148
9186 msgid ""
9287 "\n"
9388 "Error: can't handle multiple URIs\n"
9489 "\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
92 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9893 #, c-format
9994 msgid "Run '%s --help' to see a full list of available command line options\n"
10095 msgstr ""
10196
102 #: ../src/remote-viewer.c:435
97 #: src/remote-viewer.c:429
10398 msgid "failed to parse ovirt uri"
10499 msgstr ""
105100
106 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
101 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
107102 msgid "Authentication was cancelled"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:480
105 #: src/remote-viewer.c:472
111106 #, c-format
112107 msgid "oVirt VM %s is not running"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:494
110 #: src/remote-viewer.c:486
116111 #, c-format
117112 msgid "oVirt VM %s has no display"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:520
115 #: src/remote-viewer.c:512
121116 #, c-format
122117 msgid "oVirt VM %s has no host information"
123118 msgstr ""
124119
125 #: ../src/remote-viewer.c:531
126 #, c-format
127 msgid "oVirt VM %s has unknown display type: %d"
128 msgstr ""
129
130 #: ../src/remote-viewer.c:713
120 #: src/remote-viewer.c:523
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %u"
123 msgstr ""
124
125 #: src/remote-viewer.c:690
126 msgid "Couldn't open oVirt session: "
127 msgstr ""
128
129 #: src/remote-viewer.c:718
131130 msgid "Failed to initiate connection"
132131 msgstr "সংযোগ আরম্ভ করতে ব্যর্থ"
133132
134 #: ../src/remote-viewer.c:742
133 #: src/remote-viewer.c:747
135134 msgid "No connection was chosen"
136135 msgstr ""
137136
138 #: ../src/remote-viewer.c:759
137 #: src/remote-viewer.c:764
139138 msgid "Failed to read stdin: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:776
141 #: src/remote-viewer.c:781
143142 #, c-format
144143 msgid "Invalid file %s: "
145144 msgstr ""
146145
147 #: ../src/remote-viewer.c:786
146 #: src/remote-viewer.c:791
148147 msgid "Cannot determine the connection type from URI"
149148 msgstr "URI থেকে সংযোগের ধরন নির্ধারণ করা সম্ভব নয়"
150149
151 #: ../src/remote-viewer.c:792
152 msgid "Couldn't open oVirt session: "
153 msgstr ""
154
155 #: ../src/remote-viewer.c:815
150 #: src/remote-viewer.c:810
156151 #, c-format
157152 msgid "Unable to connect: %s"
158153 msgstr ""
159154
160 #.
161 #. * Local variables:
162 #. * c-indent-level: 4
163 #. * c-basic-offset: 4
164 #. * indent-tabs-mode: nil
165 #. * End:
166 #.
167 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
155 #: src/resources/ui/remote-viewer-connect.ui:6
168156 msgid "Connection details"
169157 msgstr ""
170158
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
159 #: src/resources/ui/remote-viewer-connect.ui:24
172160 msgid "Connection _Address"
173161 msgstr ""
174162
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
163 #: src/resources/ui/remote-viewer-connect.ui:54
176164 msgid "For example, spice://foo.example.org:5900"
177165 msgstr ""
178166
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
167 #: src/resources/ui/remote-viewer-connect.ui:78
180168 msgid "Recent connections"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
184 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
186 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
171 #: src/resources/ui/remote-viewer-connect.ui:120
172 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
173 #: src/resources/ui/virt-viewer-vm-connection.ui:24
174 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
187175 msgid "_Cancel"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
191 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
178 #: src/resources/ui/remote-viewer-connect.ui:134
179 #: src/resources/ui/virt-viewer-vm-connection.ui:38
192180 msgid "C_onnect"
193181 msgstr ""
194182
195 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
183 #: src/resources/ui/remote-viewer-iso-list.ui:28
196184 msgid "Loading..."
197185 msgstr ""
198186
199 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
187 #: src/resources/ui/remote-viewer-iso-list.ui:78
200188 msgid "Select ISO"
201189 msgstr ""
202190
203 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
191 #: src/resources/ui/remote-viewer-iso-list.ui:116
204192 msgid "Selected"
205193 msgstr ""
206194
207 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
208 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
195 #: src/resources/ui/remote-viewer-iso-list.ui:129
196 #: src/resources/ui/virt-viewer-vm-connection.ui:72
209197 msgid "Name"
210198 msgstr ""
211199
212 #: ../src/resources/ui/virt-viewer-about.ui.h:1
200 #: src/resources/ui/virt-viewer-about.ui:7
213201 msgid "About Virt-Viewer"
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:2
204 #: src/resources/ui/virt-viewer-about.ui:16
217205 msgid ""
218206 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219207 "Copyright (C) 2007-2014 Red Hat, Inc."
220208 msgstr ""
221209
222 #: ../src/resources/ui/virt-viewer-about.ui.h:4
210 #: src/resources/ui/virt-viewer-about.ui:18
223211 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
224212 msgstr "GTK-VNC, SPICE-GTK ও libvirt সহযোগে নির্মিত একটি দূরবর্তী ডেস্কটপ"
225213
226 #: ../src/resources/ui/virt-viewer-about.ui.h:5
227 msgid "virt-manager.org"
228 msgstr "virt-manager.org"
229
230 #: ../src/resources/ui/virt-viewer-about.ui.h:6
214 #: src/resources/ui/virt-viewer-about.ui:20
215 msgid "gitlab.com/virt-viewer/virt-viewer"
216 msgstr ""
217
218 #: src/resources/ui/virt-viewer-about.ui:21
231219 msgid ""
232220 "This program is free software; you can redistribute it and/or modify\n"
233221 "it under the terms of the GNU General Public License as published by\n"
259247 "Inc., \n"
260248 "59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
261249
262 #: ../src/resources/ui/virt-viewer-about.ui.h:20
250 #: src/resources/ui/virt-viewer-about.ui:38
263251 msgid "The Fedora Translation Team"
264252 msgstr "Fedora-র অনুবাদকদের দল"
265253
266 #: ../src/virt-viewer-app.c:459
254 #: src/virt-viewer-app.c:594
267255 msgid "Do you want to close the session?"
268256 msgstr ""
269257
270 #: ../src/virt-viewer-app.c:461
258 #: src/virt-viewer-app.c:596
271259 msgid "Do not ask me again"
272260 msgstr ""
273261
274 #: ../src/virt-viewer-app.c:655
262 #: src/virt-viewer-app.c:767
275263 #, c-format
276264 msgid "Address is too long for unix socket_path: %s"
277265 msgstr ""
278266
279 #: ../src/virt-viewer-app.c:665
267 #: src/virt-viewer-app.c:777
280268 #, c-format
281269 msgid "Creating unix socket failed: %s"
282270 msgstr ""
283271
284 #: ../src/virt-viewer-app.c:671
272 #: src/virt-viewer-app.c:783
285273 #, c-format
286274 msgid "Connecting to unix socket failed: %s"
287275 msgstr ""
288276
289 #: ../src/virt-viewer-app.c:955
277 #: src/virt-viewer-app.c:1077
290278 #, c-format
291279 msgid "Waiting for display %d..."
292280 msgstr "%d প্রদর্শনের জন্য অপেক্ষা করা হচ্ছে..."
293281
294 #: ../src/virt-viewer-app.c:1062
282 #: src/virt-viewer-app.c:1193
295283 #, c-format
296284 msgid "Unsupported graphic type '%s'"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1146
287 #: src/virt-viewer-app.c:1277
300288 msgid "Connect to ssh failed."
301289 msgstr "ssh-র সাথে সংযোগ করতে ব্যর্থ।"
302290
303 #: ../src/virt-viewer-app.c:1161
291 #: src/virt-viewer-app.c:1292
304292 #, c-format
305293 msgid "Can't connect to channel: %s"
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1163
296 #: src/virt-viewer-app.c:1294
309297 msgid "only SSH or unix socket connection supported."
310298 msgstr ""
311299
312 #: ../src/virt-viewer-app.c:1176
300 #: src/virt-viewer-app.c:1311
313301 msgid "Connect to channel unsupported."
314302 msgstr "সমর্থন বিনা চ্যানেলের সাথে সংযোগ করা হবে।"
315303
316 #: ../src/virt-viewer-app.c:1238
304 #: src/virt-viewer-app.c:1376
317305 msgid "Display can only be attached through libvirt with --attach"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1263
308 #: src/virt-viewer-app.c:1401
321309 msgid "Connecting to graphic server"
322310 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হচ্ছে"
323311
324 #: ../src/virt-viewer-app.c:1362
312 #: src/virt-viewer-app.c:1500
325313 msgid "Guest domain has shutdown"
326314 msgstr "গেস্ট ডোমেইন বন্ধ হয়েছে"
327315
328 #: ../src/virt-viewer-app.c:1423
316 #: src/virt-viewer-app.c:1561
329317 msgid "Connected to graphic server"
330318 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হয়েছে"
331319
332 #: ../src/virt-viewer-app.c:1452
320 #: src/virt-viewer-app.c:1590
333321 #, c-format
334322 msgid "Unable to connect to the graphic server %s"
335323 msgstr "%s গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ"
336324
337 #: ../src/virt-viewer-app.c:1478
325 #: src/virt-viewer-app.c:1616
338326 #, c-format
339327 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
340328 msgstr ""
341329
342 #: ../src/virt-viewer-app.c:1492
330 #: src/virt-viewer-app.c:1630
343331 #, c-format
344332 msgid "Unable to authenticate with remote desktop server: %s"
345333 msgstr "দূরবর্তী ডেস্কটপ সার্ভারের সাথে অনুমোদন করতে ব্যর্থ: %s"
346334
347 #: ../src/virt-viewer-app.c:1500
335 #: src/virt-viewer-app.c:1638
348336 #, c-format
349337 msgid "USB redirection error: %s"
350338 msgstr "USB পুনর্নির্দেশে সমস্যা: %s"
351339
352 #: ../src/virt-viewer-app.c:1834
340 #: src/virt-viewer-app.c:2026
353341 #, c-format
354342 msgid "Zoom level must be within %d-%d\n"
355343 msgstr ""
356344
357 #: ../src/virt-viewer-app.c:1887
345 #: src/virt-viewer-app.c:2081
358346 #, c-format
359347 msgid "%s\n"
360348 msgstr ""
361349
362 #: ../src/virt-viewer-app.c:1897
350 #: src/virt-viewer-app.c:2091
363351 #, c-format
364352 msgid "%s version %s"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2321
355 #: src/virt-viewer-app.c:2545
368356 #, c-format
369357 msgid "Display _%d"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2577
360 #: src/virt-viewer-app.c:2829
373361 #, c-format
374362 msgid "Invalid kiosk-quit argument: %s"
375363 msgstr ""
376364
377 #: ../src/virt-viewer-app.c:2588
365 #: src/virt-viewer-app.c:2840
378366 msgid "Display version information"
379367 msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
380368
381 #: ../src/virt-viewer-app.c:2590
369 #: src/virt-viewer-app.c:2842
382370 msgid "Zoom level of window, in percentage"
383371 msgstr "উইন্ডোর প্রদর্শনের মাপ, শতাংশে ব্যক্ত"
384372
385 #: ../src/virt-viewer-app.c:2592
373 #: src/virt-viewer-app.c:2844
386374 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
387375 msgstr ""
388376
389 #: ../src/virt-viewer-app.c:2594
377 #: src/virt-viewer-app.c:2846
390378 msgid "Customise hotkeys"
391379 msgstr ""
392380
393 #: ../src/virt-viewer-app.c:2596
381 #: src/virt-viewer-app.c:2848
394382 msgid "Enable kiosk mode"
395383 msgstr ""
396384
397 #: ../src/virt-viewer-app.c:2598
385 #: src/virt-viewer-app.c:2850
398386 msgid "Quit on given condition in kiosk mode"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-app.c:2598
389 #: src/virt-viewer-app.c:2850
402390 msgid "<never|on-disconnect>"
403391 msgstr ""
404392
405 #: ../src/virt-viewer-app.c:2600
393 #: src/virt-viewer-app.c:2852
406394 msgid "Display verbose information"
407395 msgstr "ভার্বোস তথ্য প্রদর্শন করা হবে"
408396
409 #: ../src/virt-viewer-app.c:2602
397 #: src/virt-viewer-app.c:2854
410398 msgid "Display debugging information"
411399 msgstr "ডিবাগ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
412400
413 #: ../src/virt-viewer-auth.c:89
401 #: src/virt-viewer-auth.c:89
414402 #, c-format
415403 msgid ""
416404 "Authentication is required for the %s connection to:\n"
419407 "\n"
420408 msgstr ""
421409
422 #: ../src/virt-viewer-auth.c:93
410 #: src/virt-viewer-auth.c:93
423411 #, c-format
424412 msgid "Authentication is required for the %s connection:\n"
425413 msgstr ""
426414
427 #.
428 #. * Local variables:
429 #. * c-indent-level: 4
430 #. * c-basic-offset: 4
431 #. * indent-tabs-mode: nil
432 #. * End:
433 #.
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
415 #: src/resources/ui/virt-viewer-auth.ui:7
435416 msgid "Authentication required"
436417 msgstr "অনুমোদন প্রয়োজন"
437418
438 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
419 #: src/resources/ui/virt-viewer-auth.ui:42
439420 msgid "_OK"
440421 msgstr ""
441422
442 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
443 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
444 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
423 #: src/resources/ui/virt-viewer-auth.ui:71
424 #: src/resources/ui/virt-viewer-guest-details.ui:82
425 #: src/resources/ui/virt-viewer-guest-details.ui:96
426 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
445427 msgid "label"
446428 msgstr "label"
447429
448 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
430 #: src/resources/ui/virt-viewer-auth.ui:93
449431 msgid "Password:"
450432 msgstr "পাসওয়ার্ড:"
451433
452 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
434 #: src/resources/ui/virt-viewer-auth.ui:105
453435 msgid "Username:"
454436 msgstr "ব্যবহারকারীর নাম:"
455437
456 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
438 #: src/resources/ui/virt-viewer-auth.ui:137
457439 msgid "Show password"
458440 msgstr ""
459441
460 #: ../src/virt-viewer-display-vnc.c:134
442 #: src/virt-viewer-display-vnc.c:130
461443 msgid "VNC does not provide GUID"
462444 msgstr ""
463445
464 #: ../src/virt-viewer-file-transfer-dialog.c:128
446 #: src/virt-viewer-display-vte.c:181
447 msgid "Console support is compiled out!"
448 msgstr ""
449
450 #: src/virt-viewer-file-transfer-dialog.c:124
465451 msgid "File Transfers"
466452 msgstr ""
467453
468 #: ../src/virt-viewer-file-transfer-dialog.c:154
454 #: src/virt-viewer-file-transfer-dialog.c:150
469455 msgid "Transferring 1 file..."
470456 msgstr ""
471457
472 #: ../src/virt-viewer-file-transfer-dialog.c:156
473 #, c-format
474 msgid "Transferring %d file of %d..."
475 msgid_plural "Transferring %d files of %d..."
458 #: src/virt-viewer-file-transfer-dialog.c:152
459 #, c-format
460 msgid "Transferring %u file of %u..."
461 msgid_plural "Transferring %u files of %u..."
476462 msgstr[0] ""
477
478 #: ../src/virt-viewer-file-transfer-dialog.c:228
479 #, c-format
480 msgid "An error caused the following file transfers to fail:%s"
481 msgstr ""
482
483 #: ../src/virt-viewer-main.c:38
463 msgstr[1] ""
464
465 #: src/virt-viewer-file-transfer-dialog.c:225
466 msgid "An error caused the following file transfers to fail:"
467 msgstr ""
468
469 #: src/virt-viewer-main.c:38
484470 msgid "Virt Viewer"
485471 msgstr "Virt Viewer"
486472
487 #: ../src/virt-viewer-session-spice.c:704
473 #: src/virt-viewer-session-spice.c:731
488474 msgid "Invalid password"
489475 msgstr ""
490476
491 #. Create the widgets
492 #: ../src/virt-viewer-session-spice.c:802
477 #: src/virt-viewer-session-spice.c:829
493478 msgid "Select USB devices for redirection"
494479 msgstr "পুনর্নির্দেশের জন্য USB ডিভাইস নির্বাচন করুন"
495480
496 #: ../src/virt-viewer-session-spice.c:804
497 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
481 #: src/virt-viewer-session-spice.c:831
482 #: src/resources/ui/virt-viewer-guest-details.ui:23
498483 msgid "_Close"
499484 msgstr ""
500485
501 #: ../src/virt-viewer-session-vnc.c:162
502 #, c-format
503 msgid "Unsupported authentication type %d"
504 msgstr "%d ধরনের অনুমোদন সমর্থিত নয়"
505
506 #: ../src/virt-viewer-vm-connection.c:64
486 #: src/virt-viewer-session-spice.c:1019
487 msgid "Serial"
488 msgstr ""
489
490 #: src/virt-viewer-session-spice.c:1021
491 msgid "QEMU human monitor"
492 msgstr ""
493
494 #: src/virt-viewer-session-spice.c:1023
495 msgid "QEMU debug console"
496 msgstr ""
497
498 #: src/virt-viewer-session-vnc.c:158
499 #, c-format
500 msgid "Unsupported authentication type %u"
501 msgstr ""
502
503 #: src/virt-viewer-vm-connection.c:64
507504 msgid "No running virtual machine found"
508505 msgstr ""
509506
510 #: ../src/virt-viewer-vm-connection.c:93
507 #: src/virt-viewer-vm-connection.c:93
511508 msgid "No virtual machine was chosen"
512509 msgstr ""
513510
514 #: ../src/virt-viewer-window.c:544
511 #: src/virt-viewer-window.c:621
515512 msgid "Ctrl+Alt+_Del"
516513 msgstr "Ctrl+Alt+_Del"
517514
518 #: ../src/virt-viewer-window.c:545
515 #: src/virt-viewer-window.c:622
519516 msgid "Ctrl+Alt+_Backspace"
520517 msgstr "Ctrl+Alt+_Backspace"
521518
522 #: ../src/virt-viewer-window.c:547
519 #: src/virt-viewer-window.c:624
523520 msgid "Ctrl+Alt+F_1"
524521 msgstr "Ctrl+Alt+F_1"
525522
526 #: ../src/virt-viewer-window.c:548
523 #: src/virt-viewer-window.c:625
527524 msgid "Ctrl+Alt+F_2"
528525 msgstr "Ctrl+Alt+F_2"
529526
530 #: ../src/virt-viewer-window.c:549
527 #: src/virt-viewer-window.c:626
531528 msgid "Ctrl+Alt+F_3"
532529 msgstr "Ctrl+Alt+F_3"
533530
534 #: ../src/virt-viewer-window.c:550
531 #: src/virt-viewer-window.c:627
535532 msgid "Ctrl+Alt+F_4"
536533 msgstr "Ctrl+Alt+F_4"
537534
538 #: ../src/virt-viewer-window.c:551
535 #: src/virt-viewer-window.c:628
539536 msgid "Ctrl+Alt+F_5"
540537 msgstr "Ctrl+Alt+F_5"
541538
542 #: ../src/virt-viewer-window.c:552
539 #: src/virt-viewer-window.c:629
543540 msgid "Ctrl+Alt+F_6"
544541 msgstr "Ctrl+Alt+F_6"
545542
546 #: ../src/virt-viewer-window.c:553
543 #: src/virt-viewer-window.c:630
547544 msgid "Ctrl+Alt+F_7"
548545 msgstr "Ctrl+Alt+F_7"
549546
550 #: ../src/virt-viewer-window.c:554
547 #: src/virt-viewer-window.c:631
551548 msgid "Ctrl+Alt+F_8"
552549 msgstr "Ctrl+Alt+F_8"
553550
554 #: ../src/virt-viewer-window.c:555
551 #: src/virt-viewer-window.c:632
555552 msgid "Ctrl+Alt+F_9"
556553 msgstr "Ctrl+Alt+F_9"
557554
558 #: ../src/virt-viewer-window.c:556
555 #: src/virt-viewer-window.c:633
559556 msgid "Ctrl+Alt+F1_0"
560557 msgstr "Ctrl+Alt+F1_0"
561558
562 #: ../src/virt-viewer-window.c:557
559 #: src/virt-viewer-window.c:634
563560 msgid "Ctrl+Alt+F11"
564561 msgstr "Ctrl+Alt+F11"
565562
566 #: ../src/virt-viewer-window.c:558
563 #: src/virt-viewer-window.c:635
567564 msgid "Ctrl+Alt+F12"
568565 msgstr "Ctrl+Alt+F12"
569566
570 #: ../src/virt-viewer-window.c:953
567 #: src/virt-viewer-window.c:637
568 msgid "_PrintScreen"
569 msgstr ""
570
571 #: src/virt-viewer-window.c:1030
571572 #, c-format
572573 msgid "Unable to determine image format for file '%s'"
573574 msgstr ""
574575
575 #: ../src/virt-viewer-window.c:980
576 #: src/virt-viewer-window.c:1053
577 msgid "Save screenshot"
578 msgstr ""
579
580 #: src/virt-viewer-window.c:1057
576581 msgid "_Save"
577582 msgstr ""
578583
579 #: ../src/virt-viewer-window.c:988
584 #: src/virt-viewer-window.c:1065
580585 msgid "Screenshot.png"
581586 msgstr ""
582587
583 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
588 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
584589 msgid "Unknown"
585590 msgstr ""
586591
587 #: ../src/virt-viewer-window.c:1152
592 #: src/virt-viewer-window.c:1237
588593 msgid "Unable to connnect to oVirt"
589594 msgstr ""
590595
591 #: ../src/virt-viewer-window.c:1175
596 #: src/virt-viewer-window.c:1260
592597 msgid "Disconnect"
593598 msgstr "সংযোগ বিচ্ছেদ করুন"
594599
595 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
600 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
596601 msgid "USB device selection"
597602 msgstr "USB ডিভাইস নির্বাচন"
598603
599 #: ../src/virt-viewer-window.c:1193
604 #: src/virt-viewer-window.c:1278
600605 msgid "Send key combination"
601606 msgstr ""
602607
603 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
608 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
604609 msgid "Leave fullscreen"
605610 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন থেকে প্রস্থান"
606611
607 #: ../src/virt-viewer-window.c:1279
612 #: src/virt-viewer-window.c:1364
608613 msgid "Ctrl+Alt"
609614 msgstr ""
610615
611 #: ../src/virt-viewer-window.c:1282
616 #: src/virt-viewer-window.c:1367
612617 #, c-format
613618 msgid "(Press %s to release pointer)"
614619 msgstr ""
615620
616 #. translators:
617 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
618 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
619 #.
620 #: ../src/virt-viewer-window.c:1293
621 #: src/virt-viewer-window.c:1378
621622 #, c-format
622623 msgid "%s%s%s - %s"
623624 msgstr "%s%s%s - %s"
624625
625 #. translators: <space>
626 #: ../src/virt-viewer-window.c:1297
626 #: src/virt-viewer-window.c:1382
627627 msgid " "
628628 msgstr " "
629629
630 #: ../src/virt-viewer-file.c:862
630 #: src/virt-viewer-file.c:875
631631 #, c-format
632632 msgid ""
633633 "At least %s version %s is required to setup this connection, see %s for "
634634 "details"
635635 msgstr ""
636636
637 #: ../src/virt-viewer-file.c:870
637 #: src/virt-viewer-file.c:883
638638 #, c-format
639639 msgid "At least %s version %s is required to setup this connection"
640640 msgstr ""
641641
642 #: ../src/virt-viewer.c:133
642 #: src/virt-viewer.c:131
643643 msgid "Direct connection with no automatic tunnels"
644644 msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই"
645645
646 #: ../src/virt-viewer.c:135
646 #: src/virt-viewer.c:133
647647 msgid "Attach to the local display using libvirt"
648648 msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন"
649649
650 #: ../src/virt-viewer.c:137
650 #: src/virt-viewer.c:135
651651 msgid "Connect to hypervisor"
652652 msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন"
653653
654 #: ../src/virt-viewer.c:139
654 #: src/virt-viewer.c:137
655655 msgid "Wait for domain to start"
656656 msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ"
657657
658 #: ../src/virt-viewer.c:141
658 #: src/virt-viewer.c:139
659659 msgid "Reconnect to domain upon restart"
660660 msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে"
661661
662 #: ../src/virt-viewer.c:143
662 #: src/virt-viewer.c:141
663663 msgid "Select the virtual machine only by its name"
664664 msgstr ""
665665
666 #: ../src/virt-viewer.c:145
666 #: src/virt-viewer.c:143
667667 msgid "Select the virtual machine only by its id"
668668 msgstr ""
669669
670 #: ../src/virt-viewer.c:147
670 #: src/virt-viewer.c:145
671671 msgid "Select the virtual machine only by its uuid"
672672 msgstr ""
673673
674 #: ../src/virt-viewer.c:154
674 #: src/virt-viewer.c:152
675675 msgid "Virtual machine graphical console"
676676 msgstr ""
677677
678 #: ../src/virt-viewer.c:173
678 #: src/virt-viewer.c:171
679679 #, c-format
680680 msgid ""
681681 "\n"
683683 "\n"
684684 msgstr ""
685685
686 #: ../src/virt-viewer.c:185
686 #: src/virt-viewer.c:183
687687 #, c-format
688688 msgid ""
689689 "\n"
691691 "\n"
692692 msgstr ""
693693
694 #: ../src/virt-viewer.c:300
694 #: src/virt-viewer.c:296
695695 msgid "Waiting for guest domain to re-start"
696696 msgstr "গেস্ট ডোমেইন পুনরায় আরম্ভের অপেক্ষা করা হচ্ছে"
697697
698 #: ../src/virt-viewer.c:554
698 #: src/virt-viewer.c:550
699699 #, c-format
700700 msgid "Cannot determine the graphic type for the guest %s"
701701 msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিকের ধরন নির্ধারণ করা সম্ভব নয়"
702702
703 #: ../src/virt-viewer.c:603
703 #: src/virt-viewer.c:599
704704 #, c-format
705705 msgid "Cannot determine the host for the guest %s"
706706 msgstr "%s গেস্ট মেশিনের জন্য হোস্ট নির্ধারণ করা সম্ভব নয়"
707707
708 #: ../src/virt-viewer.c:631
708 #: src/virt-viewer.c:627
709709 #, c-format
710710 msgid "Guest '%s' is not reachable"
711711 msgstr ""
712712
713 #: ../src/virt-viewer.c:860
713 #: src/virt-viewer.c:856
714714 #, c-format
715715 msgid "Virtual machine %s is not running"
716716 msgstr ""
717717
718 #: ../src/virt-viewer.c:884
718 #: src/virt-viewer.c:881
719719 msgid "Waiting for libvirt to start"
720720 msgstr ""
721721
722 #: ../src/virt-viewer.c:888
722 #: src/virt-viewer.c:885
723723 msgid "Finding guest domain"
724724 msgstr "গেস্ট ডোমেইন সন্ধান করা হচ্ছে"
725725
726 #: ../src/virt-viewer.c:892
726 #: src/virt-viewer.c:889
727727 msgid "Waiting for guest domain to be created"
728728 msgstr "গেস্ট ডোমেইন প্রস্তুতির অপেক্ষা করা হচ্ছে"
729729
730 #: ../src/virt-viewer.c:918
730 #: src/virt-viewer.c:921
731731 msgid "Checking guest domain status"
732732 msgstr "গেস্ট ডোমেইনের অবস্থা পরীক্ষা করতে ব্যর্থ"
733733
734 #: ../src/virt-viewer.c:921
734 #: src/virt-viewer.c:924
735735 msgid "Cannot get guest state"
736736 msgstr ""
737737
738 #: ../src/virt-viewer.c:927
738 #: src/virt-viewer.c:930
739739 msgid "Waiting for guest domain to start"
740740 msgstr "গেস্ট ডোমেইন আরম্ভের অপেক্ষা করা হচ্ছে"
741741
742 #: ../src/virt-viewer.c:1040
742 #: src/virt-viewer.c:1044
743743 #, c-format
744744 msgid "Unable to connect to libvirt with URI: %s."
745745 msgstr ""
746746
747 #: ../src/virt-viewer.c:1041
747 #: src/virt-viewer.c:1045
748748 msgid "[none]"
749749 msgstr "[শূণ্য]"
750750
751 #: ../src/virt-viewer.c:1048
751 #: src/virt-viewer.c:1052
752752 msgid "Authentication failed."
753753 msgstr ""
754754
755 #: ../src/virt-viewer.c:1108
755 #: src/virt-viewer.c:1112
756756 msgid "Failed to connect: "
757757 msgstr ""
758758
759 #.
760 #. * Local variables:
761 #. * c-indent-level: 4
762 #. * c-basic-offset: 4
763 #. * indent-tabs-mode: nil
764 #. * End:
765 #.
766 #: ../src/resources/ui/virt-viewer.ui.h:1
759 #: src/resources/ui/virt-viewer.ui:28
767760 msgid "_File"
768761 msgstr "ফাইল (_F)"
769762
770 #: ../src/resources/ui/virt-viewer.ui.h:2
763 #: src/resources/ui/virt-viewer.ui:41
771764 msgid "_Screenshot"
772765 msgstr ""
773766
774 #: ../src/resources/ui/virt-viewer.ui.h:3
767 #: src/resources/ui/virt-viewer.ui:52
775768 msgid "_USB device selection"
776769 msgstr ""
777770
778 #: ../src/resources/ui/virt-viewer.ui.h:4
771 #: src/resources/ui/virt-viewer.ui:62
779772 msgid "Smartcard insertion"
780773 msgstr "স্মার্ট-কার্ড অন্তর্ভুক্তি"
781774
782 #: ../src/resources/ui/virt-viewer.ui.h:5
775 #: src/resources/ui/virt-viewer.ui:72
783776 msgid "Smartcard removal"
784777 msgstr "স্মার্ট-কার্ড অপসারণ"
785778
786 #: ../src/resources/ui/virt-viewer.ui.h:6
779 #: src/resources/ui/virt-viewer.ui:80
787780 msgid "_Change CD"
788781 msgstr ""
789782
790 #: ../src/resources/ui/virt-viewer.ui.h:7
783 #: src/resources/ui/virt-viewer.ui:90
791784 msgid "_Preferences"
792785 msgstr ""
793786
794 #: ../src/resources/ui/virt-viewer.ui.h:8
787 #: src/resources/ui/virt-viewer.ui:103
795788 msgid "_Quit"
796789 msgstr ""
797790
798 #: ../src/resources/ui/virt-viewer.ui.h:9
791 #: src/resources/ui/virt-viewer.ui:119
792 msgid "_Machine"
793 msgstr ""
794
795 #: src/resources/ui/virt-viewer.ui:129
796 msgid "_Pause"
797 msgstr ""
798
799 #: src/resources/ui/virt-viewer.ui:144
800 msgid "_Reset"
801 msgstr ""
802
803 #: src/resources/ui/virt-viewer.ui:153
804 msgid "_Power down"
805 msgstr ""
806
807 #: src/resources/ui/virt-viewer.ui:167
799808 msgid "_View"
800809 msgstr "প্রদর্শন (_V)"
801810
802 #: ../src/resources/ui/virt-viewer.ui.h:10
811 #: src/resources/ui/virt-viewer.ui:180
803812 msgid "_Full screen"
804813 msgstr ""
805814
806 #: ../src/resources/ui/virt-viewer.ui.h:11
815 #: src/resources/ui/virt-viewer.ui:191
807816 msgid "_Zoom"
808817 msgstr "প্রদর্শনের নাম (_Z)"
809818
810 #: ../src/resources/ui/virt-viewer.ui.h:12
819 #: src/resources/ui/virt-viewer.ui:201
811820 msgid "Zoom _In"
812821 msgstr ""
813822
814 #: ../src/resources/ui/virt-viewer.ui.h:13
823 #: src/resources/ui/virt-viewer.ui:212
815824 msgid "Zoom _Out"
816825 msgstr ""
817826
818 #: ../src/resources/ui/virt-viewer.ui.h:14
827 #: src/resources/ui/virt-viewer.ui:229
819828 msgid "_Normal Size"
820829 msgstr ""
821830
822 #: ../src/resources/ui/virt-viewer.ui.h:15
831 #: src/resources/ui/virt-viewer.ui:246
823832 msgid "_Displays"
824833 msgstr ""
825834
826 #: ../src/resources/ui/virt-viewer.ui.h:16
835 #: src/resources/ui/virt-viewer.ui:255
827836 msgid "Release cursor"
828837 msgstr "কার্সার মুক্ত করা হবে"
829838
830 #: ../src/resources/ui/virt-viewer.ui.h:17
839 #: src/resources/ui/virt-viewer.ui:270
831840 msgid "_Send key"
832841 msgstr "কি পাঠিয়ে দিন (_S)"
833842
834 #: ../src/resources/ui/virt-viewer.ui.h:18
843 #: src/resources/ui/virt-viewer.ui:279
835844 msgid "_Help"
836845 msgstr "সহায়তা (_H)"
837846
838 #: ../src/resources/ui/virt-viewer.ui.h:19
847 #: src/resources/ui/virt-viewer.ui:290
839848 msgid "_Guest Details"
840849 msgstr ""
841850
842 #: ../src/resources/ui/virt-viewer.ui.h:20
851 #: src/resources/ui/virt-viewer.ui:297
843852 msgid "_About"
844853 msgstr ""
845854
846 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
855 #: src/resources/ui/virt-viewer-guest-details.ui:7
847856 msgid "Guest Details"
848857 msgstr ""
849858
850 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
859 #: src/resources/ui/virt-viewer-guest-details.ui:56
851860 msgid "Name:"
852861 msgstr ""
853862
854 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
863 #: src/resources/ui/virt-viewer-guest-details.ui:68
855864 msgid "GUID:"
856865 msgstr ""
857866
858 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
867 #: src/resources/ui/virt-viewer-vm-connection.ui:7
859868 msgid "Choose a virtual machine"
860869 msgstr ""
861870
862 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
871 #: src/resources/ui/virt-viewer-vm-connection.ui:96
863872 msgid "Available virtual machines"
864873 msgstr ""
865874
866 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
875 #: src/resources/ui/virt-viewer-preferences.ui:8
867876 msgid "Preferences"
868877 msgstr ""
869878
870 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
879 #: src/resources/ui/virt-viewer-preferences.ui:48
871880 msgid "Folder sharing"
872881 msgstr ""
873882
874 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
883 #: src/resources/ui/virt-viewer-preferences.ui:70
875884 msgid "Share folder"
876885 msgstr ""
877886
878 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
887 #: src/resources/ui/virt-viewer-preferences.ui:82
879888 msgid "Read-only"
880889 msgstr ""
881890
882 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
891 #: src/resources/ui/virt-viewer-preferences.ui:96
892 msgid "Share clipboard"
893 msgstr ""
894
895 #: src/resources/ui/virt-viewer-preferences.ui:132
883896 msgid "Spice"
884897 msgstr ""
898
899 #~ msgid "virt-manager.org"
900 #~ msgstr "virt-manager.org"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
77 # Saibal Ray, 2013-2014
88 msgid ""
99 msgstr ""
10 "Project-Id-Version: PACKAGE VERSION\n"
11 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
13 "PO-Revision-Date: 2015-02-20 08:08-0500\n"
10 "Project-Id-Version: virt-viewer 9.0\n"
11 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
12 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
13 "PO-Revision-Date: 2015-02-20 08:08+0000\n"
1414 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1515 "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/virt-"
1616 "viewer/language/bn_IN/)\n"
17 "Language: bn-IN\n"
17 "Language: bn_IN\n"
1818 "MIME-Version: 1.0\n"
1919 "Content-Type: text/plain; charset=UTF-8\n"
2020 "Content-Transfer-Encoding: 8bit\n"
2121 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22 "X-Generator: Zanata 3.9.6\n"
23
24 #: ../data/remote-viewer.appdata.xml.in.h:1
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
22 "X-Generator: Zanata 4.6.2\n"
23
24 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
25 #: src/remote-viewer-main.c:39
2626 msgid "Remote Viewer"
2727 msgstr "দূরবর্তী প্রদর্শন"
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:2
29 #: data/remote-viewer.appdata.xml.in:7
3030 msgid "Remotely access virtual machines"
3131 msgstr ""
3232
33 #: ../data/remote-viewer.appdata.xml.in.h:3
33 #: data/remote-viewer.appdata.xml.in:9
3434 msgid ""
3535 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3636 "time it supports guest OS using the VNC or SPICE protocols. Further "
3939 "using SSL/TLS encryption."
4040 msgstr ""
4141
42 #: ../data/remote-viewer.desktop.in.h:2
42 #: data/remote-viewer.desktop.in:4
4343 msgid "Access remote desktops"
4444 msgstr "রিমোট ডেস্কটপ অ্যাক্সেস করুন"
4545
46 #: ../data/virt-viewer-mime.xml.in.h:1
47 msgid "Virt-Viewer connection file"
48 msgstr "Virt-Viewer সংযোগ ফাইল"
49
50 #: ../src/remote-viewer-iso-list-dialog.c:160
46 #: src/remote-viewer-iso-list-dialog.c:156
5147 msgid "Failed to fetch CD names"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:212
50 #: src/remote-viewer-iso-list-dialog.c:205
5551 msgid "<b>Loading...</b>"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:285
54 #: src/remote-viewer-iso-list-dialog.c:276
5955 msgid "Refresh"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:286
58 #: src/remote-viewer-iso-list-dialog.c:277
6359 msgid "Close"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:306
62 #: src/remote-viewer-iso-list-dialog.c:297
6763 msgid "Unspecified error"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:328
66 #: src/remote-viewer-iso-list-dialog.c:318
7167 msgid "Failed to change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer-iso-list-dialog.c:380
70 #: src/remote-viewer-iso-list-dialog.c:370
7571 msgid "Change CD"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:118
74 #: src/remote-viewer.c:116
7975 msgid "Set window title"
8076 msgstr "উইন্ডো টাইটেল সেট করুন"
8177
82 #: ../src/remote-viewer.c:125
78 #: src/remote-viewer.c:123
8379 msgid "Remote viewer client"
8480 msgstr "রিমোট ভিউয়ার ক্লায়েন্ট"
8581
86 #: ../src/remote-viewer.c:150
87 #, c-format
82 #: src/remote-viewer.c:148
8883 msgid ""
8984 "\n"
9085 "Error: can't handle multiple URIs\n"
9186 "\n"
9287 msgstr ""
9388
94 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
89 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9590 #, c-format
9691 msgid "Run '%s --help' to see a full list of available command line options\n"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:435
94 #: src/remote-viewer.c:429
10095 msgid "failed to parse ovirt uri"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
98 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10499 msgid "Authentication was cancelled"
105100 msgstr ""
106101
107 #: ../src/remote-viewer.c:480
102 #: src/remote-viewer.c:472
108103 #, c-format
109104 msgid "oVirt VM %s is not running"
110105 msgstr ""
111106
112 #: ../src/remote-viewer.c:494
107 #: src/remote-viewer.c:486
113108 #, c-format
114109 msgid "oVirt VM %s has no display"
115110 msgstr ""
116111
117 #: ../src/remote-viewer.c:520
112 #: src/remote-viewer.c:512
118113 #, c-format
119114 msgid "oVirt VM %s has no host information"
120115 msgstr ""
121116
122 #: ../src/remote-viewer.c:531
123 #, c-format
124 msgid "oVirt VM %s has unknown display type: %d"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:713
117 #: src/remote-viewer.c:523
118 #, c-format
119 msgid "oVirt VM %s has unknown display type: %u"
120 msgstr ""
121
122 #: src/remote-viewer.c:690
123 msgid "Couldn't open oVirt session: "
124 msgstr ""
125
126 #: src/remote-viewer.c:718
128127 msgid "Failed to initiate connection"
129128 msgstr "সংযোগ আরম্ভ করতে ব্যর্থ"
130129
131 #: ../src/remote-viewer.c:742
130 #: src/remote-viewer.c:747
132131 msgid "No connection was chosen"
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:759
134 #: src/remote-viewer.c:764
136135 msgid "Failed to read stdin: "
137136 msgstr ""
138137
139 #: ../src/remote-viewer.c:776
138 #: src/remote-viewer.c:781
140139 #, c-format
141140 msgid "Invalid file %s: "
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:786
143 #: src/remote-viewer.c:791
145144 msgid "Cannot determine the connection type from URI"
146145 msgstr "URI থেকে সংযোগের ধরন নির্ধারণ করা সম্ভব নয়"
147146
148 #: ../src/remote-viewer.c:792
149 msgid "Couldn't open oVirt session: "
150 msgstr ""
151
152 #: ../src/remote-viewer.c:815
147 #: src/remote-viewer.c:810
153148 #, c-format
154149 msgid "Unable to connect: %s"
155150 msgstr ""
156151
157 #.
158 #. * Local variables:
159 #. * c-indent-level: 4
160 #. * c-basic-offset: 4
161 #. * indent-tabs-mode: nil
162 #. * End:
163 #.
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
152 #: src/resources/ui/remote-viewer-connect.ui:6
165153 msgid "Connection details"
166154 msgstr "সংযোগ সংক্রান্ত বিবরণ"
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
156 #: src/resources/ui/remote-viewer-connect.ui:24
169157 msgid "Connection _Address"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
160 #: src/resources/ui/remote-viewer-connect.ui:54
173161 msgid "For example, spice://foo.example.org:5900"
174162 msgstr "উদাহরণস্বরূপ, spice://foo.example.org:5900"
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
164 #: src/resources/ui/remote-viewer-connect.ui:78
177165 msgid "Recent connections"
178166 msgstr ""
179167
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
181 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
182 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
183 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
168 #: src/resources/ui/remote-viewer-connect.ui:120
169 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
170 #: src/resources/ui/virt-viewer-vm-connection.ui:24
171 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
184172 msgid "_Cancel"
185173 msgstr ""
186174
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
188 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:134
176 #: src/resources/ui/virt-viewer-vm-connection.ui:38
189177 msgid "C_onnect"
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
180 #: src/resources/ui/remote-viewer-iso-list.ui:28
193181 msgid "Loading..."
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
184 #: src/resources/ui/remote-viewer-iso-list.ui:78
197185 msgid "Select ISO"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
188 #: src/resources/ui/remote-viewer-iso-list.ui:116
201189 msgid "Selected"
202190 msgstr ""
203191
204 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
205 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
192 #: src/resources/ui/remote-viewer-iso-list.ui:129
193 #: src/resources/ui/virt-viewer-vm-connection.ui:72
206194 msgid "Name"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:1
197 #: src/resources/ui/virt-viewer-about.ui:7
210198 msgid "About Virt-Viewer"
211199 msgstr ""
212200
213 #: ../src/resources/ui/virt-viewer-about.ui.h:2
201 #: src/resources/ui/virt-viewer-about.ui:16
214202 msgid ""
215203 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216204 "Copyright (C) 2007-2014 Red Hat, Inc."
218206 "কপিরাইট (C) 2007-2012 Daniel P. Berrange\n"
219207 "কপিরাইট (C) 2007-2014 Red Hat, Inc."
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:4
209 #: src/resources/ui/virt-viewer-about.ui:18
222210 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
223211 msgstr "GTK-VNC, SPICE-GTK ও libvirt সহযোগে নির্মিত একটি দূরবর্তী ডেস্কটপ"
224212
225 #: ../src/resources/ui/virt-viewer-about.ui.h:5
226 msgid "virt-manager.org"
227 msgstr "virt-manager.org"
228
229 #: ../src/resources/ui/virt-viewer-about.ui.h:6
213 #: src/resources/ui/virt-viewer-about.ui:20
214 msgid "gitlab.com/virt-viewer/virt-viewer"
215 msgstr ""
216
217 #: src/resources/ui/virt-viewer-about.ui:21
230218 msgid ""
231219 "This program is free software; you can redistribute it and/or modify\n"
232220 "it under the terms of the GNU General Public License as published by\n"
258246 "Inc., \n"
259247 "59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
260248
261 #: ../src/resources/ui/virt-viewer-about.ui.h:20
249 #: src/resources/ui/virt-viewer-about.ui:38
262250 msgid "The Fedora Translation Team"
263251 msgstr "Fedora-র অনুবাদকদের দল"
264252
265 #: ../src/virt-viewer-app.c:459
253 #: src/virt-viewer-app.c:594
266254 msgid "Do you want to close the session?"
267255 msgstr "অাপনি কী সেশন বন্ধ করতে চান?"
268256
269 #: ../src/virt-viewer-app.c:461
257 #: src/virt-viewer-app.c:596
270258 msgid "Do not ask me again"
271259 msgstr "অামকে অাবার জিজ্ঞাসা করবেন না"
272260
273 #: ../src/virt-viewer-app.c:655
261 #: src/virt-viewer-app.c:767
274262 #, c-format
275263 msgid "Address is too long for unix socket_path: %s"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:665
266 #: src/virt-viewer-app.c:777
279267 #, c-format
280268 msgid "Creating unix socket failed: %s"
281269 msgstr ""
282270
283 #: ../src/virt-viewer-app.c:671
271 #: src/virt-viewer-app.c:783
284272 #, c-format
285273 msgid "Connecting to unix socket failed: %s"
286274 msgstr ""
287275
288 #: ../src/virt-viewer-app.c:955
276 #: src/virt-viewer-app.c:1077
289277 #, c-format
290278 msgid "Waiting for display %d..."
291279 msgstr "%d প্রদর্শনের জন্য অপেক্ষা করা হচ্ছে..."
292280
293 #: ../src/virt-viewer-app.c:1062
281 #: src/virt-viewer-app.c:1193
294282 #, c-format
295283 msgid "Unsupported graphic type '%s'"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1146
286 #: src/virt-viewer-app.c:1277
299287 msgid "Connect to ssh failed."
300288 msgstr "ssh-র সাথে সংযোগ করতে ব্যর্থ।"
301289
302 #: ../src/virt-viewer-app.c:1161
290 #: src/virt-viewer-app.c:1292
303291 #, c-format
304292 msgid "Can't connect to channel: %s"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1163
295 #: src/virt-viewer-app.c:1294
308296 msgid "only SSH or unix socket connection supported."
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1176
299 #: src/virt-viewer-app.c:1311
312300 msgid "Connect to channel unsupported."
313301 msgstr "সমর্থন বিনা চ্যানেলের সাথে সংযোগ করা হবে।"
314302
315 #: ../src/virt-viewer-app.c:1238
303 #: src/virt-viewer-app.c:1376
316304 msgid "Display can only be attached through libvirt with --attach"
317305 msgstr ""
318306
319 #: ../src/virt-viewer-app.c:1263
307 #: src/virt-viewer-app.c:1401
320308 msgid "Connecting to graphic server"
321309 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হচ্ছে"
322310
323 #: ../src/virt-viewer-app.c:1362
311 #: src/virt-viewer-app.c:1500
324312 msgid "Guest domain has shutdown"
325313 msgstr "গেস্ট ডোমেইন বন্ধ হয়েছে"
326314
327 #: ../src/virt-viewer-app.c:1423
315 #: src/virt-viewer-app.c:1561
328316 msgid "Connected to graphic server"
329317 msgstr "গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করা হয়েছে"
330318
331 #: ../src/virt-viewer-app.c:1452
319 #: src/virt-viewer-app.c:1590
332320 #, c-format
333321 msgid "Unable to connect to the graphic server %s"
334322 msgstr "%s গ্রাফিক সার্ভারের সাথে সংযোগ স্থাপন করতে ব্যর্থ"
335323
336 #: ../src/virt-viewer-app.c:1478
324 #: src/virt-viewer-app.c:1616
337325 #, c-format
338326 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1492
329 #: src/virt-viewer-app.c:1630
342330 #, c-format
343331 msgid "Unable to authenticate with remote desktop server: %s"
344332 msgstr "দূরবর্তী ডেস্কটপ সার্ভারের সাথে অনুমোদন করতে ব্যর্থ: %s"
345333
346 #: ../src/virt-viewer-app.c:1500
334 #: src/virt-viewer-app.c:1638
347335 #, c-format
348336 msgid "USB redirection error: %s"
349337 msgstr "USB পুনর্নির্দেশে সমস্যা: %s"
350338
351 #: ../src/virt-viewer-app.c:1834
339 #: src/virt-viewer-app.c:2026
352340 #, c-format
353341 msgid "Zoom level must be within %d-%d\n"
354342 msgstr "জুম মাত্রা অবশ্যই %d-%d এর মধ্যবর্তী হতে হবে\n"
355343
356 #: ../src/virt-viewer-app.c:1887
344 #: src/virt-viewer-app.c:2081
357345 #, c-format
358346 msgid "%s\n"
359347 msgstr ""
360348
361 #: ../src/virt-viewer-app.c:1897
349 #: src/virt-viewer-app.c:2091
362350 #, c-format
363351 msgid "%s version %s"
364352 msgstr ""
365353
366 #: ../src/virt-viewer-app.c:2321
354 #: src/virt-viewer-app.c:2545
367355 #, c-format
368356 msgid "Display _%d"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2577
359 #: src/virt-viewer-app.c:2829
372360 #, c-format
373361 msgid "Invalid kiosk-quit argument: %s"
374362 msgstr "অবৈধ kiosk-quit আর্গুমেন্ট: %s"
375363
376 #: ../src/virt-viewer-app.c:2588
364 #: src/virt-viewer-app.c:2840
377365 msgid "Display version information"
378366 msgstr "সংস্করণ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
379367
380 #: ../src/virt-viewer-app.c:2590
368 #: src/virt-viewer-app.c:2842
381369 msgid "Zoom level of window, in percentage"
382370 msgstr "উইন্ডোর প্রদর্শনের মাপ, শতাংশে ব্যক্ত"
383371
384 #: ../src/virt-viewer-app.c:2592
372 #: src/virt-viewer-app.c:2844
385373 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
386374 msgstr ""
387375 "সম্পূর্ণ পর্দায় প্রদর্শনের মোডে খোলা হবে (ক্লায়েন্ট সঠিক মাপে প্রদর্শনের জন্য গেস্ট "
388376 "সিস্টেমের রেসোলিউশন পরিবর্তন করা হয়)"
389377
390 #: ../src/virt-viewer-app.c:2594
378 #: src/virt-viewer-app.c:2846
391379 msgid "Customise hotkeys"
392380 msgstr "কাস্টোমাইজ হটকী"
393381
394 #: ../src/virt-viewer-app.c:2596
382 #: src/virt-viewer-app.c:2848
395383 msgid "Enable kiosk mode"
396384 msgstr "কিয়োস্ক মোড সক্রিয় করুন"
397385
398 #: ../src/virt-viewer-app.c:2598
386 #: src/virt-viewer-app.c:2850
399387 msgid "Quit on given condition in kiosk mode"
400388 msgstr "কিয়োস্ক মোডে প্রদত্ত অবস্থায় প্রস্থান করুন"
401389
402 #: ../src/virt-viewer-app.c:2598
390 #: src/virt-viewer-app.c:2850
403391 msgid "<never|on-disconnect>"
404392 msgstr "<never|on-disconnect>"
405393
406 #: ../src/virt-viewer-app.c:2600
394 #: src/virt-viewer-app.c:2852
407395 msgid "Display verbose information"
408396 msgstr "ভার্বোস তথ্য প্রদর্শন করা হবে"
409397
410 #: ../src/virt-viewer-app.c:2602
398 #: src/virt-viewer-app.c:2854
411399 msgid "Display debugging information"
412400 msgstr "ডিবাগ সংক্রান্ত তথ্য প্রদর্শন করা হবে"
413401
414 #: ../src/virt-viewer-auth.c:89
402 #: src/virt-viewer-auth.c:89
415403 #, c-format
416404 msgid ""
417405 "Authentication is required for the %s connection to:\n"
420408 "\n"
421409 msgstr ""
422410
423 #: ../src/virt-viewer-auth.c:93
411 #: src/virt-viewer-auth.c:93
424412 #, c-format
425413 msgid "Authentication is required for the %s connection:\n"
426414 msgstr ""
427415
428 #.
429 #. * Local variables:
430 #. * c-indent-level: 4
431 #. * c-basic-offset: 4
432 #. * indent-tabs-mode: nil
433 #. * End:
434 #.
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
416 #: src/resources/ui/virt-viewer-auth.ui:7
436417 msgid "Authentication required"
437418 msgstr "অনুমোদন প্রয়োজন"
438419
439 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
420 #: src/resources/ui/virt-viewer-auth.ui:42
440421 msgid "_OK"
441422 msgstr ""
442423
443 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
444 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
445 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
424 #: src/resources/ui/virt-viewer-auth.ui:71
425 #: src/resources/ui/virt-viewer-guest-details.ui:82
426 #: src/resources/ui/virt-viewer-guest-details.ui:96
427 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
446428 msgid "label"
447429 msgstr "label"
448430
449 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
431 #: src/resources/ui/virt-viewer-auth.ui:93
450432 msgid "Password:"
451433 msgstr "পাসওয়ার্ড:"
452434
453 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
435 #: src/resources/ui/virt-viewer-auth.ui:105
454436 msgid "Username:"
455437 msgstr "ব্যবহারকারীর নাম:"
456438
457 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
439 #: src/resources/ui/virt-viewer-auth.ui:137
458440 msgid "Show password"
459441 msgstr ""
460442
461 #: ../src/virt-viewer-display-vnc.c:134
443 #: src/virt-viewer-display-vnc.c:130
462444 msgid "VNC does not provide GUID"
463445 msgstr ""
464446
465 #: ../src/virt-viewer-file-transfer-dialog.c:128
447 #: src/virt-viewer-display-vte.c:181
448 msgid "Console support is compiled out!"
449 msgstr ""
450
451 #: src/virt-viewer-file-transfer-dialog.c:124
466452 msgid "File Transfers"
467453 msgstr ""
468454
469 #: ../src/virt-viewer-file-transfer-dialog.c:154
455 #: src/virt-viewer-file-transfer-dialog.c:150
470456 msgid "Transferring 1 file..."
471457 msgstr ""
472458
473 #: ../src/virt-viewer-file-transfer-dialog.c:156
474 #, c-format
475 msgid "Transferring %d file of %d..."
476 msgid_plural "Transferring %d files of %d..."
459 #: src/virt-viewer-file-transfer-dialog.c:152
460 #, c-format
461 msgid "Transferring %u file of %u..."
462 msgid_plural "Transferring %u files of %u..."
477463 msgstr[0] ""
478
479 #: ../src/virt-viewer-file-transfer-dialog.c:228
480 #, c-format
481 msgid "An error caused the following file transfers to fail:%s"
482 msgstr ""
483
484 #: ../src/virt-viewer-main.c:38
464 msgstr[1] ""
465
466 #: src/virt-viewer-file-transfer-dialog.c:225
467 msgid "An error caused the following file transfers to fail:"
468 msgstr ""
469
470 #: src/virt-viewer-main.c:38
485471 msgid "Virt Viewer"
486472 msgstr "Virt Viewer"
487473
488 #: ../src/virt-viewer-session-spice.c:704
474 #: src/virt-viewer-session-spice.c:731
489475 msgid "Invalid password"
490476 msgstr ""
491477
492 #. Create the widgets
493 #: ../src/virt-viewer-session-spice.c:802
478 #: src/virt-viewer-session-spice.c:829
494479 msgid "Select USB devices for redirection"
495480 msgstr "পুনর্নির্দেশের জন্য USB ডিভাইস নির্বাচন করুন"
496481
497 #: ../src/virt-viewer-session-spice.c:804
498 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
482 #: src/virt-viewer-session-spice.c:831
483 #: src/resources/ui/virt-viewer-guest-details.ui:23
499484 msgid "_Close"
500485 msgstr ""
501486
502 #: ../src/virt-viewer-session-vnc.c:162
503 #, c-format
504 msgid "Unsupported authentication type %d"
505 msgstr "%d ধরনের অনুমোদন সমর্থিত নয়"
506
507 #: ../src/virt-viewer-vm-connection.c:64
487 #: src/virt-viewer-session-spice.c:1019
488 msgid "Serial"
489 msgstr ""
490
491 #: src/virt-viewer-session-spice.c:1021
492 msgid "QEMU human monitor"
493 msgstr ""
494
495 #: src/virt-viewer-session-spice.c:1023
496 msgid "QEMU debug console"
497 msgstr ""
498
499 #: src/virt-viewer-session-vnc.c:158
500 #, c-format
501 msgid "Unsupported authentication type %u"
502 msgstr ""
503
504 #: src/virt-viewer-vm-connection.c:64
508505 msgid "No running virtual machine found"
509506 msgstr ""
510507
511 #: ../src/virt-viewer-vm-connection.c:93
508 #: src/virt-viewer-vm-connection.c:93
512509 msgid "No virtual machine was chosen"
513510 msgstr ""
514511
515 #: ../src/virt-viewer-window.c:544
512 #: src/virt-viewer-window.c:621
516513 msgid "Ctrl+Alt+_Del"
517514 msgstr "Ctrl+Alt+_Del"
518515
519 #: ../src/virt-viewer-window.c:545
516 #: src/virt-viewer-window.c:622
520517 msgid "Ctrl+Alt+_Backspace"
521518 msgstr "Ctrl+Alt+_Backspace"
522519
523 #: ../src/virt-viewer-window.c:547
520 #: src/virt-viewer-window.c:624
524521 msgid "Ctrl+Alt+F_1"
525522 msgstr "Ctrl+Alt+F_1"
526523
527 #: ../src/virt-viewer-window.c:548
524 #: src/virt-viewer-window.c:625
528525 msgid "Ctrl+Alt+F_2"
529526 msgstr "Ctrl+Alt+F_2"
530527
531 #: ../src/virt-viewer-window.c:549
528 #: src/virt-viewer-window.c:626
532529 msgid "Ctrl+Alt+F_3"
533530 msgstr "Ctrl+Alt+F_3"
534531
535 #: ../src/virt-viewer-window.c:550
532 #: src/virt-viewer-window.c:627
536533 msgid "Ctrl+Alt+F_4"
537534 msgstr "Ctrl+Alt+F_4"
538535
539 #: ../src/virt-viewer-window.c:551
536 #: src/virt-viewer-window.c:628
540537 msgid "Ctrl+Alt+F_5"
541538 msgstr "Ctrl+Alt+F_5"
542539
543 #: ../src/virt-viewer-window.c:552
540 #: src/virt-viewer-window.c:629
544541 msgid "Ctrl+Alt+F_6"
545542 msgstr "Ctrl+Alt+F_6"
546543
547 #: ../src/virt-viewer-window.c:553
544 #: src/virt-viewer-window.c:630
548545 msgid "Ctrl+Alt+F_7"
549546 msgstr "Ctrl+Alt+F_7"
550547
551 #: ../src/virt-viewer-window.c:554
548 #: src/virt-viewer-window.c:631
552549 msgid "Ctrl+Alt+F_8"
553550 msgstr "Ctrl+Alt+F_8"
554551
555 #: ../src/virt-viewer-window.c:555
552 #: src/virt-viewer-window.c:632
556553 msgid "Ctrl+Alt+F_9"
557554 msgstr "Ctrl+Alt+F_9"
558555
559 #: ../src/virt-viewer-window.c:556
556 #: src/virt-viewer-window.c:633
560557 msgid "Ctrl+Alt+F1_0"
561558 msgstr "Ctrl+Alt+F1_0"
562559
563 #: ../src/virt-viewer-window.c:557
560 #: src/virt-viewer-window.c:634
564561 msgid "Ctrl+Alt+F11"
565562 msgstr "Ctrl+Alt+F11"
566563
567 #: ../src/virt-viewer-window.c:558
564 #: src/virt-viewer-window.c:635
568565 msgid "Ctrl+Alt+F12"
569566 msgstr "Ctrl+Alt+F12"
570567
571 #: ../src/virt-viewer-window.c:953
568 #: src/virt-viewer-window.c:637
569 msgid "_PrintScreen"
570 msgstr ""
571
572 #: src/virt-viewer-window.c:1030
572573 #, c-format
573574 msgid "Unable to determine image format for file '%s'"
574575 msgstr ""
575576
576 #: ../src/virt-viewer-window.c:980
577 #: src/virt-viewer-window.c:1053
578 msgid "Save screenshot"
579 msgstr ""
580
581 #: src/virt-viewer-window.c:1057
577582 msgid "_Save"
578583 msgstr ""
579584
580 #: ../src/virt-viewer-window.c:988
585 #: src/virt-viewer-window.c:1065
581586 msgid "Screenshot.png"
582587 msgstr ""
583588
584 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
589 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
585590 msgid "Unknown"
586591 msgstr ""
587592
588 #: ../src/virt-viewer-window.c:1152
593 #: src/virt-viewer-window.c:1237
589594 msgid "Unable to connnect to oVirt"
590595 msgstr ""
591596
592 #: ../src/virt-viewer-window.c:1175
597 #: src/virt-viewer-window.c:1260
593598 msgid "Disconnect"
594599 msgstr "সংযোগ বিচ্ছেদ করুন"
595600
596 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
601 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
597602 msgid "USB device selection"
598603 msgstr "USB ডিভাইস নির্বাচন"
599604
600 #: ../src/virt-viewer-window.c:1193
605 #: src/virt-viewer-window.c:1278
601606 msgid "Send key combination"
602607 msgstr "সেন্ড-কি-র সংকলন"
603608
604 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
609 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
605610 msgid "Leave fullscreen"
606611 msgstr "সম্পূর্ণ পর্দায় প্রদর্শন থেকে প্রস্থান"
607612
608 #: ../src/virt-viewer-window.c:1279
613 #: src/virt-viewer-window.c:1364
609614 msgid "Ctrl+Alt"
610615 msgstr "Ctrl+Alt"
611616
612 #: ../src/virt-viewer-window.c:1282
617 #: src/virt-viewer-window.c:1367
613618 #, c-format
614619 msgid "(Press %s to release pointer)"
615620 msgstr "(পয়েন্টার মুক্ত করার জন্য %s টিপুন)"
616621
617 #. translators:
618 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
619 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
620 #.
621 #: ../src/virt-viewer-window.c:1293
622 #: src/virt-viewer-window.c:1378
622623 #, c-format
623624 msgid "%s%s%s - %s"
624625 msgstr "%s%s%s - %s"
625626
626 #. translators: <space>
627 #: ../src/virt-viewer-window.c:1297
627 #: src/virt-viewer-window.c:1382
628628 msgid " "
629629 msgstr " "
630630
631 #: ../src/virt-viewer-file.c:862
631 #: src/virt-viewer-file.c:875
632632 #, c-format
633633 msgid ""
634634 "At least %s version %s is required to setup this connection, see %s for "
635635 "details"
636636 msgstr ""
637637
638 #: ../src/virt-viewer-file.c:870
638 #: src/virt-viewer-file.c:883
639639 #, c-format
640640 msgid "At least %s version %s is required to setup this connection"
641641 msgstr "এই সংযোগ সেট অাপ করতে অন্ততপক্ষে %s সংস্করণ %s প্রয়োজন"
642642
643 #: ../src/virt-viewer.c:133
643 #: src/virt-viewer.c:131
644644 msgid "Direct connection with no automatic tunnels"
645645 msgstr "স্বয়ংক্রিয় টানেল বিনা কোনো সরাসরি যোগাযোগ নেই"
646646
647 #: ../src/virt-viewer.c:135
647 #: src/virt-viewer.c:133
648648 msgid "Attach to the local display using libvirt"
649649 msgstr "libvirt সহযোগে স্থানীয় প্রদর্শন ব্যবস্থার সাথে সংযোগ করুন"
650650
651 #: ../src/virt-viewer.c:137
651 #: src/virt-viewer.c:135
652652 msgid "Connect to hypervisor"
653653 msgstr "হাইপার-ভাইসরের সাথে সংযোগ স্থাপন করুন"
654654
655 #: ../src/virt-viewer.c:139
655 #: src/virt-viewer.c:137
656656 msgid "Wait for domain to start"
657657 msgstr "ডোমেইন আরম্ভ করতে ব্যর্থ"
658658
659 #: ../src/virt-viewer.c:141
659 #: src/virt-viewer.c:139
660660 msgid "Reconnect to domain upon restart"
661661 msgstr "পুনরারম্ভের পরে ডোমেইনের সাথে সংযোগ পুনরায় স্থাপন করা হবে"
662662
663 #: ../src/virt-viewer.c:143
663 #: src/virt-viewer.c:141
664664 msgid "Select the virtual machine only by its name"
665665 msgstr ""
666666
667 #: ../src/virt-viewer.c:145
667 #: src/virt-viewer.c:143
668668 msgid "Select the virtual machine only by its id"
669669 msgstr ""
670670
671 #: ../src/virt-viewer.c:147
671 #: src/virt-viewer.c:145
672672 msgid "Select the virtual machine only by its uuid"
673673 msgstr ""
674674
675 #: ../src/virt-viewer.c:154
675 #: src/virt-viewer.c:152
676676 msgid "Virtual machine graphical console"
677677 msgstr "ভার্চুয়াল মেশিনের গ্রাফিক্যাল কনসোল"
678678
679 #: ../src/virt-viewer.c:173
679 #: src/virt-viewer.c:171
680680 #, c-format
681681 msgid ""
682682 "\n"
684684 "\n"
685685 msgstr ""
686686
687 #: ../src/virt-viewer.c:185
687 #: src/virt-viewer.c:183
688688 #, c-format
689689 msgid ""
690690 "\n"
692692 "\n"
693693 msgstr ""
694694
695 #: ../src/virt-viewer.c:300
695 #: src/virt-viewer.c:296
696696 msgid "Waiting for guest domain to re-start"
697697 msgstr "গেস্ট ডোমেইন পুনরায় আরম্ভের অপেক্ষা করা হচ্ছে"
698698
699 #: ../src/virt-viewer.c:554
699 #: src/virt-viewer.c:550
700700 #, c-format
701701 msgid "Cannot determine the graphic type for the guest %s"
702702 msgstr "%s গেস্ট মেশিনের জন্য গ্রাফিকের ধরন নির্ধারণ করা সম্ভব নয়"
703703
704 #: ../src/virt-viewer.c:603
704 #: src/virt-viewer.c:599
705705 #, c-format
706706 msgid "Cannot determine the host for the guest %s"
707707 msgstr "%s গেস্ট মেশিনের জন্য হোস্ট নির্ধারণ করা সম্ভব নয়"
708708
709 #: ../src/virt-viewer.c:631
709 #: src/virt-viewer.c:627
710710 #, c-format
711711 msgid "Guest '%s' is not reachable"
712712 msgstr ""
713713
714 #: ../src/virt-viewer.c:860
714 #: src/virt-viewer.c:856
715715 #, c-format
716716 msgid "Virtual machine %s is not running"
717717 msgstr ""
718718
719 #: ../src/virt-viewer.c:884
719 #: src/virt-viewer.c:881
720720 msgid "Waiting for libvirt to start"
721721 msgstr "লিবভার্ট আরম্ভের অপেক্ষা করা হচ্ছে"
722722
723 #: ../src/virt-viewer.c:888
723 #: src/virt-viewer.c:885
724724 msgid "Finding guest domain"
725725 msgstr "গেস্ট ডোমেইন সন্ধান করা হচ্ছে"
726726
727 #: ../src/virt-viewer.c:892
727 #: src/virt-viewer.c:889
728728 msgid "Waiting for guest domain to be created"
729729 msgstr "গেস্ট ডোমেইন প্রস্তুতির অপেক্ষা করা হচ্ছে"
730730
731 #: ../src/virt-viewer.c:918
731 #: src/virt-viewer.c:921
732732 msgid "Checking guest domain status"
733733 msgstr "গেস্ট ডোমেইনের অবস্থা পরীক্ষা করতে ব্যর্থ"
734734
735 #: ../src/virt-viewer.c:921
735 #: src/virt-viewer.c:924
736736 msgid "Cannot get guest state"
737737 msgstr ""
738738
739 #: ../src/virt-viewer.c:927
739 #: src/virt-viewer.c:930
740740 msgid "Waiting for guest domain to start"
741741 msgstr "গেস্ট ডোমেইন আরম্ভের অপেক্ষা করা হচ্ছে"
742742
743 #: ../src/virt-viewer.c:1040
743 #: src/virt-viewer.c:1044
744744 #, c-format
745745 msgid "Unable to connect to libvirt with URI: %s."
746746 msgstr ""
747747
748 #: ../src/virt-viewer.c:1041
748 #: src/virt-viewer.c:1045
749749 msgid "[none]"
750750 msgstr "[শূণ্য]"
751751
752 #: ../src/virt-viewer.c:1048
752 #: src/virt-viewer.c:1052
753753 msgid "Authentication failed."
754754 msgstr ""
755755
756 #: ../src/virt-viewer.c:1108
756 #: src/virt-viewer.c:1112
757757 msgid "Failed to connect: "
758758 msgstr ""
759759
760 #.
761 #. * Local variables:
762 #. * c-indent-level: 4
763 #. * c-basic-offset: 4
764 #. * indent-tabs-mode: nil
765 #. * End:
766 #.
767 #: ../src/resources/ui/virt-viewer.ui.h:1
760 #: src/resources/ui/virt-viewer.ui:28
768761 msgid "_File"
769762 msgstr "ফাইল (_F)"
770763
771 #: ../src/resources/ui/virt-viewer.ui.h:2
764 #: src/resources/ui/virt-viewer.ui:41
772765 msgid "_Screenshot"
773766 msgstr ""
774767
775 #: ../src/resources/ui/virt-viewer.ui.h:3
768 #: src/resources/ui/virt-viewer.ui:52
776769 msgid "_USB device selection"
777770 msgstr ""
778771
779 #: ../src/resources/ui/virt-viewer.ui.h:4
772 #: src/resources/ui/virt-viewer.ui:62
780773 msgid "Smartcard insertion"
781774 msgstr "স্মার্ট-কার্ড অন্তর্ভুক্তি"
782775
783 #: ../src/resources/ui/virt-viewer.ui.h:5
776 #: src/resources/ui/virt-viewer.ui:72
784777 msgid "Smartcard removal"
785778 msgstr "স্মার্ট-কার্ড অপসারণ"
786779
787 #: ../src/resources/ui/virt-viewer.ui.h:6
780 #: src/resources/ui/virt-viewer.ui:80
788781 msgid "_Change CD"
789782 msgstr ""
790783
791 #: ../src/resources/ui/virt-viewer.ui.h:7
784 #: src/resources/ui/virt-viewer.ui:90
792785 msgid "_Preferences"
793786 msgstr ""
794787
795 #: ../src/resources/ui/virt-viewer.ui.h:8
788 #: src/resources/ui/virt-viewer.ui:103
796789 msgid "_Quit"
797790 msgstr ""
798791
799 #: ../src/resources/ui/virt-viewer.ui.h:9
792 #: src/resources/ui/virt-viewer.ui:119
793 msgid "_Machine"
794 msgstr ""
795
796 #: src/resources/ui/virt-viewer.ui:129
797 msgid "_Pause"
798 msgstr ""
799
800 #: src/resources/ui/virt-viewer.ui:144
801 msgid "_Reset"
802 msgstr ""
803
804 #: src/resources/ui/virt-viewer.ui:153
805 msgid "_Power down"
806 msgstr ""
807
808 #: src/resources/ui/virt-viewer.ui:167
800809 msgid "_View"
801810 msgstr "প্রদর্শন (_V)"
802811
803 #: ../src/resources/ui/virt-viewer.ui.h:10
812 #: src/resources/ui/virt-viewer.ui:180
804813 msgid "_Full screen"
805814 msgstr ""
806815
807 #: ../src/resources/ui/virt-viewer.ui.h:11
816 #: src/resources/ui/virt-viewer.ui:191
808817 msgid "_Zoom"
809818 msgstr "প্রদর্শনের নাম (_Z)"
810819
811 #: ../src/resources/ui/virt-viewer.ui.h:12
820 #: src/resources/ui/virt-viewer.ui:201
812821 msgid "Zoom _In"
813822 msgstr ""
814823
815 #: ../src/resources/ui/virt-viewer.ui.h:13
824 #: src/resources/ui/virt-viewer.ui:212
816825 msgid "Zoom _Out"
817826 msgstr ""
818827
819 #: ../src/resources/ui/virt-viewer.ui.h:14
828 #: src/resources/ui/virt-viewer.ui:229
820829 msgid "_Normal Size"
821830 msgstr ""
822831
823 #: ../src/resources/ui/virt-viewer.ui.h:15
832 #: src/resources/ui/virt-viewer.ui:246
824833 msgid "_Displays"
825834 msgstr ""
826835
827 #: ../src/resources/ui/virt-viewer.ui.h:16
836 #: src/resources/ui/virt-viewer.ui:255
828837 msgid "Release cursor"
829838 msgstr "কার্সার মুক্ত করা হবে"
830839
831 #: ../src/resources/ui/virt-viewer.ui.h:17
840 #: src/resources/ui/virt-viewer.ui:270
832841 msgid "_Send key"
833842 msgstr "কি পাঠিয়ে দিন (_S)"
834843
835 #: ../src/resources/ui/virt-viewer.ui.h:18
844 #: src/resources/ui/virt-viewer.ui:279
836845 msgid "_Help"
837846 msgstr "সহায়তা (_H)"
838847
839 #: ../src/resources/ui/virt-viewer.ui.h:19
848 #: src/resources/ui/virt-viewer.ui:290
840849 msgid "_Guest Details"
841850 msgstr ""
842851
843 #: ../src/resources/ui/virt-viewer.ui.h:20
852 #: src/resources/ui/virt-viewer.ui:297
844853 msgid "_About"
845854 msgstr ""
846855
847 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
856 #: src/resources/ui/virt-viewer-guest-details.ui:7
848857 msgid "Guest Details"
849858 msgstr ""
850859
851 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
860 #: src/resources/ui/virt-viewer-guest-details.ui:56
852861 msgid "Name:"
853862 msgstr ""
854863
855 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
864 #: src/resources/ui/virt-viewer-guest-details.ui:68
856865 msgid "GUID:"
857866 msgstr ""
858867
859 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
868 #: src/resources/ui/virt-viewer-vm-connection.ui:7
860869 msgid "Choose a virtual machine"
861870 msgstr ""
862871
863 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
872 #: src/resources/ui/virt-viewer-vm-connection.ui:96
864873 msgid "Available virtual machines"
865874 msgstr ""
866875
867 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
876 #: src/resources/ui/virt-viewer-preferences.ui:8
868877 msgid "Preferences"
869878 msgstr ""
870879
871 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
880 #: src/resources/ui/virt-viewer-preferences.ui:48
872881 msgid "Folder sharing"
873882 msgstr ""
874883
875 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
884 #: src/resources/ui/virt-viewer-preferences.ui:70
876885 msgid "Share folder"
877886 msgstr ""
878887
879 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
888 #: src/resources/ui/virt-viewer-preferences.ui:82
880889 msgid "Read-only"
881890 msgstr ""
882891
883 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
892 #: src/resources/ui/virt-viewer-preferences.ui:96
893 msgid "Share clipboard"
894 msgstr ""
895
896 #: src/resources/ui/virt-viewer-preferences.ui:132
884897 msgid "Spice"
885898 msgstr ""
899
900 #~ msgid "virt-manager.org"
901 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/bo.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Tibetan\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/br.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Breton\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n > 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Bodo\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/bs.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Bosnian\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1818 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444
459 #: ../src/virt-viewer-file-transfer-dialog.c:228
460 #, c-format
461 msgid "An error caused the following file transfers to fail:%s"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:38
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
465450 msgid "Virt Viewer"
466451 msgstr ""
467452
468 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
469454 msgid "Invalid password"
470455 msgstr ""
471456
472 #. Create the widgets
473 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
474458 msgid "Select USB devices for redirection"
475459 msgstr ""
476460
477 #: ../src/virt-viewer-session-spice.c:804
478 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
479463 msgid "_Close"
480464 msgstr ""
481465
482 #: ../src/virt-viewer-session-vnc.c:162
483 #, c-format
484 msgid "Unsupported authentication type %d"
485 msgstr ""
486
487 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
488484 msgid "No running virtual machine found"
489485 msgstr ""
490486
491 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
492488 msgid "No virtual machine was chosen"
493489 msgstr ""
494490
495 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
496492 msgid "Ctrl+Alt+_Del"
497493 msgstr ""
498494
499 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
500496 msgid "Ctrl+Alt+_Backspace"
501497 msgstr ""
502498
503 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
504500 msgid "Ctrl+Alt+F_1"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
508504 msgid "Ctrl+Alt+F_2"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
512508 msgid "Ctrl+Alt+F_3"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
516512 msgid "Ctrl+Alt+F_4"
517513 msgstr ""
518514
519 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
520516 msgid "Ctrl+Alt+F_5"
521517 msgstr ""
522518
523 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
524520 msgid "Ctrl+Alt+F_6"
525521 msgstr ""
526522
527 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
528524 msgid "Ctrl+Alt+F_7"
529525 msgstr ""
530526
531 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
532528 msgid "Ctrl+Alt+F_8"
533529 msgstr ""
534530
535 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
536532 msgid "Ctrl+Alt+F_9"
537533 msgstr ""
538534
539 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
540536 msgid "Ctrl+Alt+F1_0"
541537 msgstr ""
542538
543 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
544540 msgid "Ctrl+Alt+F11"
545541 msgstr ""
546542
547 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
548544 msgid "Ctrl+Alt+F12"
549545 msgstr ""
550546
551 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
552552 #, c-format
553553 msgid "Unable to determine image format for file '%s'"
554554 msgstr ""
555555
556 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
557561 msgid "_Save"
558562 msgstr ""
559563
560 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
561565 msgid "Screenshot.png"
562566 msgstr ""
563567
564 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
565569 msgid "Unknown"
566570 msgstr ""
567571
568 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
569573 msgid "Unable to connnect to oVirt"
570574 msgstr ""
571575
572 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
573577 msgid "Disconnect"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
577581 msgid "USB device selection"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
581585 msgid "Send key combination"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
585589 msgid "Leave fullscreen"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
589593 msgid "Ctrl+Alt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
593597 #, c-format
594598 msgid "(Press %s to release pointer)"
595599 msgstr ""
596600
597 #. translators:
598 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600 #.
601 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
602602 #, c-format
603603 msgid "%s%s%s - %s"
604604 msgstr ""
605605
606 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
608607 msgid " "
609608 msgstr ""
610609
611 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
612611 #, c-format
613612 msgid ""
614613 "At least %s version %s is required to setup this connection, see %s for "
615614 "details"
616615 msgstr ""
617616
618 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
619618 #, c-format
620619 msgid "At least %s version %s is required to setup this connection"
621620 msgstr ""
622621
623 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
624623 msgid "Direct connection with no automatic tunnels"
625624 msgstr ""
626625
627 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
628627 msgid "Attach to the local display using libvirt"
629628 msgstr ""
630629
631 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
632631 msgid "Connect to hypervisor"
633632 msgstr ""
634633
635 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
636635 msgid "Wait for domain to start"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
640639 msgid "Reconnect to domain upon restart"
641640 msgstr ""
642641
643 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
644643 msgid "Select the virtual machine only by its name"
645644 msgstr ""
646645
647 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
648647 msgid "Select the virtual machine only by its id"
649648 msgstr ""
650649
651 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
652651 msgid "Select the virtual machine only by its uuid"
653652 msgstr ""
654653
655 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
656655 msgid "Virtual machine graphical console"
657656 msgstr ""
658657
659 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
660659 #, c-format
661660 msgid ""
662661 "\n"
664663 "\n"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
668667 #, c-format
669668 msgid ""
670669 "\n"
672671 "\n"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
676675 msgid "Waiting for guest domain to re-start"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
680679 #, c-format
681680 msgid "Cannot determine the graphic type for the guest %s"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
685684 #, c-format
686685 msgid "Cannot determine the host for the guest %s"
687686 msgstr ""
688687
689 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
690689 #, c-format
691690 msgid "Guest '%s' is not reachable"
692691 msgstr ""
693692
694 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
695694 #, c-format
696695 msgid "Virtual machine %s is not running"
697696 msgstr ""
698697
699 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
700699 msgid "Waiting for libvirt to start"
701700 msgstr ""
702701
703 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
704703 msgid "Finding guest domain"
705704 msgstr ""
706705
707 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
708707 msgid "Waiting for guest domain to be created"
709708 msgstr ""
710709
711 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
712711 msgid "Checking guest domain status"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
716715 msgid "Cannot get guest state"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
720719 msgid "Waiting for guest domain to start"
721720 msgstr ""
722721
723 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
724723 #, c-format
725724 msgid "Unable to connect to libvirt with URI: %s."
726725 msgstr ""
727726
728 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
729728 msgid "[none]"
730729 msgstr ""
731730
732 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
733732 msgid "Authentication failed."
734733 msgstr ""
735734
736 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
737736 msgid "Failed to connect: "
738737 msgstr ""
739738
740 #.
741 #. * Local variables:
742 #. * c-indent-level: 4
743 #. * c-basic-offset: 4
744 #. * indent-tabs-mode: nil
745 #. * End:
746 #.
747 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
748740 msgid "_File"
749741 msgstr ""
750742
751 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
752744 msgid "_Screenshot"
753745 msgstr ""
754746
755 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
756748 msgid "_USB device selection"
757749 msgstr ""
758750
759 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
760752 msgid "Smartcard insertion"
761753 msgstr ""
762754
763 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
764756 msgid "Smartcard removal"
765757 msgstr ""
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
768760 msgid "_Change CD"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
772764 msgid "_Preferences"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
776768 msgid "_Quit"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
780788 msgid "_View"
781789 msgstr ""
782790
783 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
784792 msgid "_Full screen"
785793 msgstr ""
786794
787 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
788796 msgid "_Zoom"
789797 msgstr ""
790798
791 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
792800 msgid "Zoom _In"
793801 msgstr ""
794802
795 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
796804 msgid "Zoom _Out"
797805 msgstr ""
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
800808 msgid "_Normal Size"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
804812 msgid "_Displays"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
808816 msgid "Release cursor"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
812820 msgid "_Send key"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
816824 msgid "_Help"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
820828 msgid "_Guest Details"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
824832 msgid "_About"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
828836 msgid "Guest Details"
829837 msgstr ""
830838
831 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
832840 msgid "Name:"
833841 msgstr ""
834842
835 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
836844 msgid "GUID:"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
840848 msgid "Choose a virtual machine"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
844852 msgid "Available virtual machines"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
848856 msgid "Preferences"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
852860 msgid "Folder sharing"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
856864 msgid "Share folder"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
860868 msgid "Read-only"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
864876 msgid "Spice"
865877 msgstr ""
Binary diff not shown
+296
-281
po/ca.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015. #zanata
77 # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2016. #zanata
88 # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2017. #zanata
9 # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2018. #zanata
910 msgid ""
1011 msgstr ""
11 "Project-Id-Version: PACKAGE VERSION\n"
12 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
14 "PO-Revision-Date: 2017-10-15 03:08-0400\n"
12 "Project-Id-Version: virt-viewer 9.0\n"
13 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
14 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
15 "PO-Revision-Date: 2018-02-27 05:02+0000\n"
1516 "Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>\n"
1617 "Language-Team: Catalan (http://www.transifex.com/projects/p/virt-viewer/"
1718 "language/ca/)\n"
2021 "Content-Type: text/plain; charset=UTF-8\n"
2122 "Content-Transfer-Encoding: 8bit\n"
2223 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23 "X-Generator: Zanata 3.9.6\n"
24
25 #: ../data/remote-viewer.appdata.xml.in.h:1
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
24 "X-Generator: Zanata 4.6.2\n"
25
26 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
27 #: src/remote-viewer-main.c:39
2728 msgid "Remote Viewer"
2829 msgstr "Visualitzador remot"
2930
30 #: ../data/remote-viewer.appdata.xml.in.h:2
31 #: data/remote-viewer.appdata.xml.in:7
3132 msgid "Remotely access virtual machines"
3233 msgstr "Accedeix de manera remota a màquines virtuals"
3334
34 #: ../data/remote-viewer.appdata.xml.in.h:3
35 #: data/remote-viewer.appdata.xml.in:9
3536 msgid ""
3637 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3738 "time it supports guest OS using the VNC or SPICE protocols. Further "
4647 "usuaris. El visualitzador pot connectar directament al SO del convidat local "
4748 "o amb allotjament remot, de manera opcional mitjançant el xifrat SSL/TLS."
4849
49 #: ../data/remote-viewer.desktop.in.h:2
50 #: data/remote-viewer.desktop.in:4
5051 msgid "Access remote desktops"
5152 msgstr "Accediu a escriptoris remots"
5253
53 #: ../data/virt-viewer-mime.xml.in.h:1
54 msgid "Virt-Viewer connection file"
55 msgstr "Fitxer de connexió Virt-Viewer"
56
57 #: ../src/remote-viewer-iso-list-dialog.c:160
54 #: src/remote-viewer-iso-list-dialog.c:156
5855 msgid "Failed to fetch CD names"
5956 msgstr "No s'han pogut capturar els noms dels CD"
6057
61 #: ../src/remote-viewer-iso-list-dialog.c:212
58 #: src/remote-viewer-iso-list-dialog.c:205
6259 msgid "<b>Loading...</b>"
6360 msgstr "<b>S'està carregant...</b>"
6461
65 #: ../src/remote-viewer-iso-list-dialog.c:285
62 #: src/remote-viewer-iso-list-dialog.c:276
6663 msgid "Refresh"
6764 msgstr "Refresca"
6865
69 #: ../src/remote-viewer-iso-list-dialog.c:286
66 #: src/remote-viewer-iso-list-dialog.c:277
7067 msgid "Close"
7168 msgstr "Tanca"
7269
73 #: ../src/remote-viewer-iso-list-dialog.c:306
70 #: src/remote-viewer-iso-list-dialog.c:297
7471 msgid "Unspecified error"
7572 msgstr "Error sense especificar"
7673
77 #: ../src/remote-viewer-iso-list-dialog.c:328
74 #: src/remote-viewer-iso-list-dialog.c:318
7875 msgid "Failed to change CD"
7976 msgstr "Ha fallat el canvi de DE"
8077
81 #: ../src/remote-viewer-iso-list-dialog.c:380
78 #: src/remote-viewer-iso-list-dialog.c:370
8279 msgid "Change CD"
8380 msgstr "Canvia de CD"
8481
85 #: ../src/remote-viewer.c:118
82 #: src/remote-viewer.c:116
8683 msgid "Set window title"
8784 msgstr "Estableix el títol de la finestra"
8885
89 #: ../src/remote-viewer.c:125
86 #: src/remote-viewer.c:123
9087 msgid "Remote viewer client"
9188 msgstr "Client del visualitzador remot"
9289
93 #: ../src/remote-viewer.c:150
94 #, c-format
90 #: src/remote-viewer.c:148
9591 msgid ""
9692 "\n"
9793 "Error: can't handle multiple URIs\n"
10096 "\n"
10197 "Error: no es poden gestionar múltiples URI\n"
10298
103 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
99 #: src/remote-viewer.c:162 src/virt-viewer.c:200
104100 #, c-format
105101 msgid "Run '%s --help' to see a full list of available command line options\n"
106102 msgstr ""
107103 "Executeu '%s --help' per visualitzar el llistat complet d'opcions "
108104 "disponibles per a la línia d'ordres\n"
109105
110 #: ../src/remote-viewer.c:435
106 #: src/remote-viewer.c:429
111107 msgid "failed to parse ovirt uri"
112108 msgstr "Ha fallat l'anàlisi de l'uri d'ovirt"
113109
114 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
110 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
115111 msgid "Authentication was cancelled"
116112 msgstr "S'ha cancel·lat l'autenticació"
117113
118 #: ../src/remote-viewer.c:480
114 #: src/remote-viewer.c:472
119115 #, c-format
120116 msgid "oVirt VM %s is not running"
121117 msgstr "La MV oVirt %s no s'està executant"
122118
123 #: ../src/remote-viewer.c:494
119 #: src/remote-viewer.c:486
124120 #, c-format
125121 msgid "oVirt VM %s has no display"
126122 msgstr "La MV oVirt %s no té cap pantalla"
127123
128 #: ../src/remote-viewer.c:520
124 #: src/remote-viewer.c:512
129125 #, c-format
130126 msgid "oVirt VM %s has no host information"
131127 msgstr "La MV d'oVirt %s no té cap informació de l'amfitrió"
132128
133 #: ../src/remote-viewer.c:531
134 #, c-format
135 msgid "oVirt VM %s has unknown display type: %d"
136 msgstr "La MV oVirt %s té un tipus desconegut de pantalla: %d"
137
138 #: ../src/remote-viewer.c:713
129 #: src/remote-viewer.c:523
130 #, c-format
131 msgid "oVirt VM %s has unknown display type: %u"
132 msgstr ""
133
134 #: src/remote-viewer.c:690
135 msgid "Couldn't open oVirt session: "
136 msgstr "No s'ha pogut obrir la sessió d'oVirt:"
137
138 #: src/remote-viewer.c:718
139139 msgid "Failed to initiate connection"
140140 msgstr "Ha fallat la inicialització de la connexió"
141141
142 #: ../src/remote-viewer.c:742
142 #: src/remote-viewer.c:747
143143 msgid "No connection was chosen"
144144 msgstr "No s'ha seleccionat cap connexió"
145145
146 #: ../src/remote-viewer.c:759
146 #: src/remote-viewer.c:764
147147 msgid "Failed to read stdin: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:776
148 msgstr "Ha fallat la lectura de l'stdin: "
149
150 #: src/remote-viewer.c:781
151151 #, c-format
152152 msgid "Invalid file %s: "
153153 msgstr "Fitxer no vàlid %s:"
154154
155 #: ../src/remote-viewer.c:786
155 #: src/remote-viewer.c:791
156156 msgid "Cannot determine the connection type from URI"
157157 msgstr "No s'ha pogut determinar el tipus de connexió a partir de l'URI"
158158
159 #: ../src/remote-viewer.c:792
160 msgid "Couldn't open oVirt session: "
161 msgstr "No s'ha pogut obrir la sessió d'oVirt:"
162
163 #: ../src/remote-viewer.c:815
159 #: src/remote-viewer.c:810
164160 #, c-format
165161 msgid "Unable to connect: %s"
166162 msgstr "No es pot connectar: %s"
167163
168 #.
169 #. * Local variables:
170 #. * c-indent-level: 4
171 #. * c-basic-offset: 4
172 #. * indent-tabs-mode: nil
173 #. * End:
174 #.
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:6
176165 msgid "Connection details"
177166 msgstr "Detalls de la connexió"
178167
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
168 #: src/resources/ui/remote-viewer-connect.ui:24
180169 msgid "Connection _Address"
181170 msgstr "_Adreça de la connexió"
182171
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:54
184173 msgid "For example, spice://foo.example.org:5900"
185174 msgstr "Per exemple, spice://foo.exemple.cat:5900"
186175
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
176 #: src/resources/ui/remote-viewer-connect.ui:78
188177 msgid "Recent connections"
189178 msgstr "Connexions recents"
190179
191 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
192 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
193 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
194 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
180 #: src/resources/ui/remote-viewer-connect.ui:120
181 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
182 #: src/resources/ui/virt-viewer-vm-connection.ui:24
183 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
195184 msgid "_Cancel"
196185 msgstr "_Cancel·la"
197186
198 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
199 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
187 #: src/resources/ui/remote-viewer-connect.ui:134
188 #: src/resources/ui/virt-viewer-vm-connection.ui:38
200189 msgid "C_onnect"
201190 msgstr "C_onnecta"
202191
203 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
192 #: src/resources/ui/remote-viewer-iso-list.ui:28
204193 msgid "Loading..."
205194 msgstr "S'està carregant..."
206195
207 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
196 #: src/resources/ui/remote-viewer-iso-list.ui:78
208197 msgid "Select ISO"
209198 msgstr "Selecciona l'ISO"
210199
211 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
200 #: src/resources/ui/remote-viewer-iso-list.ui:116
212201 msgid "Selected"
213202 msgstr "Seleccionat"
214203
215 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
216 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
204 #: src/resources/ui/remote-viewer-iso-list.ui:129
205 #: src/resources/ui/virt-viewer-vm-connection.ui:72
217206 msgid "Name"
218207 msgstr "Nom"
219208
220 #: ../src/resources/ui/virt-viewer-about.ui.h:1
209 #: src/resources/ui/virt-viewer-about.ui:7
221210 msgid "About Virt-Viewer"
222211 msgstr "Quant a Virt-Viewer"
223212
224 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213 #: src/resources/ui/virt-viewer-about.ui:16
225214 msgid ""
226215 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
227216 "Copyright (C) 2007-2014 Red Hat, Inc."
229218 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
230219 "Copyright (C) 2007-2014 Red Hat, Inc."
231220
232 #: ../src/resources/ui/virt-viewer-about.ui.h:4
221 #: src/resources/ui/virt-viewer-about.ui:18
233222 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
234223 msgstr ""
235 "Un client d'escriptori remot que estigui construït amb GTK-VNC, SPICE-GTK i "
224 "Un client d'escriptori remot que està construït amb GTK-VNC, SPICE-GTK i "
236225 "libvirt"
237226
238 #: ../src/resources/ui/virt-viewer-about.ui.h:5
239 msgid "virt-manager.org"
240 msgstr "virt-manager.org"
241
242 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227 #: src/resources/ui/virt-viewer-about.ui:20
228 msgid "gitlab.com/virt-viewer/virt-viewer"
229 msgstr ""
230
231 #: src/resources/ui/virt-viewer-about.ui:21
243232 msgid ""
244233 "This program is free software; you can redistribute it and/or modify\n"
245234 "it under the terms of the GNU General Public License as published by\n"
269258 "amb aquest programa; si no fos així, escriviu a la Free Software\n"
270259 "Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\n"
271260
272 #: ../src/resources/ui/virt-viewer-about.ui.h:20
261 #: src/resources/ui/virt-viewer-about.ui:38
273262 msgid "The Fedora Translation Team"
274263 msgstr "Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>"
275264
276 #: ../src/virt-viewer-app.c:459
265 #: src/virt-viewer-app.c:594
277266 msgid "Do you want to close the session?"
278267 msgstr "Voleu tancar la sessió?"
279268
280 #: ../src/virt-viewer-app.c:461
269 #: src/virt-viewer-app.c:596
281270 msgid "Do not ask me again"
282271 msgstr "No m'ho tornis a preguntar"
283272
284 #: ../src/virt-viewer-app.c:655
273 #: src/virt-viewer-app.c:767
285274 #, c-format
286275 msgid "Address is too long for unix socket_path: %s"
287276 msgstr "L'adreça és massa llarga per al socket_path UNIX: %s"
288277
289 #: ../src/virt-viewer-app.c:665
278 #: src/virt-viewer-app.c:777
290279 #, c-format
291280 msgid "Creating unix socket failed: %s"
292281 msgstr "Ha fallat la creació del sòcol UNIX: %s"
293282
294 #: ../src/virt-viewer-app.c:671
283 #: src/virt-viewer-app.c:783
295284 #, c-format
296285 msgid "Connecting to unix socket failed: %s"
297286 msgstr "Ha fallat la connexió al sòcol UNIX: %s"
298287
299 #: ../src/virt-viewer-app.c:955
288 #: src/virt-viewer-app.c:1077
300289 #, c-format
301290 msgid "Waiting for display %d..."
302291 msgstr "A l'espera de la pantalla %d..."
303292
304 #: ../src/virt-viewer-app.c:1062
293 #: src/virt-viewer-app.c:1193
305294 #, c-format
306295 msgid "Unsupported graphic type '%s'"
307296 msgstr "Tipus no admès de gràfics «%s»"
308297
309 #: ../src/virt-viewer-app.c:1146
298 #: src/virt-viewer-app.c:1277
310299 msgid "Connect to ssh failed."
311300 msgstr "La connexió per ssh ha fallat."
312301
313 #: ../src/virt-viewer-app.c:1161
302 #: src/virt-viewer-app.c:1292
314303 #, c-format
315304 msgid "Can't connect to channel: %s"
316305 msgstr "No es pot connectar al canal: %s"
317306
318 #: ../src/virt-viewer-app.c:1163
307 #: src/virt-viewer-app.c:1294
319308 msgid "only SSH or unix socket connection supported."
320309 msgstr "Només s'admeten connexions SSH o sòcol UNIX."
321310
322 #: ../src/virt-viewer-app.c:1176
311 #: src/virt-viewer-app.c:1311
323312 msgid "Connect to channel unsupported."
324313 msgstr "La connexió al canal no és compatible."
325314
326 #: ../src/virt-viewer-app.c:1238
315 #: src/virt-viewer-app.c:1376
327316 msgid "Display can only be attached through libvirt with --attach"
328317 msgstr "La pantalla únicament pot adjuntar-se a través de libvirt amb --attach"
329318
330 #: ../src/virt-viewer-app.c:1263
319 #: src/virt-viewer-app.c:1401
331320 msgid "Connecting to graphic server"
332321 msgstr "S'està connectant al servidor gràfic"
333322
334 #: ../src/virt-viewer-app.c:1362
323 #: src/virt-viewer-app.c:1500
335324 msgid "Guest domain has shutdown"
336 msgstr "S'ha apagat el domini del convidat"
337
338 #: ../src/virt-viewer-app.c:1423
325 msgstr "S'ha aturat el domini del convidat"
326
327 #: src/virt-viewer-app.c:1561
339328 msgid "Connected to graphic server"
340329 msgstr "S'ha connectat al servidor gràfic"
341330
342 #: ../src/virt-viewer-app.c:1452
331 #: src/virt-viewer-app.c:1590
343332 #, c-format
344333 msgid "Unable to connect to the graphic server %s"
345 msgstr "No s'ha pogut connectar amb el servidor gràfic %s"
346
347 #: ../src/virt-viewer-app.c:1478
334 msgstr "No es pot connectar amb el servidor gràfic %s"
335
336 #: src/virt-viewer-app.c:1616
348337 #, c-format
349338 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
350 msgstr "No s'ha pogut autenticar amb el servidor d'escriptori remot a %s: %s\n"
351
352 #: ../src/virt-viewer-app.c:1492
339 msgstr "No es pot autenticar amb el servidor d'escriptori remot a %s: %s\n"
340
341 #: src/virt-viewer-app.c:1630
353342 #, c-format
354343 msgid "Unable to authenticate with remote desktop server: %s"
355 msgstr "No s'ha pogut autentificar amb el servidor d'escriptori remot: %s"
356
357 #: ../src/virt-viewer-app.c:1500
344 msgstr "No es pot autentificar amb el servidor d'escriptori remot: %s"
345
346 #: src/virt-viewer-app.c:1638
358347 #, c-format
359348 msgid "USB redirection error: %s"
360349 msgstr "S'ha produït un error en la redirecció USB: %s"
361350
362 #: ../src/virt-viewer-app.c:1834
351 #: src/virt-viewer-app.c:2026
363352 #, c-format
364353 msgid "Zoom level must be within %d-%d\n"
365354 msgstr "El nivell del zoom ha d'estar dins de l'interval %d-%d\n"
366355
367 #: ../src/virt-viewer-app.c:1887
356 #: src/virt-viewer-app.c:2081
368357 #, c-format
369358 msgid "%s\n"
370359 msgstr "%s\n"
371360
372 #: ../src/virt-viewer-app.c:1897
361 #: src/virt-viewer-app.c:2091
373362 #, c-format
374363 msgid "%s version %s"
375364 msgstr "%s versió %s"
376365
377 #: ../src/virt-viewer-app.c:2321
366 #: src/virt-viewer-app.c:2545
378367 #, c-format
379368 msgid "Display _%d"
380369 msgstr "Monitor _%d"
381370
382 #: ../src/virt-viewer-app.c:2577
371 #: src/virt-viewer-app.c:2829
383372 #, c-format
384373 msgid "Invalid kiosk-quit argument: %s"
385374 msgstr "Argument no vàlid de kiosk-quit: %s"
386375
387 #: ../src/virt-viewer-app.c:2588
376 #: src/virt-viewer-app.c:2840
388377 msgid "Display version information"
389 msgstr "Mostra informació de la versió"
390
391 #: ../src/virt-viewer-app.c:2590
378 msgstr "Mostra la informació de la versió"
379
380 #: src/virt-viewer-app.c:2842
392381 msgid "Zoom level of window, in percentage"
393382 msgstr "Nivell de zoom de la finestra, en percentatge"
394383
395 #: ../src/virt-viewer-app.c:2592
384 #: src/virt-viewer-app.c:2844
396385 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
397386 msgstr ""
398387 "Obre en mode de pantalla completa (ajusta la resolució del convidat per "
399388 "adaptar-se al client)"
400389
401 #: ../src/virt-viewer-app.c:2594
390 #: src/virt-viewer-app.c:2846
402391 msgid "Customise hotkeys"
403392 msgstr "Personalitza les dreceres de teclat"
404393
405 #: ../src/virt-viewer-app.c:2596
394 #: src/virt-viewer-app.c:2848
406395 msgid "Enable kiosk mode"
407396 msgstr "Activa el mode quiosc"
408397
409 #: ../src/virt-viewer-app.c:2598
398 #: src/virt-viewer-app.c:2850
410399 msgid "Quit on given condition in kiosk mode"
411400 msgstr "Surt del mode quiosc en una condició donada"
412401
413 #: ../src/virt-viewer-app.c:2598
402 #: src/virt-viewer-app.c:2850
414403 msgid "<never|on-disconnect>"
415404 msgstr "<never|on-disconnect>"
416405
417 #: ../src/virt-viewer-app.c:2600
406 #: src/virt-viewer-app.c:2852
418407 msgid "Display verbose information"
419408 msgstr "Mostra informació detallada"
420409
421 #: ../src/virt-viewer-app.c:2602
410 #: src/virt-viewer-app.c:2854
422411 msgid "Display debugging information"
423 msgstr "Mostra informació de depuració"
424
425 #: ../src/virt-viewer-auth.c:89
412 msgstr "Mostra la informació de depuració"
413
414 #: src/virt-viewer-auth.c:89
426415 #, c-format
427416 msgid ""
428417 "Authentication is required for the %s connection to:\n"
435424 "<b>%s</b>\n"
436425 "\n"
437426
438 #: ../src/virt-viewer-auth.c:93
427 #: src/virt-viewer-auth.c:93
439428 #, c-format
440429 msgid "Authentication is required for the %s connection:\n"
441430 msgstr "Es requereix autentificació per a la connexió %s:\n"
442431
443 #.
444 #. * Local variables:
445 #. * c-indent-level: 4
446 #. * c-basic-offset: 4
447 #. * indent-tabs-mode: nil
448 #. * End:
449 #.
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
432 #: src/resources/ui/virt-viewer-auth.ui:7
451433 msgid "Authentication required"
452434 msgstr "Es requereix autenticació"
453435
454 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
436 #: src/resources/ui/virt-viewer-auth.ui:42
455437 msgid "_OK"
456438 msgstr "D'ac_ord"
457439
458 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
459 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
460 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
440 #: src/resources/ui/virt-viewer-auth.ui:71
441 #: src/resources/ui/virt-viewer-guest-details.ui:82
442 #: src/resources/ui/virt-viewer-guest-details.ui:96
443 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
461444 msgid "label"
462445 msgstr "etiqueta"
463446
464 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
447 #: src/resources/ui/virt-viewer-auth.ui:93
465448 msgid "Password:"
466449 msgstr "Contrasenya:"
467450
468 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
451 #: src/resources/ui/virt-viewer-auth.ui:105
469452 msgid "Username:"
470453 msgstr "Nom d'usuari:"
471454
472 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
455 #: src/resources/ui/virt-viewer-auth.ui:137
473456 msgid "Show password"
474457 msgstr "Mostra la contrasenya"
475458
476 #: ../src/virt-viewer-display-vnc.c:134
459 #: src/virt-viewer-display-vnc.c:130
477460 msgid "VNC does not provide GUID"
478461 msgstr "VNC no proporciona GUID"
479462
480 #: ../src/virt-viewer-file-transfer-dialog.c:128
463 #: src/virt-viewer-display-vte.c:181
464 msgid "Console support is compiled out!"
465 msgstr ""
466
467 #: src/virt-viewer-file-transfer-dialog.c:124
481468 msgid "File Transfers"
482469 msgstr "Transferències de fitxers"
483470
484 #: ../src/virt-viewer-file-transfer-dialog.c:154
471 #: src/virt-viewer-file-transfer-dialog.c:150
485472 msgid "Transferring 1 file..."
486473 msgstr "S'està transferint 1 fitxer..."
487474
488 #: ../src/virt-viewer-file-transfer-dialog.c:156
489 #, c-format
490 msgid "Transferring %d file of %d..."
491 msgid_plural "Transferring %d files of %d..."
492 msgstr[0] "S'està transferint %d fitxer de %d..."
493 msgstr[1] "S'estan transferint %d fitxers de %d..."
494
495 #: ../src/virt-viewer-file-transfer-dialog.c:228
496 #, c-format
497 msgid "An error caused the following file transfers to fail:%s"
498 msgstr ""
499 "Un error ha provocat la fallida de la transferència dels següents fitxers: %s"
500
501 #: ../src/virt-viewer-main.c:38
475 #: src/virt-viewer-file-transfer-dialog.c:152
476 #, c-format
477 msgid "Transferring %u file of %u..."
478 msgid_plural "Transferring %u files of %u..."
479 msgstr[0] ""
480 msgstr[1] ""
481
482 #: src/virt-viewer-file-transfer-dialog.c:225
483 msgid "An error caused the following file transfers to fail:"
484 msgstr ""
485
486 #: src/virt-viewer-main.c:38
502487 msgid "Virt Viewer"
503488 msgstr "Virt Viewer"
504489
505 #: ../src/virt-viewer-session-spice.c:704
490 #: src/virt-viewer-session-spice.c:731
506491 msgid "Invalid password"
507492 msgstr "La contrasenya no és vàlida"
508493
509 #. Create the widgets
510 #: ../src/virt-viewer-session-spice.c:802
494 #: src/virt-viewer-session-spice.c:829
511495 msgid "Select USB devices for redirection"
512496 msgstr "Seleccioneu els dispositius USB per a la redirecció"
513497
514 #: ../src/virt-viewer-session-spice.c:804
515 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
498 #: src/virt-viewer-session-spice.c:831
499 #: src/resources/ui/virt-viewer-guest-details.ui:23
516500 msgid "_Close"
517501 msgstr "Tan_ca"
518502
519 #: ../src/virt-viewer-session-vnc.c:162
520 #, c-format
521 msgid "Unsupported authentication type %d"
522 msgstr "El tipus d'autenticació no és compatible %d"
523
524 #: ../src/virt-viewer-vm-connection.c:64
503 #: src/virt-viewer-session-spice.c:1019
504 msgid "Serial"
505 msgstr ""
506
507 #: src/virt-viewer-session-spice.c:1021
508 msgid "QEMU human monitor"
509 msgstr ""
510
511 #: src/virt-viewer-session-spice.c:1023
512 msgid "QEMU debug console"
513 msgstr ""
514
515 #: src/virt-viewer-session-vnc.c:158
516 #, c-format
517 msgid "Unsupported authentication type %u"
518 msgstr ""
519
520 #: src/virt-viewer-vm-connection.c:64
525521 msgid "No running virtual machine found"
526 msgstr ""
527
528 #: ../src/virt-viewer-vm-connection.c:93
522 msgstr "No s'ha trobat cap màquina virtual en execució"
523
524 #: src/virt-viewer-vm-connection.c:93
529525 msgid "No virtual machine was chosen"
530526 msgstr "No s'ha triat cap màquina virtual"
531527
532 #: ../src/virt-viewer-window.c:544
528 #: src/virt-viewer-window.c:621
533529 msgid "Ctrl+Alt+_Del"
534530 msgstr "Ctrl+Alt+_ Supr"
535531
536 #: ../src/virt-viewer-window.c:545
532 #: src/virt-viewer-window.c:622
537533 msgid "Ctrl+Alt+_Backspace"
538534 msgstr "Ctrl+Alt+_Retrocés"
539535
540 #: ../src/virt-viewer-window.c:547
536 #: src/virt-viewer-window.c:624
541537 msgid "Ctrl+Alt+F_1"
542538 msgstr "Ctrl+Alt+F_1"
543539
544 #: ../src/virt-viewer-window.c:548
540 #: src/virt-viewer-window.c:625
545541 msgid "Ctrl+Alt+F_2"
546542 msgstr "Ctrl+Alt+F_2"
547543
548 #: ../src/virt-viewer-window.c:549
544 #: src/virt-viewer-window.c:626
549545 msgid "Ctrl+Alt+F_3"
550546 msgstr "Ctrl+Alt+F_3"
551547
552 #: ../src/virt-viewer-window.c:550
548 #: src/virt-viewer-window.c:627
553549 msgid "Ctrl+Alt+F_4"
554550 msgstr "Ctrl+Alt+F_4"
555551
556 #: ../src/virt-viewer-window.c:551
552 #: src/virt-viewer-window.c:628
557553 msgid "Ctrl+Alt+F_5"
558554 msgstr "Ctrl+Alt+F_5"
559555
560 #: ../src/virt-viewer-window.c:552
556 #: src/virt-viewer-window.c:629
561557 msgid "Ctrl+Alt+F_6"
562558 msgstr "Ctrl+Alt+F_6"
563559
564 #: ../src/virt-viewer-window.c:553
560 #: src/virt-viewer-window.c:630
565561 msgid "Ctrl+Alt+F_7"
566562 msgstr "Ctrl+Alt+F_7"
567563
568 #: ../src/virt-viewer-window.c:554
564 #: src/virt-viewer-window.c:631
569565 msgid "Ctrl+Alt+F_8"
570566 msgstr "Ctrl+Alt+F_8"
571567
572 #: ../src/virt-viewer-window.c:555
568 #: src/virt-viewer-window.c:632
573569 msgid "Ctrl+Alt+F_9"
574570 msgstr "Ctrl+Alt+F_9"
575571
576 #: ../src/virt-viewer-window.c:556
572 #: src/virt-viewer-window.c:633
577573 msgid "Ctrl+Alt+F1_0"
578574 msgstr "Ctrl+Alt+F1_0"
579575
580 #: ../src/virt-viewer-window.c:557
576 #: src/virt-viewer-window.c:634
581577 msgid "Ctrl+Alt+F11"
582578 msgstr "Ctrl+Alt+F11"
583579
584 #: ../src/virt-viewer-window.c:558
580 #: src/virt-viewer-window.c:635
585581 msgid "Ctrl+Alt+F12"
586582 msgstr "Ctrl+Alt+F12"
587583
588 #: ../src/virt-viewer-window.c:953
584 #: src/virt-viewer-window.c:637
585 msgid "_PrintScreen"
586 msgstr ""
587
588 #: src/virt-viewer-window.c:1030
589589 #, c-format
590590 msgid "Unable to determine image format for file '%s'"
591 msgstr ""
592
593 #: ../src/virt-viewer-window.c:980
591 msgstr "No es pot determinar el format de la imatge per al fitxer '%s'"
592
593 #: src/virt-viewer-window.c:1053
594 msgid "Save screenshot"
595 msgstr ""
596
597 #: src/virt-viewer-window.c:1057
594598 msgid "_Save"
595599 msgstr "De_sa"
596600
597 #: ../src/virt-viewer-window.c:988
601 #: src/virt-viewer-window.c:1065
598602 msgid "Screenshot.png"
599 msgstr ""
600
601 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
603 msgstr "Captura.png"
604
605 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
602606 msgid "Unknown"
603607 msgstr "Desconegut"
604608
605 #: ../src/virt-viewer-window.c:1152
609 #: src/virt-viewer-window.c:1237
606610 msgid "Unable to connnect to oVirt"
607611 msgstr "No es pot connectar a oVirt"
608612
609 #: ../src/virt-viewer-window.c:1175
613 #: src/virt-viewer-window.c:1260
610614 msgid "Disconnect"
611615 msgstr "Desconnecta"
612616
613 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
617 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
614618 msgid "USB device selection"
615619 msgstr "Selecció del dispositiu USB"
616620
617 #: ../src/virt-viewer-window.c:1193
621 #: src/virt-viewer-window.c:1278
618622 msgid "Send key combination"
619623 msgstr "Envia una combinació de tecles"
620624
621 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
625 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
622626 msgid "Leave fullscreen"
623627 msgstr "Deixa la pantalla completa"
624628
625 #: ../src/virt-viewer-window.c:1279
629 #: src/virt-viewer-window.c:1364
626630 msgid "Ctrl+Alt"
627631 msgstr "Ctrl+Alt"
628632
629 #: ../src/virt-viewer-window.c:1282
633 #: src/virt-viewer-window.c:1367
630634 #, c-format
631635 msgid "(Press %s to release pointer)"
632636 msgstr "(Premeu %s per alliberar el punter)"
633637
634 #. translators:
635 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
636 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
637 #.
638 #: ../src/virt-viewer-window.c:1293
638 #: src/virt-viewer-window.c:1378
639639 #, c-format
640640 msgid "%s%s%s - %s"
641641 msgstr "%s%s%s - %s"
642642
643 #. translators: <space>
644 #: ../src/virt-viewer-window.c:1297
643 #: src/virt-viewer-window.c:1382
645644 msgid " "
646645 msgstr " "
647646
648 #: ../src/virt-viewer-file.c:862
647 #: src/virt-viewer-file.c:875
649648 #, c-format
650649 msgid ""
651650 "At least %s version %s is required to setup this connection, see %s for "
654653 "Com a mínim %s versió %s es requereix per a configurar aquesta connexió, "
655654 "vegeu %s per a més detalls"
656655
657 #: ../src/virt-viewer-file.c:870
656 #: src/virt-viewer-file.c:883
658657 #, c-format
659658 msgid "At least %s version %s is required to setup this connection"
660659 msgstr "Com a mínim es necessita %s versió %s per preparar aquesta connexió"
661660
662 #: ../src/virt-viewer.c:133
661 #: src/virt-viewer.c:131
663662 msgid "Direct connection with no automatic tunnels"
664663 msgstr "Connexió directa sense túnels automàtics"
665664
666 #: ../src/virt-viewer.c:135
665 #: src/virt-viewer.c:133
667666 msgid "Attach to the local display using libvirt"
668667 msgstr "Adjunta a la pantalla local mitjançant libvirt"
669668
670 #: ../src/virt-viewer.c:137
669 #: src/virt-viewer.c:135
671670 msgid "Connect to hypervisor"
672671 msgstr "Connecta a l'hipervisor"
673672
674 #: ../src/virt-viewer.c:139
673 #: src/virt-viewer.c:137
675674 msgid "Wait for domain to start"
676675 msgstr "Espera el domini per iniciar"
677676
678 #: ../src/virt-viewer.c:141
677 #: src/virt-viewer.c:139
679678 msgid "Reconnect to domain upon restart"
680679 msgstr "Torna a connectar al domini en reiniciar"
681680
682 #: ../src/virt-viewer.c:143
681 #: src/virt-viewer.c:141
683682 msgid "Select the virtual machine only by its name"
684683 msgstr "Selecciona la màquina virtual només pel seu nom"
685684
686 #: ../src/virt-viewer.c:145
685 #: src/virt-viewer.c:143
687686 msgid "Select the virtual machine only by its id"
688687 msgstr "Selecciona la màquina virtual només pel seu id."
689688
690 #: ../src/virt-viewer.c:147
689 #: src/virt-viewer.c:145
691690 msgid "Select the virtual machine only by its uuid"
692691 msgstr "Selecciona la màquina virtual només pel seu uuid"
693692
694 #: ../src/virt-viewer.c:154
693 #: src/virt-viewer.c:152
695694 msgid "Virtual machine graphical console"
696695 msgstr "Consola gràfica de la màquina virtual"
697696
698 #: ../src/virt-viewer.c:173
697 #: src/virt-viewer.c:171
699698 #, c-format
700699 msgid ""
701700 "\n"
706705 "Ús: %s [OPCIONS] [ID|UUID|NOM-DOMINI]\n"
707706 "\n"
708707
709 #: ../src/virt-viewer.c:185
708 #: src/virt-viewer.c:183
710709 #, c-format
711710 msgid ""
712711 "\n"
717716 "No s'ha especificat cap ID|UUID|NOM-DOMINI per a «%s»\n"
718717 "\n"
719718
720 #: ../src/virt-viewer.c:300
719 #: src/virt-viewer.c:296
721720 msgid "Waiting for guest domain to re-start"
722721 msgstr "A l'espera del domini del convidat per tornar a iniciar"
723722
724 #: ../src/virt-viewer.c:554
723 #: src/virt-viewer.c:550
725724 #, c-format
726725 msgid "Cannot determine the graphic type for the guest %s"
727726 msgstr "No es pot determinar el tipus de gràfics per al convidat %s"
728727
729 #: ../src/virt-viewer.c:603
728 #: src/virt-viewer.c:599
730729 #, c-format
731730 msgid "Cannot determine the host for the guest %s"
732731 msgstr "No s'ha pogut determinar l'amfitrió per al convidat %s"
733732
734 #: ../src/virt-viewer.c:631
733 #: src/virt-viewer.c:627
735734 #, c-format
736735 msgid "Guest '%s' is not reachable"
737736 msgstr "El convidat «%s» no és accessible"
738737
739 #: ../src/virt-viewer.c:860
738 #: src/virt-viewer.c:856
740739 #, c-format
741740 msgid "Virtual machine %s is not running"
742741 msgstr "La màquina virtual %s no s'està executant"
743742
744 #: ../src/virt-viewer.c:884
743 #: src/virt-viewer.c:881
745744 msgid "Waiting for libvirt to start"
746745 msgstr "A l'espera de libvirt per iniciar"
747746
748 #: ../src/virt-viewer.c:888
747 #: src/virt-viewer.c:885
749748 msgid "Finding guest domain"
750749 msgstr "S'està cercant el domini del convidat"
751750
752 #: ../src/virt-viewer.c:892
751 #: src/virt-viewer.c:889
753752 msgid "Waiting for guest domain to be created"
754753 msgstr "A l'espera de la creació del domini del convidat"
755754
756 #: ../src/virt-viewer.c:918
755 #: src/virt-viewer.c:921
757756 msgid "Checking guest domain status"
758757 msgstr "S'està comprovant l'estat del domini del convidat"
759758
760 #: ../src/virt-viewer.c:921
759 #: src/virt-viewer.c:924
761760 msgid "Cannot get guest state"
762761 msgstr "No es pot obtenir l'estat del convidat"
763762
764 #: ../src/virt-viewer.c:927
763 #: src/virt-viewer.c:930
765764 msgid "Waiting for guest domain to start"
766765 msgstr "A l'espera del domini del convidat a iniciar"
767766
768 #: ../src/virt-viewer.c:1040
767 #: src/virt-viewer.c:1044
769768 #, c-format
770769 msgid "Unable to connect to libvirt with URI: %s."
771 msgstr "No s'ha pogut connectar a libvirt amb l'URI: %s."
772
773 #: ../src/virt-viewer.c:1041
770 msgstr "No es pot connectar a libvirt amb l'URI: %s."
771
772 #: src/virt-viewer.c:1045
774773 msgid "[none]"
775774 msgstr "[cap]"
776775
777 #: ../src/virt-viewer.c:1048
776 #: src/virt-viewer.c:1052
778777 msgid "Authentication failed."
779778 msgstr "L'autentificació ha fallat."
780779
781 #: ../src/virt-viewer.c:1108
780 #: src/virt-viewer.c:1112
782781 msgid "Failed to connect: "
783782 msgstr "Ha fallat la connexió: "
784783
785 #.
786 #. * Local variables:
787 #. * c-indent-level: 4
788 #. * c-basic-offset: 4
789 #. * indent-tabs-mode: nil
790 #. * End:
791 #.
792 #: ../src/resources/ui/virt-viewer.ui.h:1
784 #: src/resources/ui/virt-viewer.ui:28
793785 msgid "_File"
794786 msgstr "_Fitxer"
795787
796 #: ../src/resources/ui/virt-viewer.ui.h:2
788 #: src/resources/ui/virt-viewer.ui:41
797789 msgid "_Screenshot"
798790 msgstr "Captura _de pantalla"
799791
800 #: ../src/resources/ui/virt-viewer.ui.h:3
792 #: src/resources/ui/virt-viewer.ui:52
801793 msgid "_USB device selection"
802794 msgstr "Selecció del dispositiu _USB"
803795
804 #: ../src/resources/ui/virt-viewer.ui.h:4
796 #: src/resources/ui/virt-viewer.ui:62
805797 msgid "Smartcard insertion"
806798 msgstr "Inserció d'una targeta intel·ligent"
807799
808 #: ../src/resources/ui/virt-viewer.ui.h:5
800 #: src/resources/ui/virt-viewer.ui:72
809801 msgid "Smartcard removal"
810802 msgstr "Extracció d'una targeta intel·ligent"
811803
812 #: ../src/resources/ui/virt-viewer.ui.h:6
804 #: src/resources/ui/virt-viewer.ui:80
813805 msgid "_Change CD"
814 msgstr "_Canvia CD"
815
816 #: ../src/resources/ui/virt-viewer.ui.h:7
806 msgstr "_Canvia el CD"
807
808 #: src/resources/ui/virt-viewer.ui:90
817809 msgid "_Preferences"
818810 msgstr "_Preferències"
819811
820 #: ../src/resources/ui/virt-viewer.ui.h:8
812 #: src/resources/ui/virt-viewer.ui:103
821813 msgid "_Quit"
822814 msgstr "_Surt"
823815
824 #: ../src/resources/ui/virt-viewer.ui.h:9
816 #: src/resources/ui/virt-viewer.ui:119
817 msgid "_Machine"
818 msgstr ""
819
820 #: src/resources/ui/virt-viewer.ui:129
821 msgid "_Pause"
822 msgstr ""
823
824 #: src/resources/ui/virt-viewer.ui:144
825 msgid "_Reset"
826 msgstr ""
827
828 #: src/resources/ui/virt-viewer.ui:153
829 msgid "_Power down"
830 msgstr ""
831
832 #: src/resources/ui/virt-viewer.ui:167
825833 msgid "_View"
826834 msgstr "_Visualitza"
827835
828 #: ../src/resources/ui/virt-viewer.ui.h:10
836 #: src/resources/ui/virt-viewer.ui:180
829837 msgid "_Full screen"
830838 msgstr "Panta_lla completa"
831839
832 #: ../src/resources/ui/virt-viewer.ui.h:11
840 #: src/resources/ui/virt-viewer.ui:191
833841 msgid "_Zoom"
834842 msgstr "_Zoom"
835843
836 #: ../src/resources/ui/virt-viewer.ui.h:12
844 #: src/resources/ui/virt-viewer.ui:201
837845 msgid "Zoom _In"
838846 msgstr "_Augmenta el zoom"
839847
840 #: ../src/resources/ui/virt-viewer.ui.h:13
848 #: src/resources/ui/virt-viewer.ui:212
841849 msgid "Zoom _Out"
842850 msgstr "_Disminueix el zoom"
843851
844 #: ../src/resources/ui/virt-viewer.ui.h:14
852 #: src/resources/ui/virt-viewer.ui:229
845853 msgid "_Normal Size"
846854 msgstr "_Mida normal"
847855
848 #: ../src/resources/ui/virt-viewer.ui.h:15
856 #: src/resources/ui/virt-viewer.ui:246
849857 msgid "_Displays"
850858 msgstr "_Monitors"
851859
852 #: ../src/resources/ui/virt-viewer.ui.h:16
860 #: src/resources/ui/virt-viewer.ui:255
853861 msgid "Release cursor"
854862 msgstr "Allibera el cursor"
855863
856 #: ../src/resources/ui/virt-viewer.ui.h:17
864 #: src/resources/ui/virt-viewer.ui:270
857865 msgid "_Send key"
858866 msgstr "Envia _tecles"
859867
860 #: ../src/resources/ui/virt-viewer.ui.h:18
868 #: src/resources/ui/virt-viewer.ui:279
861869 msgid "_Help"
862870 msgstr "A_juda"
863871
864 #: ../src/resources/ui/virt-viewer.ui.h:19
872 #: src/resources/ui/virt-viewer.ui:290
865873 msgid "_Guest Details"
866874 msgstr "_Detalls del convidat"
867875
868 #: ../src/resources/ui/virt-viewer.ui.h:20
876 #: src/resources/ui/virt-viewer.ui:297
869877 msgid "_About"
870878 msgstr "_Quant a"
871879
872 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
880 #: src/resources/ui/virt-viewer-guest-details.ui:7
873881 msgid "Guest Details"
874882 msgstr "Detalls del convidat"
875883
876 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
884 #: src/resources/ui/virt-viewer-guest-details.ui:56
877885 msgid "Name:"
878886 msgstr "Nom:"
879887
880 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
888 #: src/resources/ui/virt-viewer-guest-details.ui:68
881889 msgid "GUID:"
882890 msgstr "GUID:"
883891
884 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
892 #: src/resources/ui/virt-viewer-vm-connection.ui:7
885893 msgid "Choose a virtual machine"
886894 msgstr "Trieu una màquina virtual"
887895
888 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
896 #: src/resources/ui/virt-viewer-vm-connection.ui:96
889897 msgid "Available virtual machines"
890898 msgstr "Màquines virtuals disponibles"
891899
892 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
900 #: src/resources/ui/virt-viewer-preferences.ui:8
893901 msgid "Preferences"
894902 msgstr "Preferències"
895903
896 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
904 #: src/resources/ui/virt-viewer-preferences.ui:48
897905 msgid "Folder sharing"
898906 msgstr "Compartició de carpetes"
899907
900 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
908 #: src/resources/ui/virt-viewer-preferences.ui:70
901909 msgid "Share folder"
902910 msgstr "Comparteix la carpeta"
903911
904 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
912 #: src/resources/ui/virt-viewer-preferences.ui:82
905913 msgid "Read-only"
906914 msgstr "Només lectura"
907915
908 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
916 #: src/resources/ui/virt-viewer-preferences.ui:96
917 msgid "Share clipboard"
918 msgstr ""
919
920 #: src/resources/ui/virt-viewer-preferences.ui:132
909921 msgid "Spice"
910922 msgstr "Spice"
923
924 #~ msgid "virt-manager.org"
925 #~ msgstr "virt-manager.org"
Binary diff not shown
+594
-531
po/cs.po less more
00 # Zdenek <chmelarz@gmail.com>, 2016. #zanata
11 # Thomas Rohlik <rohrto@gmail.com>, 2017. #zanata
22 # Zdenek <chmelarz@gmail.com>, 2017. #zanata
3 # Pavel Borecki <pavel.borecki@gmail.com>, 2018. #zanata
4 # Pavel Borecki <pavel.borecki@gmail.com>, 2019. #zanata
35 msgid ""
46 msgstr ""
5 "Project-Id-Version: PACKAGE VERSION\n"
6 "Report-Msgid-Bugs-To: \n"
7 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
8 "PO-Revision-Date: 2017-09-11 08:18-0400\n"
9 "Last-Translator: Zdenek <chmelarz@gmail.com>\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
10 "PO-Revision-Date: 2019-07-05 06:57+0000\n"
11 "Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n"
1012 "Language-Team: Czech\n"
1113 "Language: cs\n"
1214 "MIME-Version: 1.0\n"
1315 "Content-Type: text/plain; charset=UTF-8\n"
1416 "Content-Transfer-Encoding: 8bit\n"
1517 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n"
16 "X-Generator: Zanata 3.9.6\n"
17
18 #: ../data/remote-viewer.appdata.xml.in.h:1
19 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2022 msgid "Remote Viewer"
21 msgstr ""
22
23 #: ../data/remote-viewer.appdata.xml.in.h:2
23 msgstr "Prohlížeč vzdálených"
24
25 #: data/remote-viewer.appdata.xml.in:7
2426 msgid "Remotely access virtual machines"
25 msgstr ""
26
27 #: ../data/remote-viewer.appdata.xml.in.h:3
27 msgstr "Přístup k virtuálním strojům na dálku"
28
29 #: data/remote-viewer.appdata.xml.in:9
2830 msgid ""
2931 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3032 "time it supports guest OS using the VNC or SPICE protocols. Further "
3234 "can connect directly to both local and remotely hosted guest OS, optionally "
3335 "using SSL/TLS encryption."
3436 msgstr ""
35
36 #: ../data/remote-viewer.desktop.in.h:2
37 "Prohlížeč vzdálených poskytuje grafický prohlížeč pro zobrazení operačního "
38 "systému hosta. V současnosti podporuje operační systémy hosta s použitím "
39 "protokolů VNC nebo SPICE. Další protokoly mohou být podporovány v budoucnu – "
40 "podle požadavků uživatelů. Prohlížeč se může připojovat k operačnímu systému "
41 "hosta provozovanému jak místně, tak na vzdáleném serveru a volitelně "
42 "šifrovaně pomocí SSL/TLS."
43
44 #: data/remote-viewer.desktop.in:4
3745 msgid "Access remote desktops"
38 msgstr ""
39
40 #: ../data/virt-viewer-mime.xml.in.h:1
41 msgid "Virt-Viewer connection file"
42 msgstr ""
43
44 #: ../src/remote-viewer-iso-list-dialog.c:160
46 msgstr "Přístup ke vzdáleným plochám"
47
48 #: src/remote-viewer-iso-list-dialog.c:156
4549 msgid "Failed to fetch CD names"
46 msgstr ""
47
48 #: ../src/remote-viewer-iso-list-dialog.c:212
50 msgstr "Nepodařilo se získat názvy CD"
51
52 #: src/remote-viewer-iso-list-dialog.c:205
4953 msgid "<b>Loading...</b>"
50 msgstr ""
51
52 #: ../src/remote-viewer-iso-list-dialog.c:285
54 msgstr "<b>Načítání…</b>"
55
56 #: src/remote-viewer-iso-list-dialog.c:276
5357 msgid "Refresh"
54 msgstr "Obnovit"
55
56 #: ../src/remote-viewer-iso-list-dialog.c:286
58 msgstr "Načíst znovu"
59
60 #: src/remote-viewer-iso-list-dialog.c:277
5761 msgid "Close"
5862 msgstr "Zavřít"
5963
60 #: ../src/remote-viewer-iso-list-dialog.c:306
64 #: src/remote-viewer-iso-list-dialog.c:297
6165 msgid "Unspecified error"
62 msgstr ""
63
64 #: ../src/remote-viewer-iso-list-dialog.c:328
66 msgstr "Neurčená chyba"
67
68 #: src/remote-viewer-iso-list-dialog.c:318
6569 msgid "Failed to change CD"
66 msgstr ""
67
68 #: ../src/remote-viewer-iso-list-dialog.c:380
70 msgstr "Nepodařilo se vyměnit CD"
71
72 #: src/remote-viewer-iso-list-dialog.c:370
6973 msgid "Change CD"
70 msgstr ""
71
72 #: ../src/remote-viewer.c:118
74 msgstr "Vyměnit CD"
75
76 #: src/remote-viewer.c:116
7377 msgid "Set window title"
74 msgstr ""
75
76 #: ../src/remote-viewer.c:125
78 msgstr "Nastavit titulek okna"
79
80 #: src/remote-viewer.c:123
7781 msgid "Remote viewer client"
78 msgstr ""
79
80 #: ../src/remote-viewer.c:150
81 #, c-format
82 msgstr "Klient vzdáleného prohlížeče"
83
84 #: src/remote-viewer.c:148
8285 msgid ""
8386 "\n"
8487 "Error: can't handle multiple URIs\n"
8588 "\n"
8689 msgstr ""
87
88 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
90 "\n"
91 "Chyba: není možné obsloužit vícero URI adres\n"
92 "\n"
93
94 #: src/remote-viewer.c:162 src/virt-viewer.c:200
8995 #, c-format
9096 msgid "Run '%s --help' to see a full list of available command line options\n"
9197 msgstr ""
92
93 #: ../src/remote-viewer.c:435
98 "Úplný seznam voleb příkazového řádku, které jsou k dispozici, získáte "
99 "spuštěním „%s --help“\n"
100
101 #: src/remote-viewer.c:429
94102 msgid "failed to parse ovirt uri"
95 msgstr ""
96
97 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
103 msgstr "nepodařilo se vyhodnotit ovirt uri"
104
105 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
98106 msgid "Authentication was cancelled"
99 msgstr ""
100
101 #: ../src/remote-viewer.c:480
107 msgstr "Ověření bylo zrušeno"
108
109 #: src/remote-viewer.c:472
102110 #, c-format
103111 msgid "oVirt VM %s is not running"
104 msgstr ""
105
106 #: ../src/remote-viewer.c:494
112 msgstr "oVirt virt. stroj %s není spuštěný"
113
114 #: src/remote-viewer.c:486
107115 #, c-format
108116 msgid "oVirt VM %s has no display"
109 msgstr ""
110
111 #: ../src/remote-viewer.c:520
117 msgstr "oVirt virt. stroj %s nemá obrazovku"
118
119 #: src/remote-viewer.c:512
112120 #, c-format
113121 msgid "oVirt VM %s has no host information"
114 msgstr ""
115
116 #: ../src/remote-viewer.c:531
117 #, c-format
118 msgid "oVirt VM %s has unknown display type: %d"
119 msgstr ""
120
121 #: ../src/remote-viewer.c:713
122 msgstr "oVirt virt. stroj %s neposkytuje informace o stroji"
123
124 #: src/remote-viewer.c:523
125 #, c-format
126 msgid "oVirt VM %s has unknown display type: %u"
127 msgstr "oVirt virt. stroj %s má neznámý typ zobrazení: %u"
128
129 #: src/remote-viewer.c:690
130 msgid "Couldn't open oVirt session: "
131 msgstr "Nedaří se otevřít oVirt relaci:"
132
133 #: src/remote-viewer.c:718
122134 msgid "Failed to initiate connection"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:742
135 msgstr "Nepodařilo se navázat spojení"
136
137 #: src/remote-viewer.c:747
126138 msgid "No connection was chosen"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:759
139 msgstr "Nebylo zvoleno žádné spojení"
140
141 #: src/remote-viewer.c:764
130142 msgid "Failed to read stdin: "
131 msgstr ""
132
133 #: ../src/remote-viewer.c:776
143 msgstr "Nepodařilo se číst ze standardního vstupu:"
144
145 #: src/remote-viewer.c:781
134146 #, c-format
135147 msgid "Invalid file %s: "
136 msgstr ""
137
138 #: ../src/remote-viewer.c:786
148 msgstr "Neplatný soubor %s:"
149
150 #: src/remote-viewer.c:791
139151 msgid "Cannot determine the connection type from URI"
140 msgstr ""
141
142 #: ../src/remote-viewer.c:792
143 msgid "Couldn't open oVirt session: "
144 msgstr ""
145
146 #: ../src/remote-viewer.c:815
152 msgstr "Z URI se nedaří zjistit typ připojení"
153
154 #: src/remote-viewer.c:810
147155 #, c-format
148156 msgid "Unable to connect: %s"
149 msgstr ""
150
151 #.
152 #. * Local variables:
153 #. * c-indent-level: 4
154 #. * c-basic-offset: 4
155 #. * indent-tabs-mode: nil
156 #. * End:
157 #.
158 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
157 msgstr "Nedaří se připojit: %s"
158
159 #: src/resources/ui/remote-viewer-connect.ui:6
159160 msgid "Connection details"
160 msgstr "Detaily připojení"
161
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
161 msgstr "Podrobnosti o spojení"
162
163 #: src/resources/ui/remote-viewer-connect.ui:24
163164 msgid "Connection _Address"
164 msgstr ""
165
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
165 msgstr "_Adresa spojení"
166
167 #: src/resources/ui/remote-viewer-connect.ui:54
167168 msgid "For example, spice://foo.example.org:5900"
168 msgstr ""
169
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
169 msgstr "Například spice://neco.example.org:5900"
170
171 #: src/resources/ui/remote-viewer-connect.ui:78
171172 msgid "Recent connections"
172 msgstr ""
173
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
175 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
176 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
177 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
173 msgstr "Nedávná spojení"
174
175 #: src/resources/ui/remote-viewer-connect.ui:120
176 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
177 #: src/resources/ui/virt-viewer-vm-connection.ui:24
178 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
178179 msgid "_Cancel"
179 msgstr "_Zrušit"
180
181 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
182 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
180 msgstr "_Storno"
181
182 #: src/resources/ui/remote-viewer-connect.ui:134
183 #: src/resources/ui/virt-viewer-vm-connection.ui:38
183184 msgid "C_onnect"
184185 msgstr "Přip_ojit"
185186
186 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
187 #: src/resources/ui/remote-viewer-iso-list.ui:28
187188 msgid "Loading..."
188 msgstr ""
189
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
189 msgstr "Načítání…"
190
191 #: src/resources/ui/remote-viewer-iso-list.ui:78
191192 msgid "Select ISO"
192 msgstr ""
193 msgstr "Vybrat ISO"
193194
194195 # auto translated by TM merge from project: OSCAP Anaconda Addon, version:
195196 # master, DocId: oscap-anaconda-addon
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
197 #: src/resources/ui/remote-viewer-iso-list.ui:116
197198 msgid "Selected"
198 msgstr "Vybrán"
199 msgstr "Vybráno"
199200
200201 # auto translated by TM merge from project: FreeIPA, version: ipa-4-5, DocId:
201202 # po/ipa
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
203 #: src/resources/ui/remote-viewer-iso-list.ui:129
204 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204205 msgid "Name"
205206 msgstr "Název"
206207
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
208 #: src/resources/ui/virt-viewer-about.ui:7
208209 msgid "About Virt-Viewer"
209 msgstr ""
210
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
210 msgstr "O aplikaci Virt-Viewer"
211
212 #: src/resources/ui/virt-viewer-about.ui:16
212213 msgid ""
213214 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214215 "Copyright (C) 2007-2014 Red Hat, Inc."
215216 msgstr ""
216
217 #: ../src/resources/ui/virt-viewer-about.ui.h:4
217 "Autorská práva © 2007-2012 Daniel P. Berrange\n"
218 "Autorská práva © 2007-2014 Red Hat, Inc."
219
220 #: src/resources/ui/virt-viewer-about.ui:18
218221 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219 msgstr ""
220
221 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222 msgid "virt-manager.org"
223 msgstr ""
224
225 #: ../src/resources/ui/virt-viewer-about.ui.h:6
222 msgstr "Klient vzdálené plochy založený na GTK-VNC, SPICE-GTK a libvirt"
223
224 #: src/resources/ui/virt-viewer-about.ui:20
225 msgid "gitlab.com/virt-viewer/virt-viewer"
226 msgstr ""
227
228 #: src/resources/ui/virt-viewer-about.ui:21
226229 msgid ""
227230 "This program is free software; you can redistribute it and/or modify\n"
228231 "it under the terms of the GNU General Public License as published by\n"
238241 "along with this program; if not, write to the Free Software\n"
239242 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240243 msgstr ""
241
242 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244 "Tento program je svobodný software, můžete ho šířit dál v původní či "
245 "upravené podobě za podmínek GNU Obecné veřejné licence (GPL), jak je vydána "
246 "nadací Free Software Foundation (nadace pro svobodný software), a to buď ve "
247 "verzi 2 této licence, nebo (dle vaší volby) libovolné novější.\n"
248 "\n"
249 "Tento program je šířen v naději, že bude užitečný, ale BEZ JAKÝCHKOLI ZÁRUK, "
250 "ani bez předpokládané záruky PRODEJNOSTI nebo VHODNOSTI PRO KONKRÉTNÍ ÚČEL. "
251 "Podrobnosti viz GNU General Public License.\n"
252 "\n"
253 "Společně s tímto programem byste měli obdržet kopii GNU General Public "
254 "License. Pokud tomu tak není, napište do Free Software Foundation, Inc., 59 "
255 "Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
256
257 #: src/resources/ui/virt-viewer-about.ui:38
243258 msgid "The Fedora Translation Team"
244 msgstr ""
245
246 #: ../src/virt-viewer-app.c:459
259 msgstr "Překladatelský tým projektu Fedora"
260
261 #: src/virt-viewer-app.c:594
247262 msgid "Do you want to close the session?"
248 msgstr ""
249
250 #: ../src/virt-viewer-app.c:461
263 msgstr "Chcete relaci ukončit?"
264
265 #: src/virt-viewer-app.c:596
251266 msgid "Do not ask me again"
252 msgstr ""
253
254 #: ../src/virt-viewer-app.c:655
267 msgstr "Příště se už neptat"
268
269 #: src/virt-viewer-app.c:767
255270 #, c-format
256271 msgid "Address is too long for unix socket_path: %s"
257 msgstr ""
258
259 #: ../src/virt-viewer-app.c:665
272 msgstr "Adresa je příliš dlouhá pro unixovou socket_path: %s"
273
274 #: src/virt-viewer-app.c:777
260275 #, c-format
261276 msgid "Creating unix socket failed: %s"
262 msgstr ""
263
264 #: ../src/virt-viewer-app.c:671
277 msgstr "Vytváření unixového soketu se nezdařilo: %s"
278
279 #: src/virt-viewer-app.c:783
265280 #, c-format
266281 msgid "Connecting to unix socket failed: %s"
267 msgstr ""
268
269 #: ../src/virt-viewer-app.c:955
282 msgstr "Připojování k unixovému soketu se nezdařilo: %s"
283
284 #: src/virt-viewer-app.c:1077
270285 #, c-format
271286 msgid "Waiting for display %d..."
272 msgstr ""
273
274 #: ../src/virt-viewer-app.c:1062
287 msgstr "Čeká se na obrazovku %d…"
288
289 #: src/virt-viewer-app.c:1193
275290 #, c-format
276291 msgid "Unsupported graphic type '%s'"
277 msgstr ""
278
279 #: ../src/virt-viewer-app.c:1146
292 msgstr "Nepodporovaný typ grafiky „%s“"
293
294 #: src/virt-viewer-app.c:1277
280295 msgid "Connect to ssh failed."
281 msgstr ""
282
283 #: ../src/virt-viewer-app.c:1161
296 msgstr "Připojení k ssh se nezdařilo."
297
298 #: src/virt-viewer-app.c:1292
284299 #, c-format
285300 msgid "Can't connect to channel: %s"
286 msgstr ""
287
288 #: ../src/virt-viewer-app.c:1163
301 msgstr "Nedaří se připojit ke kanálu: %s"
302
303 #: src/virt-viewer-app.c:1294
289304 msgid "only SSH or unix socket connection supported."
290305 msgstr ""
291
292 #: ../src/virt-viewer-app.c:1176
306 "je podporováno pouze spojení prostřednictvím ssh nebo unixových soketů."
307
308 #: src/virt-viewer-app.c:1311
293309 msgid "Connect to channel unsupported."
294 msgstr ""
295
296 #: ../src/virt-viewer-app.c:1238
310 msgstr "Připojení ke kanálu není podporováno."
311
312 #: src/virt-viewer-app.c:1376
297313 msgid "Display can only be attached through libvirt with --attach"
298314 msgstr ""
299
300 #: ../src/virt-viewer-app.c:1263
315 "Obrazovku je možné připojit pouze prostřednictvím libvirt pomocí --attach"
316
317 #: src/virt-viewer-app.c:1401
301318 msgid "Connecting to graphic server"
302 msgstr ""
303
304 #: ../src/virt-viewer-app.c:1362
319 msgstr "Připojování ke grafickému serveru"
320
321 #: src/virt-viewer-app.c:1500
305322 msgid "Guest domain has shutdown"
306 msgstr ""
307
308 #: ../src/virt-viewer-app.c:1423
323 msgstr "Doména hosta se vypíná"
324
325 #: src/virt-viewer-app.c:1561
309326 msgid "Connected to graphic server"
310 msgstr ""
311
312 #: ../src/virt-viewer-app.c:1452
327 msgstr "Připojeno ke grafickému serveru"
328
329 #: src/virt-viewer-app.c:1590
313330 #, c-format
314331 msgid "Unable to connect to the graphic server %s"
315 msgstr ""
316
317 #: ../src/virt-viewer-app.c:1478
332 msgstr "Nedaří se připojit ke grafickému serveru %s"
333
334 #: src/virt-viewer-app.c:1616
318335 #, c-format
319336 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
320 msgstr ""
321
322 #: ../src/virt-viewer-app.c:1492
337 msgstr "Nedaří se ověřit vůči serveru vzdálené plochy na %s: %s\n"
338
339 #: src/virt-viewer-app.c:1630
323340 #, c-format
324341 msgid "Unable to authenticate with remote desktop server: %s"
325 msgstr ""
326
327 #: ../src/virt-viewer-app.c:1500
342 msgstr "Nedaří se ověřit vůči serveru vzdálené plochy: %s"
343
344 #: src/virt-viewer-app.c:1638
328345 #, c-format
329346 msgid "USB redirection error: %s"
330 msgstr ""
331
332 #: ../src/virt-viewer-app.c:1834
347 msgstr "Chyba přesměrování USB: %s"
348
349 #: src/virt-viewer-app.c:2026
333350 #, c-format
334351 msgid "Zoom level must be within %d-%d\n"
335 msgstr ""
352 msgstr "Je třeba, aby úroveň přiblížení byla z rozmezí %d-%d\n"
336353
337354 # auto translated by TM merge from project: libvirt, version: master, DocId:
338355 # libvirt
339 #: ../src/virt-viewer-app.c:1887
356 #: src/virt-viewer-app.c:2081
340357 #, c-format
341358 msgid "%s\n"
342359 msgstr "%s\n"
343360
344 #: ../src/virt-viewer-app.c:1897
361 #: src/virt-viewer-app.c:2091
345362 #, c-format
346363 msgid "%s version %s"
347 msgstr ""
348
349 #: ../src/virt-viewer-app.c:2321
364 msgstr "%s verze %s"
365
366 #: src/virt-viewer-app.c:2545
350367 #, c-format
351368 msgid "Display _%d"
352 msgstr ""
353
354 #: ../src/virt-viewer-app.c:2577
369 msgstr "Obrazovka _%d"
370
371 #: src/virt-viewer-app.c:2829
355372 #, c-format
356373 msgid "Invalid kiosk-quit argument: %s"
357 msgstr ""
358
359 #: ../src/virt-viewer-app.c:2588
374 msgstr "Neplatný kiosk-quit argument: %s"
375
376 #: src/virt-viewer-app.c:2840
360377 msgid "Display version information"
361 msgstr ""
362
363 #: ../src/virt-viewer-app.c:2590
378 msgstr "Zobrazit informace o verzi"
379
380 #: src/virt-viewer-app.c:2842
364381 msgid "Zoom level of window, in percentage"
365 msgstr ""
366
367 #: ../src/virt-viewer-app.c:2592
382 msgstr "Úroveň přiblížení okna, v procentech"
383
384 #: src/virt-viewer-app.c:2844
368385 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
369386 msgstr ""
370
371 #: ../src/virt-viewer-app.c:2594
387 "Otevřít na celou obrazovku (přizpůsobí rozlišení hosta tak, aby odpovídalo "
388 "klientovi)"
389
390 #: src/virt-viewer-app.c:2846
372391 msgid "Customise hotkeys"
373 msgstr ""
374
375 #: ../src/virt-viewer-app.c:2596
392 msgstr "Přizpůsobit klávesové zkratky"
393
394 #: src/virt-viewer-app.c:2848
376395 msgid "Enable kiosk mode"
377 msgstr ""
378
379 #: ../src/virt-viewer-app.c:2598
396 msgstr "Zapnout režim kiosek"
397
398 #: src/virt-viewer-app.c:2850
380399 msgid "Quit on given condition in kiosk mode"
381 msgstr ""
382
383 #: ../src/virt-viewer-app.c:2598
400 msgstr "V režimu kiosek za daných podmínek ukončit"
401
402 #: src/virt-viewer-app.c:2850
384403 msgid "<never|on-disconnect>"
385 msgstr ""
386
387 #: ../src/virt-viewer-app.c:2600
404 msgstr "<nikdy|při-odpojení>"
405
406 #: src/virt-viewer-app.c:2852
388407 msgid "Display verbose information"
389 msgstr ""
390
391 #: ../src/virt-viewer-app.c:2602
408 msgstr "Zobrazit podrobnější informace"
409
410 #: src/virt-viewer-app.c:2854
392411 msgid "Display debugging information"
393 msgstr ""
394
395 #: ../src/virt-viewer-auth.c:89
412 msgstr "Zobrazit ladící informace"
413
414 #: src/virt-viewer-auth.c:89
396415 #, c-format
397416 msgid ""
398417 "Authentication is required for the %s connection to:\n"
400419 "<b>%s</b>\n"
401420 "\n"
402421 msgstr ""
403
404 #: ../src/virt-viewer-auth.c:93
422 "Je vyžadováno ověření pro připojení %s k:\n"
423 "\n"
424 "<b>%s</b>\n"
425 "\n"
426
427 #: src/virt-viewer-auth.c:93
405428 #, c-format
406429 msgid "Authentication is required for the %s connection:\n"
407 msgstr ""
430 msgstr "Je vyžadováno ověření pro připojení %s:\n"
408431
409432 # auto translated by TM merge from project: virt-manager, version: master,
410433 # DocId: virt-manager
411 #.
412 #. * Local variables:
413 #. * c-indent-level: 4
414 #. * c-basic-offset: 4
415 #. * indent-tabs-mode: nil
416 #. * End:
417 #.
418 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
434 #: src/resources/ui/virt-viewer-auth.ui:7
419435 msgid "Authentication required"
420 msgstr "Vyžadována autentizace"
436 msgstr "Vyžadováno ověření"
421437
422438 # auto translated by TM merge from project: system-config-printer, version:
423439 # master, DocId: system-config-printer
424 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
440 #: src/resources/ui/virt-viewer-auth.ui:42
425441 msgid "_OK"
426442 msgstr "_OK"
427443
428444 # auto translated by TM merge from project: blivet-gui, version: master,
429445 # DocId: po/blivet-gui
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
431 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
432 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
446 #: src/resources/ui/virt-viewer-auth.ui:71
447 #: src/resources/ui/virt-viewer-guest-details.ui:82
448 #: src/resources/ui/virt-viewer-guest-details.ui:96
449 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
433450 msgid "label"
434 msgstr "label"
451 msgstr "štítek"
435452
436453 # auto translated by TM merge from project: virt-manager, version: master,
437454 # DocId: virt-manager
438 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
455 #: src/resources/ui/virt-viewer-auth.ui:93
439456 msgid "Password:"
440457 msgstr "Heslo:"
441458
442459 # auto translated by TM merge from project: virt-manager, version: master,
443460 # DocId: virt-manager
444 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
461 #: src/resources/ui/virt-viewer-auth.ui:105
445462 msgid "Username:"
446463 msgstr "Uživatelské jméno:"
447464
448465 # auto translated by TM merge from project: libreport, version: master, DocId:
449466 # libreport
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
467 #: src/resources/ui/virt-viewer-auth.ui:137
451468 msgid "Show password"
452469 msgstr "Zobrazit heslo"
453470
454 #: ../src/virt-viewer-display-vnc.c:134
471 #: src/virt-viewer-display-vnc.c:130
455472 msgid "VNC does not provide GUID"
456 msgstr ""
457
458 #: ../src/virt-viewer-file-transfer-dialog.c:128
473 msgstr "VNC neposkytuje GUID"
474
475 #: src/virt-viewer-display-vte.c:181
476 msgid "Console support is compiled out!"
477 msgstr "Není sestaveno s podporou konzole!"
478
479 #: src/virt-viewer-file-transfer-dialog.c:124
459480 msgid "File Transfers"
460 msgstr ""
461
462 #: ../src/virt-viewer-file-transfer-dialog.c:154
481 msgstr "Přenosy souborů"
482
483 #: src/virt-viewer-file-transfer-dialog.c:150
463484 msgid "Transferring 1 file..."
464 msgstr ""
465
466 #: ../src/virt-viewer-file-transfer-dialog.c:156
467 #, c-format
468 msgid "Transferring %d file of %d..."
469 msgid_plural "Transferring %d files of %d..."
470 msgstr[0] ""
471
472 #: ../src/virt-viewer-file-transfer-dialog.c:228
473 #, c-format
474 msgid "An error caused the following file transfers to fail:%s"
475 msgstr ""
476
477 #: ../src/virt-viewer-main.c:38
485 msgstr "Přenáší se 1 soubor…"
486
487 #: src/virt-viewer-file-transfer-dialog.c:152
488 #, c-format
489 msgid "Transferring %u file of %u..."
490 msgid_plural "Transferring %u files of %u..."
491 msgstr[0] "Přenášení souboru %u z %u…"
492 msgstr[1] "Přenášení souborů %u z %u…"
493 msgstr[2] "Přenášení souborů %u z %u…"
494
495 #: src/virt-viewer-file-transfer-dialog.c:225
496 msgid "An error caused the following file transfers to fail:"
497 msgstr ""
498
499 #: src/virt-viewer-main.c:38
478500 msgid "Virt Viewer"
479 msgstr ""
501 msgstr "Virt Viewer"
480502
481503 # auto translated by TM merge from project: retrace-server, version: master,
482504 # DocId: retrace-server
483 #: ../src/virt-viewer-session-spice.c:704
505 #: src/virt-viewer-session-spice.c:731
484506 msgid "Invalid password"
485507 msgstr "Neplatné heslo"
486508
487 #. Create the widgets
488 #: ../src/virt-viewer-session-spice.c:802
509 #: src/virt-viewer-session-spice.c:829
489510 msgid "Select USB devices for redirection"
490 msgstr ""
511 msgstr "Vyberte USB zařízení, které chcete přesměrovat"
491512
492513 # auto translated by TM merge from project: system-config-printer, version:
493514 # master, DocId: system-config-printer
494 #: ../src/virt-viewer-session-spice.c:804
495 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
515 #: src/virt-viewer-session-spice.c:831
516 #: src/resources/ui/virt-viewer-guest-details.ui:23
496517 msgid "_Close"
497518 msgstr "Z_avřít"
498519
499 #: ../src/virt-viewer-session-vnc.c:162
500 #, c-format
501 msgid "Unsupported authentication type %d"
502 msgstr ""
503
504 #: ../src/virt-viewer-vm-connection.c:64
520 #: src/virt-viewer-session-spice.c:1019
521 msgid "Serial"
522 msgstr "Sériové"
523
524 #: src/virt-viewer-session-spice.c:1021
525 msgid "QEMU human monitor"
526 msgstr "lidský monitor QEMU"
527
528 #: src/virt-viewer-session-spice.c:1023
529 msgid "QEMU debug console"
530 msgstr "Ladící konzole QEMU"
531
532 #: src/virt-viewer-session-vnc.c:158
533 #, c-format
534 msgid "Unsupported authentication type %u"
535 msgstr "Nepodporovaný typ ověření %u"
536
537 #: src/virt-viewer-vm-connection.c:64
505538 msgid "No running virtual machine found"
506 msgstr ""
507
508 #: ../src/virt-viewer-vm-connection.c:93
539 msgstr "Nenalezen žádný spuštěný virtuální stroj"
540
541 #: src/virt-viewer-vm-connection.c:93
509542 msgid "No virtual machine was chosen"
510 msgstr ""
511
512 #: ../src/virt-viewer-window.c:544
543 msgstr "Nebyl zvolen žádný virtuální stroj"
544
545 #: src/virt-viewer-window.c:621
513546 msgid "Ctrl+Alt+_Del"
514 msgstr ""
515
516 #: ../src/virt-viewer-window.c:545
547 msgstr "Ctrl+Alt+_Del"
548
549 #: src/virt-viewer-window.c:622
517550 msgid "Ctrl+Alt+_Backspace"
518 msgstr ""
519
520 #: ../src/virt-viewer-window.c:547
551 msgstr "Ctrl+Alt+_Backspace"
552
553 #: src/virt-viewer-window.c:624
521554 msgid "Ctrl+Alt+F_1"
522 msgstr ""
523
524 #: ../src/virt-viewer-window.c:548
555 msgstr "Ctrl+Alt+F_1"
556
557 #: src/virt-viewer-window.c:625
525558 msgid "Ctrl+Alt+F_2"
526 msgstr ""
527
528 #: ../src/virt-viewer-window.c:549
559 msgstr "Ctrl+Alt+F_2"
560
561 #: src/virt-viewer-window.c:626
529562 msgid "Ctrl+Alt+F_3"
530 msgstr ""
531
532 #: ../src/virt-viewer-window.c:550
563 msgstr "Ctrl+Alt+F_3"
564
565 #: src/virt-viewer-window.c:627
533566 msgid "Ctrl+Alt+F_4"
534 msgstr ""
535
536 #: ../src/virt-viewer-window.c:551
567 msgstr "Ctrl+Alt+F_4"
568
569 #: src/virt-viewer-window.c:628
537570 msgid "Ctrl+Alt+F_5"
538 msgstr ""
539
540 #: ../src/virt-viewer-window.c:552
571 msgstr "Ctrl+Alt+F_5"
572
573 #: src/virt-viewer-window.c:629
541574 msgid "Ctrl+Alt+F_6"
542 msgstr ""
543
544 #: ../src/virt-viewer-window.c:553
575 msgstr "Ctrl+Alt+F_6"
576
577 #: src/virt-viewer-window.c:630
545578 msgid "Ctrl+Alt+F_7"
546 msgstr ""
547
548 #: ../src/virt-viewer-window.c:554
579 msgstr "Ctrl+Alt+F_7"
580
581 #: src/virt-viewer-window.c:631
549582 msgid "Ctrl+Alt+F_8"
550 msgstr ""
551
552 #: ../src/virt-viewer-window.c:555
583 msgstr "Ctrl+Alt+F_8"
584
585 #: src/virt-viewer-window.c:632
553586 msgid "Ctrl+Alt+F_9"
554 msgstr ""
555
556 #: ../src/virt-viewer-window.c:556
587 msgstr "Ctrl+Alt+F_9"
588
589 #: src/virt-viewer-window.c:633
557590 msgid "Ctrl+Alt+F1_0"
558 msgstr ""
559
560 #: ../src/virt-viewer-window.c:557
591 msgstr "Ctrl+Alt+F1_0"
592
593 #: src/virt-viewer-window.c:634
561594 msgid "Ctrl+Alt+F11"
562 msgstr ""
563
564 #: ../src/virt-viewer-window.c:558
595 msgstr "Ctrl+Alt+F11"
596
597 #: src/virt-viewer-window.c:635
565598 msgid "Ctrl+Alt+F12"
566 msgstr ""
567
568 #: ../src/virt-viewer-window.c:953
599 msgstr "Ctrl+Alt+F12"
600
601 #: src/virt-viewer-window.c:637
602 msgid "_PrintScreen"
603 msgstr ""
604
605 #: src/virt-viewer-window.c:1030
569606 #, c-format
570607 msgid "Unable to determine image format for file '%s'"
608 msgstr "U souboru „%s“ se nedaří zjistit formát obrazu"
609
610 #: src/virt-viewer-window.c:1053
611 msgid "Save screenshot"
571612 msgstr ""
572613
573614 # auto translated by TM merge from project: libreport, version: rhel6, DocId:
574615 # libreport
575 #: ../src/virt-viewer-window.c:980
616 #: src/virt-viewer-window.c:1057
576617 msgid "_Save"
577618 msgstr "_Uložit"
578619
579 #: ../src/virt-viewer-window.c:988
620 #: src/virt-viewer-window.c:1065
580621 msgid "Screenshot.png"
581 msgstr ""
622 msgstr "snimek_obrazovky.png"
582623
583624 # auto translated by TM merge from project: Cockpit, version: master, DocId:
584625 # cockpit
585 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
626 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
586627 msgid "Unknown"
587628 msgstr "Neznámý"
588629
589 #: ../src/virt-viewer-window.c:1152
630 #: src/virt-viewer-window.c:1237
590631 msgid "Unable to connnect to oVirt"
591 msgstr ""
592
593 #: ../src/virt-viewer-window.c:1175
632 msgstr "Nedaří se připojit k oVirt"
633
634 #: src/virt-viewer-window.c:1260
594635 msgid "Disconnect"
595 msgstr ""
596
597 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
636 msgstr "Odpojit"
637
638 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
598639 msgid "USB device selection"
599 msgstr ""
640 msgstr "Výběr USB zařízení"
600641
601642 # auto translated by TM merge from project: virt-manager, version: master,
602643 # DocId: virt-manager
603 #: ../src/virt-viewer-window.c:1193
644 #: src/virt-viewer-window.c:1278
604645 msgid "Send key combination"
605646 msgstr "Odeslat kombinace kláves"
606647
607648 # auto translated by TM merge from project: virt-manager, version: master,
608649 # DocId: virt-manager
609 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
650 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
610651 msgid "Leave fullscreen"
611652 msgstr "Opustit režim celé obrazovky"
612653
613 #: ../src/virt-viewer-window.c:1279
654 #: src/virt-viewer-window.c:1364
614655 msgid "Ctrl+Alt"
615 msgstr ""
616
617 #: ../src/virt-viewer-window.c:1282
656 msgstr "Ctrl+Alt"
657
658 #: src/virt-viewer-window.c:1367
618659 #, c-format
619660 msgid "(Press %s to release pointer)"
620 msgstr ""
621
622 #. translators:
623 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
624 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
625 #.
626 #: ../src/virt-viewer-window.c:1293
661 msgstr "(kurzor uvolníte stisknutím %s)"
662
663 #: src/virt-viewer-window.c:1378
627664 #, c-format
628665 msgid "%s%s%s - %s"
629 msgstr ""
630
631 #. translators: <space>
632 #: ../src/virt-viewer-window.c:1297
666 msgstr "%s%s%s – %s"
667
668 #: src/virt-viewer-window.c:1382
633669 msgid " "
634 msgstr ""
635
636 #: ../src/virt-viewer-file.c:862
670 msgstr " "
671
672 #: src/virt-viewer-file.c:875
637673 #, c-format
638674 msgid ""
639675 "At least %s version %s is required to setup this connection, see %s for "
640676 "details"
641677 msgstr ""
642
643 #: ../src/virt-viewer-file.c:870
678 "Pro ustavení tohoto spojení je třeba %s verze přinejmenším %s, podrobnosti "
679 "naleznete v %s"
680
681 #: src/virt-viewer-file.c:883
644682 #, c-format
645683 msgid "At least %s version %s is required to setup this connection"
646 msgstr ""
647
648 #: ../src/virt-viewer.c:133
684 msgstr "Pro ustavení tohoto spojení je třeba %s verze přinejmenším %s"
685
686 #: src/virt-viewer.c:131
649687 msgid "Direct connection with no automatic tunnels"
650 msgstr ""
651
652 #: ../src/virt-viewer.c:135
688 msgstr "Přímé připojení bez automatických tunelů"
689
690 #: src/virt-viewer.c:133
653691 msgid "Attach to the local display using libvirt"
654 msgstr ""
655
656 #: ../src/virt-viewer.c:137
692 msgstr "Připojit k místnímu zobrazení pomocí libvirt"
693
694 #: src/virt-viewer.c:135
657695 msgid "Connect to hypervisor"
658 msgstr ""
659
660 #: ../src/virt-viewer.c:139
696 msgstr "Připojit k hypervizoru"
697
698 #: src/virt-viewer.c:137
661699 msgid "Wait for domain to start"
662 msgstr ""
663
664 #: ../src/virt-viewer.c:141
700 msgstr "Počkat na spuštění domény"
701
702 #: src/virt-viewer.c:139
665703 msgid "Reconnect to domain upon restart"
666 msgstr ""
667
668 #: ../src/virt-viewer.c:143
704 msgstr "Po restartu domény se k ní opět připojit"
705
706 #: src/virt-viewer.c:141
669707 msgid "Select the virtual machine only by its name"
670 msgstr ""
671
672 #: ../src/virt-viewer.c:145
708 msgstr "Vybrat virtuální stroj pouze podle jeho názvu"
709
710 #: src/virt-viewer.c:143
673711 msgid "Select the virtual machine only by its id"
674 msgstr ""
675
676 #: ../src/virt-viewer.c:147
712 msgstr "Vybrat virtuální stroj pouze podle jeho identifikátoru"
713
714 #: src/virt-viewer.c:145
677715 msgid "Select the virtual machine only by its uuid"
678716 msgstr ""
679
680 #: ../src/virt-viewer.c:154
717 "Vybrat virtuální stroj pouze podle jeho nikde se neopakujícího identifikátoru"
718
719 #: src/virt-viewer.c:152
681720 msgid "Virtual machine graphical console"
682 msgstr ""
683
684 #: ../src/virt-viewer.c:173
721 msgstr "Grafická konzole virtuálního stroje"
722
723 #: src/virt-viewer.c:171
685724 #, c-format
686725 msgid ""
687726 "\n"
688727 "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
689728 "\n"
690729 msgstr ""
691
692 #: ../src/virt-viewer.c:185
730 "\n"
731 "Použití: %s [VOLBY] [ID|UUID|NAZEV-DOMENY]\n"
732 "\n"
733
734 #: src/virt-viewer.c:183
693735 #, c-format
694736 msgid ""
695737 "\n"
696738 "No ID|UUID|DOMAIN-NAME was specified for '%s'\n"
697739 "\n"
698740 msgstr ""
699
700 #: ../src/virt-viewer.c:300
741 "\n"
742 "Pro „%s“ nebylo zadáno žádné ID|UUID|NAZEV-DOMENY\n"
743
744 #: src/virt-viewer.c:296
701745 msgid "Waiting for guest domain to re-start"
702 msgstr ""
703
704 #: ../src/virt-viewer.c:554
746 msgstr "Čeká se na restart domény hosta"
747
748 #: src/virt-viewer.c:550
705749 #, c-format
706750 msgid "Cannot determine the graphic type for the guest %s"
707 msgstr ""
708
709 #: ../src/virt-viewer.c:603
751 msgstr "Nedaří se zjistit typ grafiky pro hosta %s"
752
753 #: src/virt-viewer.c:599
710754 #, c-format
711755 msgid "Cannot determine the host for the guest %s"
712 msgstr ""
713
714 #: ../src/virt-viewer.c:631
756 msgstr "Nedaří se zjistit hostitele pro hosta %s"
757
758 #: src/virt-viewer.c:627
715759 #, c-format
716760 msgid "Guest '%s' is not reachable"
717 msgstr ""
718
719 #: ../src/virt-viewer.c:860
761 msgstr "Host „%s“ není dosažitelný"
762
763 #: src/virt-viewer.c:856
720764 #, c-format
721765 msgid "Virtual machine %s is not running"
722 msgstr ""
723
724 #: ../src/virt-viewer.c:884
766 msgstr "Virtuální stroj %s není spuštěný"
767
768 #: src/virt-viewer.c:881
725769 msgid "Waiting for libvirt to start"
726 msgstr ""
727
728 #: ../src/virt-viewer.c:888
770 msgstr "Čeká se na spuštění libvirt"
771
772 #: src/virt-viewer.c:885
729773 msgid "Finding guest domain"
730 msgstr ""
731
732 #: ../src/virt-viewer.c:892
774 msgstr "Hledá se doména hosta"
775
776 #: src/virt-viewer.c:889
733777 msgid "Waiting for guest domain to be created"
734 msgstr ""
735
736 #: ../src/virt-viewer.c:918
778 msgstr "Čeká se na vytvoření domény hosta"
779
780 #: src/virt-viewer.c:921
737781 msgid "Checking guest domain status"
738 msgstr ""
739
740 #: ../src/virt-viewer.c:921
782 msgstr "Zjišťuje se stav domény hosta"
783
784 #: src/virt-viewer.c:924
741785 msgid "Cannot get guest state"
742 msgstr ""
743
744 #: ../src/virt-viewer.c:927
786 msgstr "Nedaří se zjistit stav hosta"
787
788 #: src/virt-viewer.c:930
745789 msgid "Waiting for guest domain to start"
746 msgstr ""
747
748 #: ../src/virt-viewer.c:1040
790 msgstr "Čeká se na spuštění domény hosta"
791
792 #: src/virt-viewer.c:1044
749793 #, c-format
750794 msgid "Unable to connect to libvirt with URI: %s."
751 msgstr ""
752
753 #: ../src/virt-viewer.c:1041
795 msgstr "Nedaří se připojit k libvirt prostřednictvím URI: %s."
796
797 #: src/virt-viewer.c:1045
754798 msgid "[none]"
755 msgstr ""
756
757 #: ../src/virt-viewer.c:1048
799 msgstr "[žádné]"
800
801 #: src/virt-viewer.c:1052
758802 msgid "Authentication failed."
759 msgstr ""
760
761 #: ../src/virt-viewer.c:1108
803 msgstr "Ověření se nezdařilo."
804
805 #: src/virt-viewer.c:1112
762806 msgid "Failed to connect: "
763 msgstr ""
807 msgstr "Nepodařilo se připojit:"
764808
765809 # auto translated by TM merge from project: system-config-kdump, version:
766810 # master, DocId: system-config-kdump
767 #.
768 #. * Local variables:
769 #. * c-indent-level: 4
770 #. * c-basic-offset: 4
771 #. * indent-tabs-mode: nil
772 #. * End:
773 #.
774 #: ../src/resources/ui/virt-viewer.ui.h:1
811 #: src/resources/ui/virt-viewer.ui:28
775812 msgid "_File"
776813 msgstr "_Soubor"
777814
778 #: ../src/resources/ui/virt-viewer.ui.h:2
815 #: src/resources/ui/virt-viewer.ui:41
779816 msgid "_Screenshot"
780 msgstr ""
781
782 #: ../src/resources/ui/virt-viewer.ui.h:3
817 msgstr "_Snímek obrazovky"
818
819 #: src/resources/ui/virt-viewer.ui:52
783820 msgid "_USB device selection"
784 msgstr ""
785
786 #: ../src/resources/ui/virt-viewer.ui.h:4
821 msgstr "Výběr _USB zařízení"
822
823 #: src/resources/ui/virt-viewer.ui:62
787824 msgid "Smartcard insertion"
788 msgstr ""
789
790 #: ../src/resources/ui/virt-viewer.ui.h:5
825 msgstr "Vložení Smartcard"
826
827 #: src/resources/ui/virt-viewer.ui:72
791828 msgid "Smartcard removal"
792 msgstr ""
793
794 #: ../src/resources/ui/virt-viewer.ui.h:6
829 msgstr "Odebrání Smartcard"
830
831 #: src/resources/ui/virt-viewer.ui:80
795832 msgid "_Change CD"
796 msgstr ""
833 msgstr "Vyměnit _CD"
797834
798835 # auto translated by TM merge from project: ibus, version: head, DocId: ibus10
799 #: ../src/resources/ui/virt-viewer.ui.h:7
836 #: src/resources/ui/virt-viewer.ui:90
800837 msgid "_Preferences"
801 msgstr "_Nastavení"
838 msgstr "_Předvolby"
802839
803840 # auto translated by TM merge from project: blivet-gui, version: master,
804841 # DocId: po/blivet-gui
805 #: ../src/resources/ui/virt-viewer.ui.h:8
842 #: src/resources/ui/virt-viewer.ui:103
806843 msgid "_Quit"
807844 msgstr "_Ukončit"
808845
846 #: src/resources/ui/virt-viewer.ui:119
847 msgid "_Machine"
848 msgstr "_Stroj"
849
850 #: src/resources/ui/virt-viewer.ui:129
851 msgid "_Pause"
852 msgstr "_Pozastavit"
853
854 #: src/resources/ui/virt-viewer.ui:144
855 msgid "_Reset"
856 msgstr "_Restartovat"
857
858 #: src/resources/ui/virt-viewer.ui:153
859 msgid "_Power down"
860 msgstr "Vy_pnout"
861
809862 # auto translated by TM merge from project: firewalld, version: master, DocId:
810863 # po/firewalld
811 #: ../src/resources/ui/virt-viewer.ui.h:9
864 #: src/resources/ui/virt-viewer.ui:167
812865 msgid "_View"
813866 msgstr "_Zobrazit"
814867
815 #: ../src/resources/ui/virt-viewer.ui.h:10
868 #: src/resources/ui/virt-viewer.ui:180
816869 msgid "_Full screen"
817 msgstr ""
818
819 #: ../src/resources/ui/virt-viewer.ui.h:11
870 msgstr "_Na celou obrazovku"
871
872 #: src/resources/ui/virt-viewer.ui:191
820873 msgid "_Zoom"
821 msgstr ""
822
823 #: ../src/resources/ui/virt-viewer.ui.h:12
874 msgstr "_Přiblížení"
875
876 #: src/resources/ui/virt-viewer.ui:201
824877 msgid "Zoom _In"
825 msgstr ""
826
827 #: ../src/resources/ui/virt-viewer.ui.h:13
878 msgstr "Př_iblížit"
879
880 #: src/resources/ui/virt-viewer.ui:212
828881 msgid "Zoom _Out"
829 msgstr ""
830
831 #: ../src/resources/ui/virt-viewer.ui.h:14
882 msgstr "_Oddálit"
883
884 #: src/resources/ui/virt-viewer.ui:229
832885 msgid "_Normal Size"
833 msgstr ""
834
835 #: ../src/resources/ui/virt-viewer.ui.h:15
886 msgstr "_Normální velikost"
887
888 #: src/resources/ui/virt-viewer.ui:246
836889 msgid "_Displays"
837 msgstr ""
838
839 #: ../src/resources/ui/virt-viewer.ui.h:16
890 msgstr "_Obrazovky"
891
892 #: src/resources/ui/virt-viewer.ui:255
840893 msgid "Release cursor"
841 msgstr ""
842
843 #: ../src/resources/ui/virt-viewer.ui.h:17
894 msgstr "Uvolnit kurzor"
895
896 #: src/resources/ui/virt-viewer.ui:270
844897 msgid "_Send key"
845 msgstr ""
898 msgstr "Po_slat klávesu"
846899
847900 # auto translated by TM merge from project: system-config-language, version:
848901 # f27, DocId: system-config-language
849 #: ../src/resources/ui/virt-viewer.ui.h:18
902 #: src/resources/ui/virt-viewer.ui:279
850903 msgid "_Help"
851904 msgstr "_Nápověda"
852905
853 #: ../src/resources/ui/virt-viewer.ui.h:19
906 #: src/resources/ui/virt-viewer.ui:290
854907 msgid "_Guest Details"
855 msgstr ""
908 msgstr "_Podrobnosti o hostovi"
856909
857910 # auto translated by TM merge from project: ibus, version: head, DocId: ibus10
858 #: ../src/resources/ui/virt-viewer.ui.h:20
911 #: src/resources/ui/virt-viewer.ui:297
859912 msgid "_About"
860913 msgstr "O _metodě"
861914
862 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
915 #: src/resources/ui/virt-viewer-guest-details.ui:7
863916 msgid "Guest Details"
864 msgstr ""
917 msgstr "Podrobnosti o hostovi"
865918
866919 # auto translated by TM merge from project: blivet-gui, version: f23-branch,
867920 # DocId: blivet-gui
868 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
921 #: src/resources/ui/virt-viewer-guest-details.ui:56
869922 msgid "Name:"
870 msgstr "Jméno:"
871
872 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
923 msgstr "Název:"
924
925 #: src/resources/ui/virt-viewer-guest-details.ui:68
873926 msgid "GUID:"
874 msgstr ""
875
876 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
927 msgstr "GUID:"
928
929 #: src/resources/ui/virt-viewer-vm-connection.ui:7
877930 msgid "Choose a virtual machine"
878 msgstr ""
879
880 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
931 msgstr "Zvolte virtuální stroj"
932
933 #: src/resources/ui/virt-viewer-vm-connection.ui:96
881934 msgid "Available virtual machines"
882 msgstr ""
935 msgstr "Virtuální stroje k dispozici"
883936
884937 # auto translated by TM merge from project: libreport, version: rhel6, DocId:
885938 # libreport
886 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
939 #: src/resources/ui/virt-viewer-preferences.ui:8
887940 msgid "Preferences"
888941 msgstr "Předvolby"
889942
890 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
943 #: src/resources/ui/virt-viewer-preferences.ui:48
891944 msgid "Folder sharing"
892 msgstr ""
893
894 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
945 msgstr "Sdílení složky"
946
947 #: src/resources/ui/virt-viewer-preferences.ui:70
895948 msgid "Share folder"
896 msgstr ""
949 msgstr "Sdílet složku"
897950
898951 # auto translated by TM merge from project: udisks, version: udisks, DocId:
899952 # udisks2
900 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
953 #: src/resources/ui/virt-viewer-preferences.ui:82
901954 msgid "Read-only"
902 msgstr "Jen ke čtení"
903
904 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
955 msgstr "Jen pro čtení"
956
957 #: src/resources/ui/virt-viewer-preferences.ui:96
958 msgid "Share clipboard"
959 msgstr ""
960
961 #: src/resources/ui/virt-viewer-preferences.ui:132
905962 msgid "Spice"
906 msgstr ""
963 msgstr "Spice"
964
965 #~ msgid "virt-manager.org"
966 #~ msgstr "virt-manager.org"
967
968 #~ msgid "virt-viewer"
969 #~ msgstr "virt-viewer"
Binary diff not shown
+264
-252
po/cy.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Welsh\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
1818 "11) ? 2 : 3\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444 msgstr[3] ""
459445
460 #: ../src/virt-viewer-file-transfer-dialog.c:228
461 #, c-format
462 msgid "An error caused the following file transfers to fail:%s"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:38
446 #: src/virt-viewer-file-transfer-dialog.c:225
447 msgid "An error caused the following file transfers to fail:"
448 msgstr ""
449
450 #: src/virt-viewer-main.c:38
466451 msgid "Virt Viewer"
467452 msgstr ""
468453
469 #: ../src/virt-viewer-session-spice.c:704
454 #: src/virt-viewer-session-spice.c:731
470455 msgid "Invalid password"
471456 msgstr ""
472457
473 #. Create the widgets
474 #: ../src/virt-viewer-session-spice.c:802
458 #: src/virt-viewer-session-spice.c:829
475459 msgid "Select USB devices for redirection"
476460 msgstr ""
477461
478 #: ../src/virt-viewer-session-spice.c:804
479 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
462 #: src/virt-viewer-session-spice.c:831
463 #: src/resources/ui/virt-viewer-guest-details.ui:23
480464 msgid "_Close"
481465 msgstr ""
482466
483 #: ../src/virt-viewer-session-vnc.c:162
484 #, c-format
485 msgid "Unsupported authentication type %d"
486 msgstr ""
487
488 #: ../src/virt-viewer-vm-connection.c:64
467 #: src/virt-viewer-session-spice.c:1019
468 msgid "Serial"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1021
472 msgid "QEMU human monitor"
473 msgstr ""
474
475 #: src/virt-viewer-session-spice.c:1023
476 msgid "QEMU debug console"
477 msgstr ""
478
479 #: src/virt-viewer-session-vnc.c:158
480 #, c-format
481 msgid "Unsupported authentication type %u"
482 msgstr ""
483
484 #: src/virt-viewer-vm-connection.c:64
489485 msgid "No running virtual machine found"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-vm-connection.c:93
488 #: src/virt-viewer-vm-connection.c:93
493489 msgid "No virtual machine was chosen"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:544
492 #: src/virt-viewer-window.c:621
497493 msgid "Ctrl+Alt+_Del"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:545
496 #: src/virt-viewer-window.c:622
501497 msgid "Ctrl+Alt+_Backspace"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:547
500 #: src/virt-viewer-window.c:624
505501 msgid "Ctrl+Alt+F_1"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:548
504 #: src/virt-viewer-window.c:625
509505 msgid "Ctrl+Alt+F_2"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:549
508 #: src/virt-viewer-window.c:626
513509 msgid "Ctrl+Alt+F_3"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:550
512 #: src/virt-viewer-window.c:627
517513 msgid "Ctrl+Alt+F_4"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:551
516 #: src/virt-viewer-window.c:628
521517 msgid "Ctrl+Alt+F_5"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:552
520 #: src/virt-viewer-window.c:629
525521 msgid "Ctrl+Alt+F_6"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:553
524 #: src/virt-viewer-window.c:630
529525 msgid "Ctrl+Alt+F_7"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:554
528 #: src/virt-viewer-window.c:631
533529 msgid "Ctrl+Alt+F_8"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:555
532 #: src/virt-viewer-window.c:632
537533 msgid "Ctrl+Alt+F_9"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:556
536 #: src/virt-viewer-window.c:633
541537 msgid "Ctrl+Alt+F1_0"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:557
540 #: src/virt-viewer-window.c:634
545541 msgid "Ctrl+Alt+F11"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:558
544 #: src/virt-viewer-window.c:635
549545 msgid "Ctrl+Alt+F12"
550546 msgstr ""
551547
552 #: ../src/virt-viewer-window.c:953
548 #: src/virt-viewer-window.c:637
549 msgid "_PrintScreen"
550 msgstr ""
551
552 #: src/virt-viewer-window.c:1030
553553 #, c-format
554554 msgid "Unable to determine image format for file '%s'"
555555 msgstr ""
556556
557 #: ../src/virt-viewer-window.c:980
557 #: src/virt-viewer-window.c:1053
558 msgid "Save screenshot"
559 msgstr ""
560
561 #: src/virt-viewer-window.c:1057
558562 msgid "_Save"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:988
565 #: src/virt-viewer-window.c:1065
562566 msgid "Screenshot.png"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
569 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
566570 msgid "Unknown"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1152
573 #: src/virt-viewer-window.c:1237
570574 msgid "Unable to connnect to oVirt"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1175
577 #: src/virt-viewer-window.c:1260
574578 msgid "Disconnect"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
581 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
578582 msgid "USB device selection"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1193
585 #: src/virt-viewer-window.c:1278
582586 msgid "Send key combination"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
589 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
586590 msgid "Leave fullscreen"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1279
593 #: src/virt-viewer-window.c:1364
590594 msgid "Ctrl+Alt"
591595 msgstr ""
592596
593 #: ../src/virt-viewer-window.c:1282
597 #: src/virt-viewer-window.c:1367
594598 #, c-format
595599 msgid "(Press %s to release pointer)"
596600 msgstr ""
597601
598 #. translators:
599 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601 #.
602 #: ../src/virt-viewer-window.c:1293
602 #: src/virt-viewer-window.c:1378
603603 #, c-format
604604 msgid "%s%s%s - %s"
605605 msgstr ""
606606
607 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1297
607 #: src/virt-viewer-window.c:1382
609608 msgid " "
610609 msgstr ""
611610
612 #: ../src/virt-viewer-file.c:862
611 #: src/virt-viewer-file.c:875
613612 #, c-format
614613 msgid ""
615614 "At least %s version %s is required to setup this connection, see %s for "
616615 "details"
617616 msgstr ""
618617
619 #: ../src/virt-viewer-file.c:870
618 #: src/virt-viewer-file.c:883
620619 #, c-format
621620 msgid "At least %s version %s is required to setup this connection"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:133
623 #: src/virt-viewer.c:131
625624 msgid "Direct connection with no automatic tunnels"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:135
627 #: src/virt-viewer.c:133
629628 msgid "Attach to the local display using libvirt"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:137
631 #: src/virt-viewer.c:135
633632 msgid "Connect to hypervisor"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:139
635 #: src/virt-viewer.c:137
637636 msgid "Wait for domain to start"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:141
639 #: src/virt-viewer.c:139
641640 msgid "Reconnect to domain upon restart"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:143
643 #: src/virt-viewer.c:141
645644 msgid "Select the virtual machine only by its name"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:145
647 #: src/virt-viewer.c:143
649648 msgid "Select the virtual machine only by its id"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:147
651 #: src/virt-viewer.c:145
653652 msgid "Select the virtual machine only by its uuid"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:154
655 #: src/virt-viewer.c:152
657656 msgid "Virtual machine graphical console"
658657 msgstr ""
659658
660 #: ../src/virt-viewer.c:173
659 #: src/virt-viewer.c:171
661660 #, c-format
662661 msgid ""
663662 "\n"
665664 "\n"
666665 msgstr ""
667666
668 #: ../src/virt-viewer.c:185
667 #: src/virt-viewer.c:183
669668 #, c-format
670669 msgid ""
671670 "\n"
673672 "\n"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:300
675 #: src/virt-viewer.c:296
677676 msgid "Waiting for guest domain to re-start"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.c:554
679 #: src/virt-viewer.c:550
681680 #, c-format
682681 msgid "Cannot determine the graphic type for the guest %s"
683682 msgstr ""
684683
685 #: ../src/virt-viewer.c:603
684 #: src/virt-viewer.c:599
686685 #, c-format
687686 msgid "Cannot determine the host for the guest %s"
688687 msgstr ""
689688
690 #: ../src/virt-viewer.c:631
689 #: src/virt-viewer.c:627
691690 #, c-format
692691 msgid "Guest '%s' is not reachable"
693692 msgstr ""
694693
695 #: ../src/virt-viewer.c:860
694 #: src/virt-viewer.c:856
696695 #, c-format
697696 msgid "Virtual machine %s is not running"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:884
699 #: src/virt-viewer.c:881
701700 msgid "Waiting for libvirt to start"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:888
703 #: src/virt-viewer.c:885
705704 msgid "Finding guest domain"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:892
707 #: src/virt-viewer.c:889
709708 msgid "Waiting for guest domain to be created"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:918
711 #: src/virt-viewer.c:921
713712 msgid "Checking guest domain status"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:921
715 #: src/virt-viewer.c:924
717716 msgid "Cannot get guest state"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:927
719 #: src/virt-viewer.c:930
721720 msgid "Waiting for guest domain to start"
722721 msgstr ""
723722
724 #: ../src/virt-viewer.c:1040
723 #: src/virt-viewer.c:1044
725724 #, c-format
726725 msgid "Unable to connect to libvirt with URI: %s."
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1041
728 #: src/virt-viewer.c:1045
730729 msgid "[none]"
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1048
732 #: src/virt-viewer.c:1052
734733 msgid "Authentication failed."
735734 msgstr ""
736735
737 #: ../src/virt-viewer.c:1108
736 #: src/virt-viewer.c:1112
738737 msgid "Failed to connect: "
739738 msgstr ""
740739
741 #.
742 #. * Local variables:
743 #. * c-indent-level: 4
744 #. * c-basic-offset: 4
745 #. * indent-tabs-mode: nil
746 #. * End:
747 #.
748 #: ../src/resources/ui/virt-viewer.ui.h:1
740 #: src/resources/ui/virt-viewer.ui:28
749741 msgid "_File"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:2
744 #: src/resources/ui/virt-viewer.ui:41
753745 msgid "_Screenshot"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:3
748 #: src/resources/ui/virt-viewer.ui:52
757749 msgid "_USB device selection"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:4
752 #: src/resources/ui/virt-viewer.ui:62
761753 msgid "Smartcard insertion"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:5
756 #: src/resources/ui/virt-viewer.ui:72
765757 msgid "Smartcard removal"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:6
760 #: src/resources/ui/virt-viewer.ui:80
769761 msgid "_Change CD"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:7
764 #: src/resources/ui/virt-viewer.ui:90
773765 msgid "_Preferences"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:8
768 #: src/resources/ui/virt-viewer.ui:103
777769 msgid "_Quit"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:9
772 #: src/resources/ui/virt-viewer.ui:119
773 msgid "_Machine"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:129
777 msgid "_Pause"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:144
781 msgid "_Reset"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:153
785 msgid "_Power down"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:167
781789 msgid "_View"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:10
792 #: src/resources/ui/virt-viewer.ui:180
785793 msgid "_Full screen"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:11
796 #: src/resources/ui/virt-viewer.ui:191
789797 msgid "_Zoom"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:12
800 #: src/resources/ui/virt-viewer.ui:201
793801 msgid "Zoom _In"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:13
804 #: src/resources/ui/virt-viewer.ui:212
797805 msgid "Zoom _Out"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:14
808 #: src/resources/ui/virt-viewer.ui:229
801809 msgid "_Normal Size"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:15
812 #: src/resources/ui/virt-viewer.ui:246
805813 msgid "_Displays"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:16
816 #: src/resources/ui/virt-viewer.ui:255
809817 msgid "Release cursor"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:17
820 #: src/resources/ui/virt-viewer.ui:270
813821 msgid "_Send key"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:18
824 #: src/resources/ui/virt-viewer.ui:279
817825 msgid "_Help"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:19
828 #: src/resources/ui/virt-viewer.ui:290
821829 msgid "_Guest Details"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:20
832 #: src/resources/ui/virt-viewer.ui:297
825833 msgid "_About"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
836 #: src/resources/ui/virt-viewer-guest-details.ui:7
829837 msgid "Guest Details"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
840 #: src/resources/ui/virt-viewer-guest-details.ui:56
833841 msgid "Name:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
844 #: src/resources/ui/virt-viewer-guest-details.ui:68
837845 msgid "GUID:"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
848 #: src/resources/ui/virt-viewer-vm-connection.ui:7
841849 msgid "Choose a virtual machine"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
852 #: src/resources/ui/virt-viewer-vm-connection.ui:96
845853 msgid "Available virtual machines"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
856 #: src/resources/ui/virt-viewer-preferences.ui:8
849857 msgid "Preferences"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
860 #: src/resources/ui/virt-viewer-preferences.ui:48
853861 msgid "Folder sharing"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
864 #: src/resources/ui/virt-viewer-preferences.ui:70
857865 msgid "Share folder"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
868 #: src/resources/ui/virt-viewer-preferences.ui:82
861869 msgid "Read-only"
862870 msgstr ""
863871
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
872 #: src/resources/ui/virt-viewer-preferences.ui:96
873 msgid "Share clipboard"
874 msgstr ""
875
876 #: src/resources/ui/virt-viewer-preferences.ui:132
865877 msgid "Spice"
866878 msgstr ""
Binary diff not shown
+264
-252
po/da.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Danish\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+304
-283
po/de.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1212 # Rainer Gromansperg <rgromans@redhat.com>, 2013
1313 # Roman Spirgi <bigant@fedoraproject.org>, 2012
1414 # noxin <transifex.com@davidmainzer.com>, 2013
15 # Roman Spirgi <rspirgi@gmail.com>, 2015. #zanata
15 # Roman Spirgi <bigant@fedoraproject.org>, 2015. #zanata
1616 # jasna <jdimanos@redhat.com>, 2016. #zanata
1717 # Florian H. <postfuerflo@gmail.com>, 2017. #zanata
18 # Daniel Berrange <dan-zanata@berrange.com>, 2019. #zanata
19 # Thomas Eichhorn <tomislav@posteo.de>, 2019. #zanata
1820 msgid ""
1921 msgstr ""
20 "Project-Id-Version: PACKAGE VERSION\n"
21 "Report-Msgid-Bugs-To: \n"
22 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
23 "PO-Revision-Date: 2017-04-14 11:29-0400\n"
24 "Last-Translator: Florian H. <postfuerflo@gmail.com>\n"
22 "Project-Id-Version: virt-viewer 9.0\n"
23 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
24 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
25 "PO-Revision-Date: 2019-03-25 08:53+0000\n"
26 "Last-Translator: Thomas Eichhorn <tomislav@posteo.de>\n"
2527 "Language-Team: German (http://www.transifex.com/projects/p/virt-viewer/"
2628 "language/de/)\n"
2729 "Language: de\n"
2931 "Content-Type: text/plain; charset=UTF-8\n"
3032 "Content-Transfer-Encoding: 8bit\n"
3133 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
32 "X-Generator: Zanata 3.9.6\n"
33
34 #: ../data/remote-viewer.appdata.xml.in.h:1
35 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
34 "X-Generator: Zanata 4.6.2\n"
35
36 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
37 #: src/remote-viewer-main.c:39
3638 msgid "Remote Viewer"
3739 msgstr "Remote-Viewer"
3840
39 #: ../data/remote-viewer.appdata.xml.in.h:2
41 #: data/remote-viewer.appdata.xml.in:7
4042 msgid "Remotely access virtual machines"
41 msgstr ""
42
43 #: ../data/remote-viewer.appdata.xml.in.h:3
43 msgstr "Greifen Sie auf entfernte Virtuelle Maschinen zu"
44
45 #: data/remote-viewer.appdata.xml.in:9
4446 msgid ""
4547 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
4648 "time it supports guest OS using the VNC or SPICE protocols. Further "
4951 "using SSL/TLS encryption."
5052 msgstr ""
5153
52 #: ../data/remote-viewer.desktop.in.h:2
54 #: data/remote-viewer.desktop.in:4
5355 msgid "Access remote desktops"
5456 msgstr "Zugriff auf Remote-Desktops"
5557
56 #: ../data/virt-viewer-mime.xml.in.h:1
57 msgid "Virt-Viewer connection file"
58 msgstr "Virt-Viewer Verbindungsdatei"
59
60 #: ../src/remote-viewer-iso-list-dialog.c:160
58 #: src/remote-viewer-iso-list-dialog.c:156
6159 msgid "Failed to fetch CD names"
62 msgstr ""
63
64 #: ../src/remote-viewer-iso-list-dialog.c:212
60 msgstr "CD-Namen konnten nicht abgerufen werden"
61
62 #: src/remote-viewer-iso-list-dialog.c:205
6563 msgid "<b>Loading...</b>"
6664 msgstr ""
6765
68 #: ../src/remote-viewer-iso-list-dialog.c:285
66 #: src/remote-viewer-iso-list-dialog.c:276
6967 msgid "Refresh"
7068 msgstr ""
7169
72 #: ../src/remote-viewer-iso-list-dialog.c:286
70 #: src/remote-viewer-iso-list-dialog.c:277
7371 msgid "Close"
74 msgstr ""
75
76 #: ../src/remote-viewer-iso-list-dialog.c:306
72 msgstr "Schließen"
73
74 #: src/remote-viewer-iso-list-dialog.c:297
7775 msgid "Unspecified error"
78 msgstr ""
79
80 #: ../src/remote-viewer-iso-list-dialog.c:328
76 msgstr "Unspezifizierter Fehler"
77
78 #: src/remote-viewer-iso-list-dialog.c:318
8179 msgid "Failed to change CD"
82 msgstr ""
83
84 #: ../src/remote-viewer-iso-list-dialog.c:380
80 msgstr "Fehler beim Wechseln der CD"
81
82 #: src/remote-viewer-iso-list-dialog.c:370
8583 msgid "Change CD"
86 msgstr ""
87
88 #: ../src/remote-viewer.c:118
84 msgstr "CD wechseln"
85
86 #: src/remote-viewer.c:116
8987 msgid "Set window title"
9088 msgstr "Titel des Window setzen"
9189
92 #: ../src/remote-viewer.c:125
90 #: src/remote-viewer.c:123
9391 msgid "Remote viewer client"
9492 msgstr "Remote-Viewer Client"
9593
96 #: ../src/remote-viewer.c:150
97 #, c-format
94 #: src/remote-viewer.c:148
9895 msgid ""
9996 "\n"
10097 "Error: can't handle multiple URIs\n"
104101 "Fehler: Multiple URIs können nicht verarbeitet werden\n"
105102 "\n"
106103
107 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
104 #: src/remote-viewer.c:162 src/virt-viewer.c:200
108105 #, c-format
109106 msgid "Run '%s --help' to see a full list of available command line options\n"
110107 msgstr ""
111108 "Führen Sie '%s --help' aus, zum Anzeigen aller verfügbaren Kommandozeilen-"
112109 "Optionen\n"
113110
114 #: ../src/remote-viewer.c:435
111 #: src/remote-viewer.c:429
115112 msgid "failed to parse ovirt uri"
116113 msgstr "Parsen von ovirt uri fehlgeschlagen"
117114
118 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
115 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
119116 msgid "Authentication was cancelled"
120117 msgstr "Authentifizierung abgebrochen"
121118
122 #: ../src/remote-viewer.c:480
119 #: src/remote-viewer.c:472
123120 #, c-format
124121 msgid "oVirt VM %s is not running"
125122 msgstr "oVirt VM %s läuft nicht"
126123
127 #: ../src/remote-viewer.c:494
124 #: src/remote-viewer.c:486
128125 #, c-format
129126 msgid "oVirt VM %s has no display"
130127 msgstr "oVirt VM %s hat keine Anzeige"
131128
132 #: ../src/remote-viewer.c:520
129 #: src/remote-viewer.c:512
133130 #, c-format
134131 msgid "oVirt VM %s has no host information"
135132 msgstr "oVirt VM %s hat keine Host-Informationen"
136133
137 #: ../src/remote-viewer.c:531
138 #, c-format
139 msgid "oVirt VM %s has unknown display type: %d"
140 msgstr "oVirt VM %s hat unbekannten Anzeigentyp: %d"
141
142 #: ../src/remote-viewer.c:713
134 #: src/remote-viewer.c:523
135 #, c-format
136 msgid "oVirt VM %s has unknown display type: %u"
137 msgstr ""
138
139 #: src/remote-viewer.c:690
140 msgid "Couldn't open oVirt session: "
141 msgstr "Konnte oVirt-Sitzung nicht öffnen: "
142
143 #: src/remote-viewer.c:718
143144 msgid "Failed to initiate connection"
144145 msgstr "Initiieren der Verbindung fehlgeschlagen"
145146
146 #: ../src/remote-viewer.c:742
147 #: src/remote-viewer.c:747
147148 msgid "No connection was chosen"
148149 msgstr "Es wurde keine Verbindung gewählt"
149150
150 #: ../src/remote-viewer.c:759
151 #: src/remote-viewer.c:764
151152 msgid "Failed to read stdin: "
152 msgstr ""
153
154 #: ../src/remote-viewer.c:776
153 msgstr "stdin könnte nicht gelesen werden:"
154
155 #: src/remote-viewer.c:781
155156 #, c-format
156157 msgid "Invalid file %s: "
157158 msgstr "Ungültige Datei %s: "
158159
159 #: ../src/remote-viewer.c:786
160 #: src/remote-viewer.c:791
160161 msgid "Cannot determine the connection type from URI"
161162 msgstr "Verbindungstyp konnte nicht von URI ermittelt werden"
162163
163 #: ../src/remote-viewer.c:792
164 msgid "Couldn't open oVirt session: "
165 msgstr "Konnte oVirt-Sitzung nicht öffnen: "
166
167 #: ../src/remote-viewer.c:815
164 #: src/remote-viewer.c:810
168165 #, c-format
169166 msgid "Unable to connect: %s"
170 msgstr ""
171
172 #.
173 #. * Local variables:
174 #. * c-indent-level: 4
175 #. * c-basic-offset: 4
176 #. * indent-tabs-mode: nil
177 #. * End:
178 #.
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
167 msgstr "Verbindung konnte nicht hergestellt werden: %s"
168
169 #: src/resources/ui/remote-viewer-connect.ui:6
180170 msgid "Connection details"
181171 msgstr "Verbindungsdetails"
182172
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
173 #: src/resources/ui/remote-viewer-connect.ui:24
184174 msgid "Connection _Address"
185175 msgstr ""
186176
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
177 #: src/resources/ui/remote-viewer-connect.ui:54
188178 msgid "For example, spice://foo.example.org:5900"
189179 msgstr "Zum Beispiel spice://foo.example.org:5900"
190180
191 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
181 #: src/resources/ui/remote-viewer-connect.ui:78
192182 msgid "Recent connections"
193183 msgstr "Neueste Verbindungen"
194184
195 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
196 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
197 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
198 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
185 #: src/resources/ui/remote-viewer-connect.ui:120
186 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
187 #: src/resources/ui/virt-viewer-vm-connection.ui:24
188 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
199189 msgid "_Cancel"
200190 msgstr "_Abbrechen"
201191
202 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
192 #: src/resources/ui/remote-viewer-connect.ui:134
193 #: src/resources/ui/virt-viewer-vm-connection.ui:38
204194 msgid "C_onnect"
205195 msgstr "V_erbinden"
206196
207 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
197 #: src/resources/ui/remote-viewer-iso-list.ui:28
208198 msgid "Loading..."
209 msgstr ""
210
211 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
199 msgstr "Lade..."
200
201 #: src/resources/ui/remote-viewer-iso-list.ui:78
212202 msgid "Select ISO"
213 msgstr ""
214
215 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
203 msgstr "ISO-Abbild auswählen"
204
205 #: src/resources/ui/remote-viewer-iso-list.ui:116
216206 msgid "Selected"
217 msgstr ""
218
219 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
220 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
207 msgstr "Ausgewählt"
208
209 #: src/resources/ui/remote-viewer-iso-list.ui:129
210 #: src/resources/ui/virt-viewer-vm-connection.ui:72
221211 msgid "Name"
222212 msgstr "Name"
223213
224 #: ../src/resources/ui/virt-viewer-about.ui.h:1
214 #: src/resources/ui/virt-viewer-about.ui:7
225215 msgid "About Virt-Viewer"
226216 msgstr "Über Virt-Viewer"
227217
228 #: ../src/resources/ui/virt-viewer-about.ui.h:2
218 #: src/resources/ui/virt-viewer-about.ui:16
229219 msgid ""
230220 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
231221 "Copyright (C) 2007-2014 Red Hat, Inc."
233223 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
234224 "Copyright (C) 2007-2014 Red Hat, Inc."
235225
236 #: ../src/resources/ui/virt-viewer-about.ui.h:4
226 #: src/resources/ui/virt-viewer-about.ui:18
237227 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
238228 msgstr ""
239229 "Ein Remote-Desktop-Client erstellt unter Verwendung von GTK-VNC, SPICE-GTK "
240230 "und libvirt"
241231
242 #: ../src/resources/ui/virt-viewer-about.ui.h:5
243 msgid "virt-manager.org"
244 msgstr "virt-manager.org"
245
246 #: ../src/resources/ui/virt-viewer-about.ui.h:6
232 #: src/resources/ui/virt-viewer-about.ui:20
233 msgid "gitlab.com/virt-viewer/virt-viewer"
234 msgstr ""
235
236 #: src/resources/ui/virt-viewer-about.ui:21
247237 msgid ""
248238 "This program is free software; you can redistribute it and/or modify\n"
249239 "it under the terms of the GNU General Public License as published by\n"
273263 "along with this program; if not, write to the Free Software\n"
274264 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
275265
276 #: ../src/resources/ui/virt-viewer-about.ui.h:20
266 #: src/resources/ui/virt-viewer-about.ui:38
277267 msgid "The Fedora Translation Team"
278268 msgstr "Das Fedora Übersetzungs-Team"
279269
280 #: ../src/virt-viewer-app.c:459
270 #: src/virt-viewer-app.c:594
281271 msgid "Do you want to close the session?"
282272 msgstr "Möchten Sie die Sitzung beenden?"
283273
284 #: ../src/virt-viewer-app.c:461
274 #: src/virt-viewer-app.c:596
285275 msgid "Do not ask me again"
286276 msgstr "Nicht noch einmal nachfragen"
287277
288 #: ../src/virt-viewer-app.c:655
278 #: src/virt-viewer-app.c:767
289279 #, c-format
290280 msgid "Address is too long for unix socket_path: %s"
291281 msgstr ""
292282
293 #: ../src/virt-viewer-app.c:665
283 #: src/virt-viewer-app.c:777
294284 #, c-format
295285 msgid "Creating unix socket failed: %s"
296 msgstr ""
297
298 #: ../src/virt-viewer-app.c:671
286 msgstr "Unix-Socket konnte nicht erstellt werden: %s"
287
288 #: src/virt-viewer-app.c:783
299289 #, c-format
300290 msgid "Connecting to unix socket failed: %s"
301291 msgstr ""
302292
303 #: ../src/virt-viewer-app.c:955
293 #: src/virt-viewer-app.c:1077
304294 #, c-format
305295 msgid "Waiting for display %d..."
306296 msgstr "Warten auf Anzeige %d ..."
307297
308 #: ../src/virt-viewer-app.c:1062
298 #: src/virt-viewer-app.c:1193
309299 #, c-format
310300 msgid "Unsupported graphic type '%s'"
311301 msgstr "Nicht unterstützter Grafiktyp »%s«"
312302
313 #: ../src/virt-viewer-app.c:1146
303 #: src/virt-viewer-app.c:1277
314304 msgid "Connect to ssh failed."
315305 msgstr "Verbindung über SSH ist fehlgeschlagen."
316306
317 #: ../src/virt-viewer-app.c:1161
307 #: src/virt-viewer-app.c:1292
318308 #, c-format
319309 msgid "Can't connect to channel: %s"
320310 msgstr ""
321311
322 #: ../src/virt-viewer-app.c:1163
312 #: src/virt-viewer-app.c:1294
323313 msgid "only SSH or unix socket connection supported."
324 msgstr ""
325
326 #: ../src/virt-viewer-app.c:1176
314 msgstr "Es werden nur SSH und Unix-Sockets unterstützt."
315
316 #: src/virt-viewer-app.c:1311
327317 msgid "Connect to channel unsupported."
328318 msgstr "Verbindung zu dem Kanal wird nicht unterstützt."
329319
330 #: ../src/virt-viewer-app.c:1238
320 #: src/virt-viewer-app.c:1376
331321 msgid "Display can only be attached through libvirt with --attach"
332322 msgstr "Anzeige kann nur durch libvirt mit --attach zugeordnet werden"
333323
334 #: ../src/virt-viewer-app.c:1263
324 #: src/virt-viewer-app.c:1401
335325 msgid "Connecting to graphic server"
336326 msgstr "Verbinden mit Grafikserver"
337327
338 #: ../src/virt-viewer-app.c:1362
328 #: src/virt-viewer-app.c:1500
339329 msgid "Guest domain has shutdown"
340330 msgstr "Gast-Domain wurde beendet"
341331
342 #: ../src/virt-viewer-app.c:1423
332 #: src/virt-viewer-app.c:1561
343333 msgid "Connected to graphic server"
344334 msgstr "Verbunden mit Grafikserver"
345335
346 #: ../src/virt-viewer-app.c:1452
336 #: src/virt-viewer-app.c:1590
347337 #, c-format
348338 msgid "Unable to connect to the graphic server %s"
349339 msgstr "Verbindung zum Grafik-Server %s konnte nicht hergestellt werden"
350340
351 #: ../src/virt-viewer-app.c:1478
341 #: src/virt-viewer-app.c:1616
352342 #, c-format
353343 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
354344 msgstr "Authentifikation beim Remote-Desktop-Server an %s: %s fehlgeschlagen\n"
355345
356 #: ../src/virt-viewer-app.c:1492
346 #: src/virt-viewer-app.c:1630
357347 #, c-format
358348 msgid "Unable to authenticate with remote desktop server: %s"
359349 msgstr "Authentifikation beim Remote-Desktop-Server fehlgeschlagen: %s"
360350
361 #: ../src/virt-viewer-app.c:1500
351 #: src/virt-viewer-app.c:1638
362352 #, c-format
363353 msgid "USB redirection error: %s"
364354 msgstr "USB-Weiterleitungsfehler: %s"
365355
366 #: ../src/virt-viewer-app.c:1834
356 #: src/virt-viewer-app.c:2026
367357 #, c-format
368358 msgid "Zoom level must be within %d-%d\n"
369359 msgstr "Zoom-Level muss zwischen %d-%d sein\n"
370360
371 #: ../src/virt-viewer-app.c:1887
361 #: src/virt-viewer-app.c:2081
372362 #, c-format
373363 msgid "%s\n"
374364 msgstr "%s\n"
375365
376 #: ../src/virt-viewer-app.c:1897
366 #: src/virt-viewer-app.c:2091
377367 #, c-format
378368 msgid "%s version %s"
379369 msgstr "%s Version %s"
380370
381 #: ../src/virt-viewer-app.c:2321
371 #: src/virt-viewer-app.c:2545
382372 #, c-format
383373 msgid "Display _%d"
384374 msgstr ""
385375
386 #: ../src/virt-viewer-app.c:2577
376 #: src/virt-viewer-app.c:2829
387377 #, c-format
388378 msgid "Invalid kiosk-quit argument: %s"
389379 msgstr "Ungültiger kiosk-quit Parameter: %s"
390380
391 #: ../src/virt-viewer-app.c:2588
381 #: src/virt-viewer-app.c:2840
392382 msgid "Display version information"
393383 msgstr "Versionsinformationen anzeigen"
394384
395 #: ../src/virt-viewer-app.c:2590
385 #: src/virt-viewer-app.c:2842
396386 msgid "Zoom level of window, in percentage"
397387 msgstr "Zoomlevel des Fensters in Prozent"
398388
399 #: ../src/virt-viewer-app.c:2592
389 #: src/virt-viewer-app.c:2844
400390 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
401391 msgstr ""
402392 "Im Vollbildmodus öffnen (Die Auflösung des Gast-Systems entsprechend "
403393 "angepasst an)."
404394
405 #: ../src/virt-viewer-app.c:2594
395 #: src/virt-viewer-app.c:2846
406396 msgid "Customise hotkeys"
407397 msgstr "eigene angepasste Hotkeys"
408398
409 #: ../src/virt-viewer-app.c:2596
399 #: src/virt-viewer-app.c:2848
410400 msgid "Enable kiosk mode"
411401 msgstr "Kiosk Modus ermöglichen"
412402
413 #: ../src/virt-viewer-app.c:2598
403 #: src/virt-viewer-app.c:2850
414404 msgid "Quit on given condition in kiosk mode"
415405 msgstr "Beenden bei bestimmter Bedingung im Kiosk-Modus"
416406
417 #: ../src/virt-viewer-app.c:2598
407 #: src/virt-viewer-app.c:2850
418408 msgid "<never|on-disconnect>"
419409 msgstr "<never|on-disconnect>"
420410
421 #: ../src/virt-viewer-app.c:2600
411 #: src/virt-viewer-app.c:2852
422412 msgid "Display verbose information"
423413 msgstr "Ausführliche Informationen anzeigen"
424414
425 #: ../src/virt-viewer-app.c:2602
415 #: src/virt-viewer-app.c:2854
426416 msgid "Display debugging information"
427417 msgstr "Debugging-Informationen anzeigen"
428418
429 #: ../src/virt-viewer-auth.c:89
419 #: src/virt-viewer-auth.c:89
430420 #, c-format
431421 msgid ""
432422 "Authentication is required for the %s connection to:\n"
439429 "<b>%s</b>\n"
440430 "\n"
441431
442 #: ../src/virt-viewer-auth.c:93
432 #: src/virt-viewer-auth.c:93
443433 #, c-format
444434 msgid "Authentication is required for the %s connection:\n"
445435 msgstr "Authentifikation ist für die %s Verbindung erforderlich:\n"
446436
447 #.
448 #. * Local variables:
449 #. * c-indent-level: 4
450 #. * c-basic-offset: 4
451 #. * indent-tabs-mode: nil
452 #. * End:
453 #.
454 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
437 #: src/resources/ui/virt-viewer-auth.ui:7
455438 msgid "Authentication required"
456439 msgstr "Authentifikation erforderlich"
457440
458 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
441 #: src/resources/ui/virt-viewer-auth.ui:42
459442 msgid "_OK"
460443 msgstr "_OK"
461444
462 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
463 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
464 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
445 #: src/resources/ui/virt-viewer-auth.ui:71
446 #: src/resources/ui/virt-viewer-guest-details.ui:82
447 #: src/resources/ui/virt-viewer-guest-details.ui:96
448 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
465449 msgid "label"
466450 msgstr "Label"
467451
468 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
452 #: src/resources/ui/virt-viewer-auth.ui:93
469453 msgid "Password:"
470454 msgstr "Passwort:"
471455
472 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
456 #: src/resources/ui/virt-viewer-auth.ui:105
473457 msgid "Username:"
474458 msgstr "Benutzername:"
475459
476 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
460 #: src/resources/ui/virt-viewer-auth.ui:137
477461 msgid "Show password"
478462 msgstr "Passwort anzeigen"
479463
480 #: ../src/virt-viewer-display-vnc.c:134
464 #: src/virt-viewer-display-vnc.c:130
481465 msgid "VNC does not provide GUID"
482466 msgstr "VNC bietet keine GUID"
483467
484 #: ../src/virt-viewer-file-transfer-dialog.c:128
468 #: src/virt-viewer-display-vte.c:181
469 msgid "Console support is compiled out!"
470 msgstr "Konsolenunterstützung wurde nicht ins Programm kompiliert!"
471
472 #: src/virt-viewer-file-transfer-dialog.c:124
485473 msgid "File Transfers"
486474 msgstr "Dateitransfer"
487475
488 #: ../src/virt-viewer-file-transfer-dialog.c:154
476 #: src/virt-viewer-file-transfer-dialog.c:150
489477 msgid "Transferring 1 file..."
490 msgstr ""
491
492 #: ../src/virt-viewer-file-transfer-dialog.c:156
493 #, c-format
494 msgid "Transferring %d file of %d..."
495 msgid_plural "Transferring %d files of %d..."
478 msgstr "Eine Datei wird übertragen..."
479
480 #: src/virt-viewer-file-transfer-dialog.c:152
481 #, c-format
482 msgid "Transferring %u file of %u..."
483 msgid_plural "Transferring %u files of %u..."
496484 msgstr[0] ""
497
498 #: ../src/virt-viewer-file-transfer-dialog.c:228
499 #, c-format
500 msgid "An error caused the following file transfers to fail:%s"
501 msgstr ""
502
503 #: ../src/virt-viewer-main.c:38
485 msgstr[1] ""
486
487 #: src/virt-viewer-file-transfer-dialog.c:225
488 msgid "An error caused the following file transfers to fail:"
489 msgstr ""
490
491 #: src/virt-viewer-main.c:38
504492 msgid "Virt Viewer"
505493 msgstr "Virt-Viewer"
506494
507 #: ../src/virt-viewer-session-spice.c:704
495 #: src/virt-viewer-session-spice.c:731
508496 msgid "Invalid password"
509497 msgstr "Ungültiges Passwort"
510498
511 #. Create the widgets
512 #: ../src/virt-viewer-session-spice.c:802
499 #: src/virt-viewer-session-spice.c:829
513500 msgid "Select USB devices for redirection"
514501 msgstr "USB-Gerät zur Weiterleitung wählen"
515502
516 #: ../src/virt-viewer-session-spice.c:804
517 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
503 #: src/virt-viewer-session-spice.c:831
504 #: src/resources/ui/virt-viewer-guest-details.ui:23
518505 msgid "_Close"
519506 msgstr "_Schließen"
520507
521 #: ../src/virt-viewer-session-vnc.c:162
522 #, c-format
523 msgid "Unsupported authentication type %d"
524 msgstr "Nicht unterstützter Authentifikationsstyp %d"
525
526 #: ../src/virt-viewer-vm-connection.c:64
508 #: src/virt-viewer-session-spice.c:1019
509 msgid "Serial"
510 msgstr ""
511
512 #: src/virt-viewer-session-spice.c:1021
513 msgid "QEMU human monitor"
514 msgstr ""
515
516 #: src/virt-viewer-session-spice.c:1023
517 msgid "QEMU debug console"
518 msgstr ""
519
520 #: src/virt-viewer-session-vnc.c:158
521 #, c-format
522 msgid "Unsupported authentication type %u"
523 msgstr ""
524
525 #: src/virt-viewer-vm-connection.c:64
527526 msgid "No running virtual machine found"
528527 msgstr ""
529528
530 #: ../src/virt-viewer-vm-connection.c:93
529 #: src/virt-viewer-vm-connection.c:93
531530 msgid "No virtual machine was chosen"
532531 msgstr "Es wurde keine virtuelle Maschine ausgewählt"
533532
534 #: ../src/virt-viewer-window.c:544
533 #: src/virt-viewer-window.c:621
535534 msgid "Ctrl+Alt+_Del"
536535 msgstr "Strg+Alt+_Entf"
537536
538 #: ../src/virt-viewer-window.c:545
537 #: src/virt-viewer-window.c:622
539538 msgid "Ctrl+Alt+_Backspace"
540539 msgstr "Strg+Alt+_Rücktaste"
541540
542 #: ../src/virt-viewer-window.c:547
541 #: src/virt-viewer-window.c:624
543542 msgid "Ctrl+Alt+F_1"
544543 msgstr "Strg+Alt+F_1"
545544
546 #: ../src/virt-viewer-window.c:548
545 #: src/virt-viewer-window.c:625
547546 msgid "Ctrl+Alt+F_2"
548547 msgstr "Strg+Alt+F_2"
549548
550 #: ../src/virt-viewer-window.c:549
549 #: src/virt-viewer-window.c:626
551550 msgid "Ctrl+Alt+F_3"
552551 msgstr "Strg+Alt+F_3"
553552
554 #: ../src/virt-viewer-window.c:550
553 #: src/virt-viewer-window.c:627
555554 msgid "Ctrl+Alt+F_4"
556555 msgstr "Strg+Alt+F_4"
557556
558 #: ../src/virt-viewer-window.c:551
557 #: src/virt-viewer-window.c:628
559558 msgid "Ctrl+Alt+F_5"
560559 msgstr "Strg+Alt+F_5"
561560
562 #: ../src/virt-viewer-window.c:552
561 #: src/virt-viewer-window.c:629
563562 msgid "Ctrl+Alt+F_6"
564563 msgstr "Strg+Alt+F_6"
565564
566 #: ../src/virt-viewer-window.c:553
565 #: src/virt-viewer-window.c:630
567566 msgid "Ctrl+Alt+F_7"
568567 msgstr "Strg+Alt+F_7"
569568
570 #: ../src/virt-viewer-window.c:554
569 #: src/virt-viewer-window.c:631
571570 msgid "Ctrl+Alt+F_8"
572571 msgstr "Strg+Alt+F_8"
573572
574 #: ../src/virt-viewer-window.c:555
573 #: src/virt-viewer-window.c:632
575574 msgid "Ctrl+Alt+F_9"
576575 msgstr "Strg+Alt+F_9"
577576
578 #: ../src/virt-viewer-window.c:556
577 #: src/virt-viewer-window.c:633
579578 msgid "Ctrl+Alt+F1_0"
580579 msgstr "Strg+Alt+F1_0"
581580
582 #: ../src/virt-viewer-window.c:557
581 #: src/virt-viewer-window.c:634
583582 msgid "Ctrl+Alt+F11"
584583 msgstr "Strg+Alt+F11"
585584
586 #: ../src/virt-viewer-window.c:558
585 #: src/virt-viewer-window.c:635
587586 msgid "Ctrl+Alt+F12"
588587 msgstr "Strg+Alt+F12"
589588
590 #: ../src/virt-viewer-window.c:953
589 #: src/virt-viewer-window.c:637
590 msgid "_PrintScreen"
591 msgstr ""
592
593 #: src/virt-viewer-window.c:1030
591594 #, c-format
592595 msgid "Unable to determine image format for file '%s'"
593596 msgstr ""
594597
595 #: ../src/virt-viewer-window.c:980
598 #: src/virt-viewer-window.c:1053
599 msgid "Save screenshot"
600 msgstr ""
601
602 #: src/virt-viewer-window.c:1057
596603 msgid "_Save"
597604 msgstr "_Speichern"
598605
599 #: ../src/virt-viewer-window.c:988
606 #: src/virt-viewer-window.c:1065
600607 msgid "Screenshot.png"
601608 msgstr ""
602609
603 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
610 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
604611 msgid "Unknown"
605612 msgstr "Unbekannt"
606613
607 #: ../src/virt-viewer-window.c:1152
614 #: src/virt-viewer-window.c:1237
608615 msgid "Unable to connnect to oVirt"
609616 msgstr ""
610617
611 #: ../src/virt-viewer-window.c:1175
618 #: src/virt-viewer-window.c:1260
612619 msgid "Disconnect"
613620 msgstr "Verbindung trennen"
614621
615 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
622 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
616623 msgid "USB device selection"
617624 msgstr "USB-Geräteauswahl"
618625
619 #: ../src/virt-viewer-window.c:1193
626 #: src/virt-viewer-window.c:1278
620627 msgid "Send key combination"
621628 msgstr "Tastenkombination senden"
622629
623 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
630 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
624631 msgid "Leave fullscreen"
625632 msgstr "Vollbildmodus verlassen"
626633
627 #: ../src/virt-viewer-window.c:1279
634 #: src/virt-viewer-window.c:1364
628635 msgid "Ctrl+Alt"
629636 msgstr "Strg+Alt"
630637
631 #: ../src/virt-viewer-window.c:1282
638 #: src/virt-viewer-window.c:1367
632639 #, c-format
633640 msgid "(Press %s to release pointer)"
634641 msgstr "(Drücken Sie %s, um den Mauszeiger freizugeben)"
635642
636 #. translators:
637 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
638 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
639 #.
640 #: ../src/virt-viewer-window.c:1293
643 #: src/virt-viewer-window.c:1378
641644 #, c-format
642645 msgid "%s%s%s - %s"
643646 msgstr "%s%s%s - %s"
644647
645 #. translators: <space>
646 #: ../src/virt-viewer-window.c:1297
648 #: src/virt-viewer-window.c:1382
647649 msgid " "
648650 msgstr " "
649651
650 #: ../src/virt-viewer-file.c:862
652 #: src/virt-viewer-file.c:875
651653 #, c-format
652654 msgid ""
653655 "At least %s version %s is required to setup this connection, see %s for "
656658 "Es wird mindestens %s in der Version %s benötigt, um eine Verbindung "
657659 "aufzubauen, siehe %s für Details"
658660
659 #: ../src/virt-viewer-file.c:870
661 #: src/virt-viewer-file.c:883
660662 #, c-format
661663 msgid "At least %s version %s is required to setup this connection"
662664 msgstr ""
663665 "Es wird mindestens %s in der Version %s benötigt, um eine Verbindung "
664666 "aufzubauen"
665667
666 #: ../src/virt-viewer.c:133
668 #: src/virt-viewer.c:131
667669 msgid "Direct connection with no automatic tunnels"
668670 msgstr "Direkte Verbindung ohne automatische Tunnel"
669671
670 #: ../src/virt-viewer.c:135
672 #: src/virt-viewer.c:133
671673 msgid "Attach to the local display using libvirt"
672674 msgstr "Mit lokaler Anzeige verbinden mittels libvirt"
673675
674 #: ../src/virt-viewer.c:137
676 #: src/virt-viewer.c:135
675677 msgid "Connect to hypervisor"
676678 msgstr "Verbinden mit Hypervisor"
677679
678 #: ../src/virt-viewer.c:139
680 #: src/virt-viewer.c:137
679681 msgid "Wait for domain to start"
680682 msgstr "Warten auf Start der Domain"
681683
682 #: ../src/virt-viewer.c:141
684 #: src/virt-viewer.c:139
683685 msgid "Reconnect to domain upon restart"
684686 msgstr "Nach Neustart erneut mit Domain verbinden"
685687
686 #: ../src/virt-viewer.c:143
688 #: src/virt-viewer.c:141
687689 msgid "Select the virtual machine only by its name"
688690 msgstr ""
689691
690 #: ../src/virt-viewer.c:145
692 #: src/virt-viewer.c:143
691693 msgid "Select the virtual machine only by its id"
692694 msgstr ""
693695
694 #: ../src/virt-viewer.c:147
696 #: src/virt-viewer.c:145
695697 msgid "Select the virtual machine only by its uuid"
696698 msgstr ""
697699
698 #: ../src/virt-viewer.c:154
700 #: src/virt-viewer.c:152
699701 msgid "Virtual machine graphical console"
700702 msgstr "Grafische Konsole der virtuellen Maschine"
701703
702 #: ../src/virt-viewer.c:173
704 #: src/virt-viewer.c:171
703705 #, c-format
704706 msgid ""
705707 "\n"
707709 "\n"
708710 msgstr ""
709711
710 #: ../src/virt-viewer.c:185
712 #: src/virt-viewer.c:183
711713 #, c-format
712714 msgid ""
713715 "\n"
715717 "\n"
716718 msgstr ""
717719
718 #: ../src/virt-viewer.c:300
720 #: src/virt-viewer.c:296
719721 msgid "Waiting for guest domain to re-start"
720722 msgstr "Warten auf Neustart der Domain"
721723
722 #: ../src/virt-viewer.c:554
724 #: src/virt-viewer.c:550
723725 #, c-format
724726 msgid "Cannot determine the graphic type for the guest %s"
725727 msgstr "Grafiktyp für den Gast %s konnte nicht ermittelt werden "
726728
727 #: ../src/virt-viewer.c:603
729 #: src/virt-viewer.c:599
728730 #, c-format
729731 msgid "Cannot determine the host for the guest %s"
730732 msgstr "Host für den Gast %s konnte nicht ermittelt werden"
731733
732 #: ../src/virt-viewer.c:631
734 #: src/virt-viewer.c:627
733735 #, c-format
734736 msgid "Guest '%s' is not reachable"
735737 msgstr "Gast »%s« ist nicht erreichbar"
736738
737 #: ../src/virt-viewer.c:860
739 #: src/virt-viewer.c:856
738740 #, c-format
739741 msgid "Virtual machine %s is not running"
740742 msgstr "Virtuelle Maschine %s läuft nicht"
741743
742 #: ../src/virt-viewer.c:884
744 #: src/virt-viewer.c:881
743745 msgid "Waiting for libvirt to start"
744746 msgstr "Auf den Start von libvirt wird gewartet"
745747
746 #: ../src/virt-viewer.c:888
748 #: src/virt-viewer.c:885
747749 msgid "Finding guest domain"
748750 msgstr "Suchen der Gast-Domain"
749751
750 #: ../src/virt-viewer.c:892
752 #: src/virt-viewer.c:889
751753 msgid "Waiting for guest domain to be created"
752754 msgstr "Warten auf Erstellung der Gast-Domain"
753755
754 #: ../src/virt-viewer.c:918
756 #: src/virt-viewer.c:921
755757 msgid "Checking guest domain status"
756758 msgstr "Prüfen des Gast-Domain-Status"
757759
758 #: ../src/virt-viewer.c:921
760 #: src/virt-viewer.c:924
759761 msgid "Cannot get guest state"
760762 msgstr "Gast-Status konnte nicht abgerufen werden"
761763
762 #: ../src/virt-viewer.c:927
764 #: src/virt-viewer.c:930
763765 msgid "Waiting for guest domain to start"
764766 msgstr "Warten auf Start der Gast-Domain"
765767
766 #: ../src/virt-viewer.c:1040
768 #: src/virt-viewer.c:1044
767769 #, c-format
768770 msgid "Unable to connect to libvirt with URI: %s."
769771 msgstr "Verbindung zu libvirt mit URI: %s nicht möglich."
770772
771 #: ../src/virt-viewer.c:1041
773 #: src/virt-viewer.c:1045
772774 msgid "[none]"
773775 msgstr "[keine]"
774776
775 #: ../src/virt-viewer.c:1048
777 #: src/virt-viewer.c:1052
776778 msgid "Authentication failed."
777779 msgstr "Authentifizierung fehlgeschlagen."
778780
779 #: ../src/virt-viewer.c:1108
781 #: src/virt-viewer.c:1112
780782 msgid "Failed to connect: "
781783 msgstr "Verbindung fehlgeschlagen:"
782784
783 #.
784 #. * Local variables:
785 #. * c-indent-level: 4
786 #. * c-basic-offset: 4
787 #. * indent-tabs-mode: nil
788 #. * End:
789 #.
790 #: ../src/resources/ui/virt-viewer.ui.h:1
785 #: src/resources/ui/virt-viewer.ui:28
791786 msgid "_File"
792787 msgstr "_Datei"
793788
794 #: ../src/resources/ui/virt-viewer.ui.h:2
789 #: src/resources/ui/virt-viewer.ui:41
795790 msgid "_Screenshot"
796791 msgstr "_Bildschirmfoto"
797792
798 #: ../src/resources/ui/virt-viewer.ui.h:3
793 #: src/resources/ui/virt-viewer.ui:52
799794 msgid "_USB device selection"
800795 msgstr "_USB-Geräteauswahl"
801796
802 #: ../src/resources/ui/virt-viewer.ui.h:4
797 #: src/resources/ui/virt-viewer.ui:62
803798 msgid "Smartcard insertion"
804799 msgstr "Smartcard-Eingabe"
805800
806 #: ../src/resources/ui/virt-viewer.ui.h:5
801 #: src/resources/ui/virt-viewer.ui:72
807802 msgid "Smartcard removal"
808803 msgstr "Smartcard-Entfernung"
809804
810 #: ../src/resources/ui/virt-viewer.ui.h:6
805 #: src/resources/ui/virt-viewer.ui:80
811806 msgid "_Change CD"
812807 msgstr "_CD wechseln"
813808
814 #: ../src/resources/ui/virt-viewer.ui.h:7
809 #: src/resources/ui/virt-viewer.ui:90
815810 msgid "_Preferences"
816811 msgstr "_Einstellungen"
817812
818 #: ../src/resources/ui/virt-viewer.ui.h:8
813 #: src/resources/ui/virt-viewer.ui:103
819814 msgid "_Quit"
820815 msgstr "_Quit"
821816
822 #: ../src/resources/ui/virt-viewer.ui.h:9
817 #: src/resources/ui/virt-viewer.ui:119
818 msgid "_Machine"
819 msgstr ""
820
821 #: src/resources/ui/virt-viewer.ui:129
822 msgid "_Pause"
823 msgstr ""
824
825 #: src/resources/ui/virt-viewer.ui:144
826 msgid "_Reset"
827 msgstr ""
828
829 #: src/resources/ui/virt-viewer.ui:153
830 msgid "_Power down"
831 msgstr ""
832
833 #: src/resources/ui/virt-viewer.ui:167
823834 msgid "_View"
824835 msgstr "_Ansicht"
825836
826 #: ../src/resources/ui/virt-viewer.ui.h:10
837 #: src/resources/ui/virt-viewer.ui:180
827838 msgid "_Full screen"
828839 msgstr "_Vollbild"
829840
830 #: ../src/resources/ui/virt-viewer.ui.h:11
841 #: src/resources/ui/virt-viewer.ui:191
831842 msgid "_Zoom"
832843 msgstr "_Zoom"
833844
834 #: ../src/resources/ui/virt-viewer.ui.h:12
845 #: src/resources/ui/virt-viewer.ui:201
835846 msgid "Zoom _In"
836847 msgstr "Ver_größern"
837848
838 #: ../src/resources/ui/virt-viewer.ui.h:13
849 #: src/resources/ui/virt-viewer.ui:212
839850 msgid "Zoom _Out"
840851 msgstr "Ver_kleinern"
841852
842 #: ../src/resources/ui/virt-viewer.ui.h:14
853 #: src/resources/ui/virt-viewer.ui:229
843854 msgid "_Normal Size"
844855 msgstr "_Standardgröße"
845856
846 #: ../src/resources/ui/virt-viewer.ui.h:15
857 #: src/resources/ui/virt-viewer.ui:246
847858 msgid "_Displays"
848859 msgstr "_Anzeigen"
849860
850 #: ../src/resources/ui/virt-viewer.ui.h:16
861 #: src/resources/ui/virt-viewer.ui:255
851862 msgid "Release cursor"
852863 msgstr "Cursor freigeben"
853864
854 #: ../src/resources/ui/virt-viewer.ui.h:17
865 #: src/resources/ui/virt-viewer.ui:270
855866 msgid "_Send key"
856867 msgstr "_Taste senden"
857868
858 #: ../src/resources/ui/virt-viewer.ui.h:18
869 #: src/resources/ui/virt-viewer.ui:279
859870 msgid "_Help"
860871 msgstr "_Hilfe"
861872
862 #: ../src/resources/ui/virt-viewer.ui.h:19
873 #: src/resources/ui/virt-viewer.ui:290
863874 msgid "_Guest Details"
864875 msgstr "_Gast Details"
865876
866 #: ../src/resources/ui/virt-viewer.ui.h:20
877 #: src/resources/ui/virt-viewer.ui:297
867878 msgid "_About"
868879 msgstr "Ü_ber"
869880
870 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
881 #: src/resources/ui/virt-viewer-guest-details.ui:7
871882 msgid "Guest Details"
872883 msgstr "Gast Details"
873884
874 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
885 #: src/resources/ui/virt-viewer-guest-details.ui:56
875886 msgid "Name:"
876887 msgstr "Name:"
877888
878 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
889 #: src/resources/ui/virt-viewer-guest-details.ui:68
879890 msgid "GUID:"
880891 msgstr "GUID:"
881892
882 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
893 #: src/resources/ui/virt-viewer-vm-connection.ui:7
883894 msgid "Choose a virtual machine"
884895 msgstr "Wählen Sie eine virtuelle Maschine"
885896
886 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
897 #: src/resources/ui/virt-viewer-vm-connection.ui:96
887898 msgid "Available virtual machines"
888899 msgstr "Verfügbare virtuelle Maschinen"
889900
890 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
901 #: src/resources/ui/virt-viewer-preferences.ui:8
891902 msgid "Preferences"
892903 msgstr "Präferenzen"
893904
894 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
905 #: src/resources/ui/virt-viewer-preferences.ui:48
895906 msgid "Folder sharing"
896907 msgstr "Ordnerfreigabe"
897908
898 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
909 #: src/resources/ui/virt-viewer-preferences.ui:70
899910 msgid "Share folder"
900911 msgstr "Ordner freigeben"
901912
902 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
913 #: src/resources/ui/virt-viewer-preferences.ui:82
903914 msgid "Read-only"
904915 msgstr "Schreibgeschützt"
905916
906 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
917 #: src/resources/ui/virt-viewer-preferences.ui:96
918 msgid "Share clipboard"
919 msgstr ""
920
921 #: src/resources/ui/virt-viewer-preferences.ui:132
907922 msgid "Spice"
908923 msgstr "Spice"
924
925 #~ msgid "virt-manager.org"
926 #~ msgstr "virt-manager.org"
927
928 #~ msgid "virt-viewer"
929 #~ msgstr "virt-viewer"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: German (Switzerland)\n"
13 "Language: de-CH\n"
13 "Language: de_CH\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/el.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Greek\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: English (United Kingdom)\n"
13 "Language: en-GB\n"
13 "Language: en_GB\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/eo.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Esperanto\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+278
-263
po/es.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1717 # Máximo Castañeda Riloba <mcrcctm@gmail.com>, 2017. #zanata
1818 msgid ""
1919 msgstr ""
20 "Project-Id-Version: PACKAGE VERSION\n"
21 "Report-Msgid-Bugs-To: \n"
22 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
23 "PO-Revision-Date: 2017-06-16 11:43-0400\n"
20 "Project-Id-Version: virt-viewer 9.0\n"
21 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
22 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
23 "PO-Revision-Date: 2017-12-05 07:06+0000\n"
2424 "Last-Translator: Máximo Castañeda Riloba <mcrcctm@gmail.com>\n"
2525 "Language-Team: Spanish (http://www.transifex.com/projects/p/virt-viewer/"
2626 "language/es/)\n"
2929 "Content-Type: text/plain; charset=UTF-8\n"
3030 "Content-Transfer-Encoding: 8bit\n"
3131 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
32 "X-Generator: Zanata 3.9.6\n"
33
34 #: ../data/remote-viewer.appdata.xml.in.h:1
35 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
32 "X-Generator: Zanata 4.6.2\n"
33
34 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
35 #: src/remote-viewer-main.c:39
3636 msgid "Remote Viewer"
3737 msgstr "Visor remoto"
3838
39 #: ../data/remote-viewer.appdata.xml.in.h:2
39 #: data/remote-viewer.appdata.xml.in:7
4040 msgid "Remotely access virtual machines"
4141 msgstr "Acceder remotamente a maquinas virtuales"
4242
43 #: ../data/remote-viewer.appdata.xml.in.h:3
43 #: data/remote-viewer.appdata.xml.in:9
4444 msgid ""
4545 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
4646 "time it supports guest OS using the VNC or SPICE protocols. Further "
5454 "puede conectar directamente a sistemas locales o remotos, usando cifrado SSL/"
5555 "TLS si es necesario."
5656
57 #: ../data/remote-viewer.desktop.in.h:2
57 #: data/remote-viewer.desktop.in:4
5858 msgid "Access remote desktops"
5959 msgstr "Acceso a escritorios remotos"
6060
61 #: ../data/virt-viewer-mime.xml.in.h:1
62 msgid "Virt-Viewer connection file"
63 msgstr "Fichero de conexión Virt-Viewer"
64
65 #: ../src/remote-viewer-iso-list-dialog.c:160
61 #: src/remote-viewer-iso-list-dialog.c:156
6662 msgid "Failed to fetch CD names"
6763 msgstr "No se pudieron obtener los nombres de CD"
6864
69 #: ../src/remote-viewer-iso-list-dialog.c:212
65 #: src/remote-viewer-iso-list-dialog.c:205
7066 msgid "<b>Loading...</b>"
7167 msgstr "<b>Cargando...</b>"
7268
73 #: ../src/remote-viewer-iso-list-dialog.c:285
69 #: src/remote-viewer-iso-list-dialog.c:276
7470 msgid "Refresh"
7571 msgstr "Actualizar"
7672
77 #: ../src/remote-viewer-iso-list-dialog.c:286
73 #: src/remote-viewer-iso-list-dialog.c:277
7874 msgid "Close"
7975 msgstr "Cerrar"
8076
81 #: ../src/remote-viewer-iso-list-dialog.c:306
77 #: src/remote-viewer-iso-list-dialog.c:297
8278 msgid "Unspecified error"
8379 msgstr "Error no especificado"
8480
85 #: ../src/remote-viewer-iso-list-dialog.c:328
81 #: src/remote-viewer-iso-list-dialog.c:318
8682 msgid "Failed to change CD"
8783 msgstr "No se pudo cambiar el CD"
8884
89 #: ../src/remote-viewer-iso-list-dialog.c:380
85 #: src/remote-viewer-iso-list-dialog.c:370
9086 msgid "Change CD"
9187 msgstr "Cambiar CD"
9288
93 #: ../src/remote-viewer.c:118
89 #: src/remote-viewer.c:116
9490 msgid "Set window title"
9591 msgstr "Fijar el título de ventana"
9692
97 #: ../src/remote-viewer.c:125
93 #: src/remote-viewer.c:123
9894 msgid "Remote viewer client"
9995 msgstr "Cliente de visor remoto"
10096
101 #: ../src/remote-viewer.c:150
102 #, c-format
97 #: src/remote-viewer.c:148
10398 msgid ""
10499 "\n"
105100 "Error: can't handle multiple URIs\n"
108103 "\n"
109104 "Error: No se pueden manejar múltiples URIs\n"
110105
111 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
106 #: src/remote-viewer.c:162 src/virt-viewer.c:200
112107 #, c-format
113108 msgid "Run '%s --help' to see a full list of available command line options\n"
114109 msgstr ""
115110 "Ejecute '%s --help' para ver una lista completa de opciones de línea de "
116111 "comandos disponibles\n"
117112
118 #: ../src/remote-viewer.c:435
113 #: src/remote-viewer.c:429
119114 msgid "failed to parse ovirt uri"
120115 msgstr "fallo en análisis uri de ovirt"
121116
122 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
117 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
123118 msgid "Authentication was cancelled"
124119 msgstr "La autenticación fue cancelada"
125120
126 #: ../src/remote-viewer.c:480
121 #: src/remote-viewer.c:472
127122 #, c-format
128123 msgid "oVirt VM %s is not running"
129124 msgstr "la MV oVirt %s no está ejecutándose"
130125
131 #: ../src/remote-viewer.c:494
126 #: src/remote-viewer.c:486
132127 #, c-format
133128 msgid "oVirt VM %s has no display"
134129 msgstr "la MV oVirt %s no tiene monitor"
135130
136 #: ../src/remote-viewer.c:520
131 #: src/remote-viewer.c:512
137132 #, c-format
138133 msgid "oVirt VM %s has no host information"
139134 msgstr "oVirt VM %s no tiene información de host"
140135
141 #: ../src/remote-viewer.c:531
142 #, c-format
143 msgid "oVirt VM %s has unknown display type: %d"
144 msgstr "la MV oVirt %s tiene un tipo de monitor desconocido: %d"
145
146 #: ../src/remote-viewer.c:713
136 #: src/remote-viewer.c:523
137 #, c-format
138 msgid "oVirt VM %s has unknown display type: %u"
139 msgstr ""
140
141 #: src/remote-viewer.c:690
142 msgid "Couldn't open oVirt session: "
143 msgstr "No se pudo abrir la sesión oVirt"
144
145 #: src/remote-viewer.c:718
147146 msgid "Failed to initiate connection"
148147 msgstr "No se pudo inicializar la conexión"
149148
150 #: ../src/remote-viewer.c:742
149 #: src/remote-viewer.c:747
151150 msgid "No connection was chosen"
152151 msgstr "No se seleccionó ninguna conexión"
153152
154 #: ../src/remote-viewer.c:759
153 #: src/remote-viewer.c:764
155154 msgid "Failed to read stdin: "
156 msgstr ""
157
158 #: ../src/remote-viewer.c:776
155 msgstr "No se pudo leer la entrada: "
156
157 #: src/remote-viewer.c:781
159158 #, c-format
160159 msgid "Invalid file %s: "
161160 msgstr "Archivo no válido %s: "
162161
163 #: ../src/remote-viewer.c:786
162 #: src/remote-viewer.c:791
164163 msgid "Cannot determine the connection type from URI"
165164 msgstr "No se puede determinar el tipo de conexión de la URI"
166165
167 #: ../src/remote-viewer.c:792
168 msgid "Couldn't open oVirt session: "
169 msgstr "No se pudo abrir la sesión oVirt"
170
171 #: ../src/remote-viewer.c:815
166 #: src/remote-viewer.c:810
172167 #, c-format
173168 msgid "Unable to connect: %s"
174169 msgstr "No se pudo conectar: %s"
175170
176 #.
177 #. * Local variables:
178 #. * c-indent-level: 4
179 #. * c-basic-offset: 4
180 #. * indent-tabs-mode: nil
181 #. * End:
182 #.
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
171 #: src/resources/ui/remote-viewer-connect.ui:6
184172 msgid "Connection details"
185173 msgstr "Detalles de conexión"
186174
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
175 #: src/resources/ui/remote-viewer-connect.ui:24
188176 msgid "Connection _Address"
189177 msgstr "_Dirección de conexión"
190178
191 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
179 #: src/resources/ui/remote-viewer-connect.ui:54
192180 msgid "For example, spice://foo.example.org:5900"
193181 msgstr "Por ejemplo, spice://foo.example.org:5900"
194182
195 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
183 #: src/resources/ui/remote-viewer-connect.ui:78
196184 msgid "Recent connections"
197185 msgstr "Conexiones recientes"
198186
199 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
200 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
202 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
187 #: src/resources/ui/remote-viewer-connect.ui:120
188 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
189 #: src/resources/ui/virt-viewer-vm-connection.ui:24
190 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
203191 msgid "_Cancel"
204192 msgstr "_Cancelar"
205193
206 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
207 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
194 #: src/resources/ui/remote-viewer-connect.ui:134
195 #: src/resources/ui/virt-viewer-vm-connection.ui:38
208196 msgid "C_onnect"
209197 msgstr "C_onectar"
210198
211 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
199 #: src/resources/ui/remote-viewer-iso-list.ui:28
212200 msgid "Loading..."
213201 msgstr "Cargando...|"
214202
215 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
203 #: src/resources/ui/remote-viewer-iso-list.ui:78
216204 msgid "Select ISO"
217205 msgstr "Elija ISO"
218206
219 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
207 #: src/resources/ui/remote-viewer-iso-list.ui:116
220208 msgid "Selected"
221209 msgstr "Seleccionado|"
222210
223 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
224 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
211 #: src/resources/ui/remote-viewer-iso-list.ui:129
212 #: src/resources/ui/virt-viewer-vm-connection.ui:72
225213 msgid "Name"
226214 msgstr "Nombre"
227215
228 #: ../src/resources/ui/virt-viewer-about.ui.h:1
216 #: src/resources/ui/virt-viewer-about.ui:7
229217 msgid "About Virt-Viewer"
230218 msgstr "Acerca de Virt-Viewer"
231219
232 #: ../src/resources/ui/virt-viewer-about.ui.h:2
220 #: src/resources/ui/virt-viewer-about.ui:16
233221 msgid ""
234222 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
235223 "Copyright (C) 2007-2014 Red Hat, Inc."
237225 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
238226 "Copyright (C) 2007-2014 Red Hat, Inc."
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:4
228 #: src/resources/ui/virt-viewer-about.ui:18
241229 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
242230 msgstr ""
243231 "Un cliente de escritorio remoto creado con GTK-VNC, SPICE-GTK y libvirt"
244232
245 #: ../src/resources/ui/virt-viewer-about.ui.h:5
246 msgid "virt-manager.org"
247 msgstr "virt-manager.org"
248
249 #: ../src/resources/ui/virt-viewer-about.ui.h:6
233 #: src/resources/ui/virt-viewer-about.ui:20
234 msgid "gitlab.com/virt-viewer/virt-viewer"
235 msgstr ""
236
237 #: src/resources/ui/virt-viewer-about.ui:21
250238 msgid ""
251239 "This program is free software; you can redistribute it and/or modify\n"
252240 "it under the terms of the GNU General Public License as published by\n"
276264 "con este programa, si no, escriba a la Free Software Foundation, Inc., 59 "
277265 "Temple Place, Suite 330, Boston, MA 02111-1307 EE.UU. \n"
278266
279 #: ../src/resources/ui/virt-viewer-about.ui.h:20
267 #: src/resources/ui/virt-viewer-about.ui:38
280268 msgid "The Fedora Translation Team"
281269 msgstr "El Equipo de Traducción de Fedora"
282270
283 #: ../src/virt-viewer-app.c:459
271 #: src/virt-viewer-app.c:594
284272 msgid "Do you want to close the session?"
285273 msgstr "¿Quiere cerrar la sesión?"
286274
287 #: ../src/virt-viewer-app.c:461
275 #: src/virt-viewer-app.c:596
288276 msgid "Do not ask me again"
289277 msgstr "No me pregunte otra vez"
290278
291 #: ../src/virt-viewer-app.c:655
279 #: src/virt-viewer-app.c:767
292280 #, c-format
293281 msgid "Address is too long for unix socket_path: %s"
294282 msgstr "La dirección es demasiado larga para el socket_path de UNIX: %s"
295283
296 #: ../src/virt-viewer-app.c:665
284 #: src/virt-viewer-app.c:777
297285 #, c-format
298286 msgid "Creating unix socket failed: %s"
299287 msgstr "Falló la creación del socket UNIX: %s"
300288
301 #: ../src/virt-viewer-app.c:671
289 #: src/virt-viewer-app.c:783
302290 #, c-format
303291 msgid "Connecting to unix socket failed: %s"
304292 msgstr "Falló la conexión al socket UNIX: %s"
305293
306 #: ../src/virt-viewer-app.c:955
294 #: src/virt-viewer-app.c:1077
307295 #, c-format
308296 msgid "Waiting for display %d..."
309297 msgstr "Esperando el monitor %d…"
310298
311 #: ../src/virt-viewer-app.c:1062
299 #: src/virt-viewer-app.c:1193
312300 #, c-format
313301 msgid "Unsupported graphic type '%s'"
314302 msgstr "Tipo de gráfico sin soporte '%s'"
315303
316 #: ../src/virt-viewer-app.c:1146
304 #: src/virt-viewer-app.c:1277
317305 msgid "Connect to ssh failed."
318306 msgstr "Falló la conexión a ssh."
319307
320 #: ../src/virt-viewer-app.c:1161
308 #: src/virt-viewer-app.c:1292
321309 #, c-format
322310 msgid "Can't connect to channel: %s"
323311 msgstr "No se puede conectar con el canal: %s"
324312
325 #: ../src/virt-viewer-app.c:1163
313 #: src/virt-viewer-app.c:1294
326314 msgid "only SSH or unix socket connection supported."
327315 msgstr "sólo se permiten las conexiones por SSH o socket UNIX."
328316
329 #: ../src/virt-viewer-app.c:1176
317 #: src/virt-viewer-app.c:1311
330318 msgid "Connect to channel unsupported."
331319 msgstr "La conexión al canal no está soportada."
332320
333 #: ../src/virt-viewer-app.c:1238
321 #: src/virt-viewer-app.c:1376
334322 msgid "Display can only be attached through libvirt with --attach"
335323 msgstr "La pantalla solo puede ser unida a través de libvirt con --attach"
336324
337 #: ../src/virt-viewer-app.c:1263
325 #: src/virt-viewer-app.c:1401
338326 msgid "Connecting to graphic server"
339327 msgstr "Conectando al servidor gráfico"
340328
341 #: ../src/virt-viewer-app.c:1362
329 #: src/virt-viewer-app.c:1500
342330 msgid "Guest domain has shutdown"
343331 msgstr "Dominio de huéspedes se ha apagado"
344332
345 #: ../src/virt-viewer-app.c:1423
333 #: src/virt-viewer-app.c:1561
346334 msgid "Connected to graphic server"
347335 msgstr "Conectado al servidor gráfico"
348336
349 #: ../src/virt-viewer-app.c:1452
337 #: src/virt-viewer-app.c:1590
350338 #, c-format
351339 msgid "Unable to connect to the graphic server %s"
352340 msgstr "No se pudo conectar al servidor gráfico %s"
353341
354 #: ../src/virt-viewer-app.c:1478
342 #: src/virt-viewer-app.c:1616
355343 #, c-format
356344 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
357345 msgstr "No se pudo autenticar con el servidor de escritorio remoto en %s: %s\n"
358346
359 #: ../src/virt-viewer-app.c:1492
347 #: src/virt-viewer-app.c:1630
360348 #, c-format
361349 msgid "Unable to authenticate with remote desktop server: %s"
362350 msgstr "No se puede autenticar con el servidor del escritorio remoto: %s"
363351
364 #: ../src/virt-viewer-app.c:1500
352 #: src/virt-viewer-app.c:1638
365353 #, c-format
366354 msgid "USB redirection error: %s"
367355 msgstr "Error de redirección USB: %s"
368356
369 #: ../src/virt-viewer-app.c:1834
357 #: src/virt-viewer-app.c:2026
370358 #, c-format
371359 msgid "Zoom level must be within %d-%d\n"
372360 msgstr "Nivel de enfoque debe estar dentro de %d-%d\n"
373361
374 #: ../src/virt-viewer-app.c:1887
362 #: src/virt-viewer-app.c:2081
375363 #, c-format
376364 msgid "%s\n"
377365 msgstr "%s\n"
378366
379 #: ../src/virt-viewer-app.c:1897
367 #: src/virt-viewer-app.c:2091
380368 #, c-format
381369 msgid "%s version %s"
382370 msgstr "%s versión %s"
383371
384 #: ../src/virt-viewer-app.c:2321
372 #: src/virt-viewer-app.c:2545
385373 #, c-format
386374 msgid "Display _%d"
387375 msgstr "Monitor _%d"
388376
389 #: ../src/virt-viewer-app.c:2577
377 #: src/virt-viewer-app.c:2829
390378 #, c-format
391379 msgid "Invalid kiosk-quit argument: %s"
392380 msgstr "Argumento kiosk-quit no válido: %s"
393381
394 #: ../src/virt-viewer-app.c:2588
382 #: src/virt-viewer-app.c:2840
395383 msgid "Display version information"
396384 msgstr "Mostrar información de versión"
397385
398 #: ../src/virt-viewer-app.c:2590
386 #: src/virt-viewer-app.c:2842
399387 msgid "Zoom level of window, in percentage"
400388 msgstr "Nivel de enfoque de ventana, en porcentaje"
401389
402 #: ../src/virt-viewer-app.c:2592
390 #: src/virt-viewer-app.c:2844
403391 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
404392 msgstr ""
405393 "Abrir en modo pantalla completa (ajusta la resolución del invitado para que "
406394 "encaje con el cliente)"
407395
408 #: ../src/virt-viewer-app.c:2594
396 #: src/virt-viewer-app.c:2846
409397 msgid "Customise hotkeys"
410398 msgstr "Personalizar teclas calientes"
411399
412 #: ../src/virt-viewer-app.c:2596
400 #: src/virt-viewer-app.c:2848
413401 msgid "Enable kiosk mode"
414402 msgstr "Activar el modo kiosco"
415403
416 #: ../src/virt-viewer-app.c:2598
404 #: src/virt-viewer-app.c:2850
417405 msgid "Quit on given condition in kiosk mode"
418406 msgstr "Abandonar sobre condición dada en modo kiosco"
419407
420 #: ../src/virt-viewer-app.c:2598
408 #: src/virt-viewer-app.c:2850
421409 msgid "<never|on-disconnect>"
422410 msgstr "<never|on-disconnect>"
423411
424 #: ../src/virt-viewer-app.c:2600
412 #: src/virt-viewer-app.c:2852
425413 msgid "Display verbose information"
426414 msgstr "Mostrar información detallada"
427415
428 #: ../src/virt-viewer-app.c:2602
416 #: src/virt-viewer-app.c:2854
429417 msgid "Display debugging information"
430418 msgstr "Mostrar información de depuración"
431419
432 #: ../src/virt-viewer-auth.c:89
420 #: src/virt-viewer-auth.c:89
433421 #, c-format
434422 msgid ""
435423 "Authentication is required for the %s connection to:\n"
442430 "<b>%s</b>\n"
443431 "\n"
444432
445 #: ../src/virt-viewer-auth.c:93
433 #: src/virt-viewer-auth.c:93
446434 #, c-format
447435 msgid "Authentication is required for the %s connection:\n"
448436 msgstr "Autenticación es requerida para la conexión %s:\n"
449437
450 #.
451 #. * Local variables:
452 #. * c-indent-level: 4
453 #. * c-basic-offset: 4
454 #. * indent-tabs-mode: nil
455 #. * End:
456 #.
457 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
438 #: src/resources/ui/virt-viewer-auth.ui:7
458439 msgid "Authentication required"
459440 msgstr "Autenticación requerida"
460441
461 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
442 #: src/resources/ui/virt-viewer-auth.ui:42
462443 msgid "_OK"
463444 msgstr "_Aceptar"
464445
465 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
466 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
467 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
446 #: src/resources/ui/virt-viewer-auth.ui:71
447 #: src/resources/ui/virt-viewer-guest-details.ui:82
448 #: src/resources/ui/virt-viewer-guest-details.ui:96
449 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
468450 msgid "label"
469451 msgstr "etiqueta"
470452
471 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
453 #: src/resources/ui/virt-viewer-auth.ui:93
472454 msgid "Password:"
473455 msgstr "Contraseña:"
474456
475 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
457 #: src/resources/ui/virt-viewer-auth.ui:105
476458 msgid "Username:"
477459 msgstr "Nombre de usuario:"
478460
479 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
461 #: src/resources/ui/virt-viewer-auth.ui:137
480462 msgid "Show password"
481463 msgstr "Mostrar contraseña"
482464
483 #: ../src/virt-viewer-display-vnc.c:134
465 #: src/virt-viewer-display-vnc.c:130
484466 msgid "VNC does not provide GUID"
485467 msgstr "VNC no proporciona GUID"
486468
487 #: ../src/virt-viewer-file-transfer-dialog.c:128
469 #: src/virt-viewer-display-vte.c:181
470 msgid "Console support is compiled out!"
471 msgstr ""
472
473 #: src/virt-viewer-file-transfer-dialog.c:124
488474 msgid "File Transfers"
489475 msgstr "Envíos de archivos"
490476
491 #: ../src/virt-viewer-file-transfer-dialog.c:154
477 #: src/virt-viewer-file-transfer-dialog.c:150
492478 msgid "Transferring 1 file..."
493479 msgstr "Enviando un archivo..."
494480
495 #: ../src/virt-viewer-file-transfer-dialog.c:156
496 #, c-format
497 msgid "Transferring %d file of %d..."
498 msgid_plural "Transferring %d files of %d..."
499 msgstr[0] "Enviando %d archivo de %d..."
500 msgstr[1] "Enviando %d archivos de %d..."
501
502 #: ../src/virt-viewer-file-transfer-dialog.c:228
503 #, c-format
504 msgid "An error caused the following file transfers to fail:%s"
505 msgstr "Un error provocó que estos envíos fallaran:%s"
506
507 #: ../src/virt-viewer-main.c:38
481 #: src/virt-viewer-file-transfer-dialog.c:152
482 #, c-format
483 msgid "Transferring %u file of %u..."
484 msgid_plural "Transferring %u files of %u..."
485 msgstr[0] ""
486 msgstr[1] ""
487
488 #: src/virt-viewer-file-transfer-dialog.c:225
489 msgid "An error caused the following file transfers to fail:"
490 msgstr ""
491
492 #: src/virt-viewer-main.c:38
508493 msgid "Virt Viewer"
509494 msgstr "Virt Viewer"
510495
511 #: ../src/virt-viewer-session-spice.c:704
496 #: src/virt-viewer-session-spice.c:731
512497 msgid "Invalid password"
513498 msgstr "Contraseña inválida"
514499
515 #. Create the widgets
516 #: ../src/virt-viewer-session-spice.c:802
500 #: src/virt-viewer-session-spice.c:829
517501 msgid "Select USB devices for redirection"
518502 msgstr "Seleccione los dispositivos USB para redirigir"
519503
520 #: ../src/virt-viewer-session-spice.c:804
521 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
504 #: src/virt-viewer-session-spice.c:831
505 #: src/resources/ui/virt-viewer-guest-details.ui:23
522506 msgid "_Close"
523507 msgstr "_Cerrar"
524508
525 #: ../src/virt-viewer-session-vnc.c:162
526 #, c-format
527 msgid "Unsupported authentication type %d"
528 msgstr "Tipo de autenticación no compatible %d"
529
530 #: ../src/virt-viewer-vm-connection.c:64
509 #: src/virt-viewer-session-spice.c:1019
510 msgid "Serial"
511 msgstr ""
512
513 #: src/virt-viewer-session-spice.c:1021
514 msgid "QEMU human monitor"
515 msgstr ""
516
517 #: src/virt-viewer-session-spice.c:1023
518 msgid "QEMU debug console"
519 msgstr ""
520
521 #: src/virt-viewer-session-vnc.c:158
522 #, c-format
523 msgid "Unsupported authentication type %u"
524 msgstr ""
525
526 #: src/virt-viewer-vm-connection.c:64
531527 msgid "No running virtual machine found"
532 msgstr ""
533
534 #: ../src/virt-viewer-vm-connection.c:93
528 msgstr "No se encontró ninguna máquina virtual en marcha"
529
530 #: src/virt-viewer-vm-connection.c:93
535531 msgid "No virtual machine was chosen"
536532 msgstr "No se ha elegido ninguna máquina virtual"
537533
538 #: ../src/virt-viewer-window.c:544
534 #: src/virt-viewer-window.c:621
539535 msgid "Ctrl+Alt+_Del"
540536 msgstr "Ctrl+Alt+_Supr"
541537
542 #: ../src/virt-viewer-window.c:545
538 #: src/virt-viewer-window.c:622
543539 msgid "Ctrl+Alt+_Backspace"
544540 msgstr "Ctrl+Alt+_Retroceso"
545541
546 #: ../src/virt-viewer-window.c:547
542 #: src/virt-viewer-window.c:624
547543 msgid "Ctrl+Alt+F_1"
548544 msgstr "Ctrl+Alt+F_1"
549545
550 #: ../src/virt-viewer-window.c:548
546 #: src/virt-viewer-window.c:625
551547 msgid "Ctrl+Alt+F_2"
552548 msgstr "Ctrl+Alt+F_2"
553549
554 #: ../src/virt-viewer-window.c:549
550 #: src/virt-viewer-window.c:626
555551 msgid "Ctrl+Alt+F_3"
556552 msgstr "Ctrl+Alt+F_3"
557553
558 #: ../src/virt-viewer-window.c:550
554 #: src/virt-viewer-window.c:627
559555 msgid "Ctrl+Alt+F_4"
560556 msgstr "Ctrl+Alt+F_4"
561557
562 #: ../src/virt-viewer-window.c:551
558 #: src/virt-viewer-window.c:628
563559 msgid "Ctrl+Alt+F_5"
564560 msgstr "Ctrl+Alt+F_5"
565561
566 #: ../src/virt-viewer-window.c:552
562 #: src/virt-viewer-window.c:629
567563 msgid "Ctrl+Alt+F_6"
568564 msgstr "Ctrl+Alt+F_6"
569565
570 #: ../src/virt-viewer-window.c:553
566 #: src/virt-viewer-window.c:630
571567 msgid "Ctrl+Alt+F_7"
572568 msgstr "Ctrl+Alt+F_7"
573569
574 #: ../src/virt-viewer-window.c:554
570 #: src/virt-viewer-window.c:631
575571 msgid "Ctrl+Alt+F_8"
576572 msgstr "Ctrl+Alt+F_8"
577573
578 #: ../src/virt-viewer-window.c:555
574 #: src/virt-viewer-window.c:632
579575 msgid "Ctrl+Alt+F_9"
580576 msgstr "Ctrl+Alt+F_9"
581577
582 #: ../src/virt-viewer-window.c:556
578 #: src/virt-viewer-window.c:633
583579 msgid "Ctrl+Alt+F1_0"
584580 msgstr "Ctrl+Alt+F1_0"
585581
586 #: ../src/virt-viewer-window.c:557
582 #: src/virt-viewer-window.c:634
587583 msgid "Ctrl+Alt+F11"
588584 msgstr "Ctrl+Alt+F11"
589585
590 #: ../src/virt-viewer-window.c:558
586 #: src/virt-viewer-window.c:635
591587 msgid "Ctrl+Alt+F12"
592588 msgstr "Ctrl+Alt+F12"
593589
594 #: ../src/virt-viewer-window.c:953
590 #: src/virt-viewer-window.c:637
591 msgid "_PrintScreen"
592 msgstr ""
593
594 #: src/virt-viewer-window.c:1030
595595 #, c-format
596596 msgid "Unable to determine image format for file '%s'"
597 msgstr ""
598
599 #: ../src/virt-viewer-window.c:980
597 msgstr "No se pudo inferir el formato de la imagen '%s'"
598
599 #: src/virt-viewer-window.c:1053
600 msgid "Save screenshot"
601 msgstr ""
602
603 #: src/virt-viewer-window.c:1057
600604 msgid "_Save"
601605 msgstr "_Guardar"
602606
603 #: ../src/virt-viewer-window.c:988
607 #: src/virt-viewer-window.c:1065
604608 msgid "Screenshot.png"
605 msgstr ""
606
607 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
609 msgstr "Captura_de_pantalla.png"
610
611 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
608612 msgid "Unknown"
609613 msgstr "Desconocido"
610614
611 #: ../src/virt-viewer-window.c:1152
615 #: src/virt-viewer-window.c:1237
612616 msgid "Unable to connnect to oVirt"
613617 msgstr "No se pudo conectar con oVirt"
614618
615 #: ../src/virt-viewer-window.c:1175
619 #: src/virt-viewer-window.c:1260
616620 msgid "Disconnect"
617621 msgstr "Desconectar"
618622
619 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
623 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
620624 msgid "USB device selection"
621625 msgstr "Selección de dispositivos USB"
622626
623 #: ../src/virt-viewer-window.c:1193
627 #: src/virt-viewer-window.c:1278
624628 msgid "Send key combination"
625629 msgstr "Enviar combinación de teclas"
626630
627 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
631 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
628632 msgid "Leave fullscreen"
629633 msgstr "Salir de pantalla completa"
630634
631 #: ../src/virt-viewer-window.c:1279
635 #: src/virt-viewer-window.c:1364
632636 msgid "Ctrl+Alt"
633637 msgstr "Ctrl+Alt"
634638
635 #: ../src/virt-viewer-window.c:1282
639 #: src/virt-viewer-window.c:1367
636640 #, c-format
637641 msgid "(Press %s to release pointer)"
638642 msgstr "(Presione %s para liberar el puntero)"
639643
640 #. translators:
641 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
642 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
643 #.
644 #: ../src/virt-viewer-window.c:1293
644 #: src/virt-viewer-window.c:1378
645645 #, c-format
646646 msgid "%s%s%s - %s"
647647 msgstr "%s%s%s - %s"
648648
649 #. translators: <space>
650 #: ../src/virt-viewer-window.c:1297
649 #: src/virt-viewer-window.c:1382
651650 msgid " "
652651 msgstr " "
653652
654 #: ../src/virt-viewer-file.c:862
653 #: src/virt-viewer-file.c:875
655654 #, c-format
656655 msgid ""
657656 "At least %s version %s is required to setup this connection, see %s for "
660659 "Por lo menos %s versión %s se requiere para establecer esta conexión, "
661660 "consulte %s para más información"
662661
663 #: ../src/virt-viewer-file.c:870
662 #: src/virt-viewer-file.c:883
664663 #, c-format
665664 msgid "At least %s version %s is required to setup this connection"
666665 msgstr "Al menos la %s versión %s es requerida para configurar esta conexión"
667666
668 #: ../src/virt-viewer.c:133
667 #: src/virt-viewer.c:131
669668 msgid "Direct connection with no automatic tunnels"
670669 msgstr "Conexión directa sin túneles automáticos"
671670
672 #: ../src/virt-viewer.c:135
671 #: src/virt-viewer.c:133
673672 msgid "Attach to the local display using libvirt"
674673 msgstr "Añadir a la pantalla local mediante libvirt"
675674
676 #: ../src/virt-viewer.c:137
675 #: src/virt-viewer.c:135
677676 msgid "Connect to hypervisor"
678677 msgstr "Conectar al hipervisor"
679678
680 #: ../src/virt-viewer.c:139
679 #: src/virt-viewer.c:137
681680 msgid "Wait for domain to start"
682681 msgstr "Esperar a que inicie el dominio"
683682
684 #: ../src/virt-viewer.c:141
683 #: src/virt-viewer.c:139
685684 msgid "Reconnect to domain upon restart"
686685 msgstr "Reconectar al dominio tras el reinicio"
687686
688 #: ../src/virt-viewer.c:143
687 #: src/virt-viewer.c:141
689688 msgid "Select the virtual machine only by its name"
690689 msgstr "Elegir la máquina virtual sólo por nombre"
691690
692 #: ../src/virt-viewer.c:145
691 #: src/virt-viewer.c:143
693692 msgid "Select the virtual machine only by its id"
694693 msgstr "Elegir la máquina virtual sólo por id"
695694
696 #: ../src/virt-viewer.c:147
695 #: src/virt-viewer.c:145
697696 msgid "Select the virtual machine only by its uuid"
698697 msgstr "Elegir la máquina virtual sólo por uuid"
699698
700 #: ../src/virt-viewer.c:154
699 #: src/virt-viewer.c:152
701700 msgid "Virtual machine graphical console"
702701 msgstr "Consola gráfica de la máquina virtual"
703702
704 #: ../src/virt-viewer.c:173
703 #: src/virt-viewer.c:171
705704 #, c-format
706705 msgid ""
707706 "\n"
711710 "\n"
712711 "Uso: %s [OPCIONES] [ID|UUID|NOMBRE-DOMINIO]\n"
713712
714 #: ../src/virt-viewer.c:185
713 #: src/virt-viewer.c:183
715714 #, c-format
716715 msgid ""
717716 "\n"
722721 "No se ha indicado ID|UUID|NOMBRE-DOMINIO para '%s'\n"
723722 "\n"
724723
725 #: ../src/virt-viewer.c:300
724 #: src/virt-viewer.c:296
726725 msgid "Waiting for guest domain to re-start"
727726 msgstr "Esperando a que el dominio de huéspedes reinicie"
728727
729 #: ../src/virt-viewer.c:554
728 #: src/virt-viewer.c:550
730729 #, c-format
731730 msgid "Cannot determine the graphic type for the guest %s"
732731 msgstr "No se puede determinar el tipo de gráficos para el huésped %s"
733732
734 #: ../src/virt-viewer.c:603
733 #: src/virt-viewer.c:599
735734 #, c-format
736735 msgid "Cannot determine the host for the guest %s"
737736 msgstr "No se puede determinar el anfitrión para el huésped %s"
738737
739 #: ../src/virt-viewer.c:631
738 #: src/virt-viewer.c:627
740739 #, c-format
741740 msgid "Guest '%s' is not reachable"
742741 msgstr "Huésped '%s' no está alcanzable"
743742
744 #: ../src/virt-viewer.c:860
743 #: src/virt-viewer.c:856
745744 #, c-format
746745 msgid "Virtual machine %s is not running"
747746 msgstr "Máquina virtual %s no está en ejecución"
748747
749 #: ../src/virt-viewer.c:884
748 #: src/virt-viewer.c:881
750749 msgid "Waiting for libvirt to start"
751750 msgstr "Esperando a libvirt para inicio"
752751
753 #: ../src/virt-viewer.c:888
752 #: src/virt-viewer.c:885
754753 msgid "Finding guest domain"
755754 msgstr "Buscando dominio de huéspedes"
756755
757 #: ../src/virt-viewer.c:892
756 #: src/virt-viewer.c:889
758757 msgid "Waiting for guest domain to be created"
759758 msgstr "Esperando a que el dominio de huéspedes sea creado"
760759
761 #: ../src/virt-viewer.c:918
760 #: src/virt-viewer.c:921
762761 msgid "Checking guest domain status"
763762 msgstr "Comprobando el estatus del dominio de huéspedes"
764763
765 #: ../src/virt-viewer.c:921
764 #: src/virt-viewer.c:924
766765 msgid "Cannot get guest state"
767766 msgstr "No es posible obtener estado de huésped"
768767
769 #: ../src/virt-viewer.c:927
768 #: src/virt-viewer.c:930
770769 msgid "Waiting for guest domain to start"
771770 msgstr "Esperando a que dominio de huéspedes inicie"
772771
773 #: ../src/virt-viewer.c:1040
772 #: src/virt-viewer.c:1044
774773 #, c-format
775774 msgid "Unable to connect to libvirt with URI: %s."
776775 msgstr "No puede conectarse a libvirt con URI: %s."
777776
778 #: ../src/virt-viewer.c:1041
777 #: src/virt-viewer.c:1045
779778 msgid "[none]"
780779 msgstr "[ninguno]"
781780
782 #: ../src/virt-viewer.c:1048
781 #: src/virt-viewer.c:1052
783782 msgid "Authentication failed."
784783 msgstr "Fallo de autenticación."
785784
786 #: ../src/virt-viewer.c:1108
785 #: src/virt-viewer.c:1112
787786 msgid "Failed to connect: "
788787 msgstr "Falló al conectarse a:"
789788
790 #.
791 #. * Local variables:
792 #. * c-indent-level: 4
793 #. * c-basic-offset: 4
794 #. * indent-tabs-mode: nil
795 #. * End:
796 #.
797 #: ../src/resources/ui/virt-viewer.ui.h:1
789 #: src/resources/ui/virt-viewer.ui:28
798790 msgid "_File"
799791 msgstr "_Fichero"
800792
801 #: ../src/resources/ui/virt-viewer.ui.h:2
793 #: src/resources/ui/virt-viewer.ui:41
802794 msgid "_Screenshot"
803795 msgstr "Captura de _pantalla"
804796
805 #: ../src/resources/ui/virt-viewer.ui.h:3
797 #: src/resources/ui/virt-viewer.ui:52
806798 msgid "_USB device selection"
807799 msgstr "Selección del dispositivo _USB"
808800
809 #: ../src/resources/ui/virt-viewer.ui.h:4
801 #: src/resources/ui/virt-viewer.ui:62
810802 msgid "Smartcard insertion"
811803 msgstr "Inserción de smartcard"
812804
813 #: ../src/resources/ui/virt-viewer.ui.h:5
805 #: src/resources/ui/virt-viewer.ui:72
814806 msgid "Smartcard removal"
815807 msgstr "Retiro de smartcard"
816808
817 #: ../src/resources/ui/virt-viewer.ui.h:6
809 #: src/resources/ui/virt-viewer.ui:80
818810 msgid "_Change CD"
819811 msgstr "_Cambiar CD"
820812
821 #: ../src/resources/ui/virt-viewer.ui.h:7
813 #: src/resources/ui/virt-viewer.ui:90
822814 msgid "_Preferences"
823815 msgstr "_Ajustes"
824816
825 #: ../src/resources/ui/virt-viewer.ui.h:8
817 #: src/resources/ui/virt-viewer.ui:103
826818 msgid "_Quit"
827819 msgstr "_Salir"
828820
829 #: ../src/resources/ui/virt-viewer.ui.h:9
821 #: src/resources/ui/virt-viewer.ui:119
822 msgid "_Machine"
823 msgstr ""
824
825 #: src/resources/ui/virt-viewer.ui:129
826 msgid "_Pause"
827 msgstr ""
828
829 #: src/resources/ui/virt-viewer.ui:144
830 msgid "_Reset"
831 msgstr ""
832
833 #: src/resources/ui/virt-viewer.ui:153
834 msgid "_Power down"
835 msgstr ""
836
837 #: src/resources/ui/virt-viewer.ui:167
830838 msgid "_View"
831839 msgstr "_Ver"
832840
833 #: ../src/resources/ui/virt-viewer.ui.h:10
841 #: src/resources/ui/virt-viewer.ui:180
834842 msgid "_Full screen"
835843 msgstr "Pantalla comple_ta"
836844
837 #: ../src/resources/ui/virt-viewer.ui.h:11
845 #: src/resources/ui/virt-viewer.ui:191
838846 msgid "_Zoom"
839847 msgstr "_Enfoque"
840848
841 #: ../src/resources/ui/virt-viewer.ui.h:12
849 #: src/resources/ui/virt-viewer.ui:201
842850 msgid "Zoom _In"
843851 msgstr "Ace_rcar"
844852
845 #: ../src/resources/ui/virt-viewer.ui.h:13
853 #: src/resources/ui/virt-viewer.ui:212
846854 msgid "Zoom _Out"
847855 msgstr "Ale_jar"
848856
849 #: ../src/resources/ui/virt-viewer.ui.h:14
857 #: src/resources/ui/virt-viewer.ui:229
850858 msgid "_Normal Size"
851859 msgstr "Tamaño _normal"
852860
853 #: ../src/resources/ui/virt-viewer.ui.h:15
861 #: src/resources/ui/virt-viewer.ui:246
854862 msgid "_Displays"
855863 msgstr "_Monitores"
856864
857 #: ../src/resources/ui/virt-viewer.ui.h:16
865 #: src/resources/ui/virt-viewer.ui:255
858866 msgid "Release cursor"
859867 msgstr "Liberar cursor"
860868
861 #: ../src/resources/ui/virt-viewer.ui.h:17
869 #: src/resources/ui/virt-viewer.ui:270
862870 msgid "_Send key"
863871 msgstr "_Enviar llave"
864872
865 #: ../src/resources/ui/virt-viewer.ui.h:18
873 #: src/resources/ui/virt-viewer.ui:279
866874 msgid "_Help"
867875 msgstr "_Ayuda"
868876
869 #: ../src/resources/ui/virt-viewer.ui.h:19
877 #: src/resources/ui/virt-viewer.ui:290
870878 msgid "_Guest Details"
871879 msgstr "_Detalles de Huésped"
872880
873 #: ../src/resources/ui/virt-viewer.ui.h:20
881 #: src/resources/ui/virt-viewer.ui:297
874882 msgid "_About"
875883 msgstr "Acerca _de"
876884
877 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
885 #: src/resources/ui/virt-viewer-guest-details.ui:7
878886 msgid "Guest Details"
879887 msgstr "Detalles de Huésped"
880888
881 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
889 #: src/resources/ui/virt-viewer-guest-details.ui:56
882890 msgid "Name:"
883891 msgstr "Nombre:"
884892
885 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
893 #: src/resources/ui/virt-viewer-guest-details.ui:68
886894 msgid "GUID:"
887895 msgstr "GUID:"
888896
889 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
897 #: src/resources/ui/virt-viewer-vm-connection.ui:7
890898 msgid "Choose a virtual machine"
891899 msgstr "Elija una máquina virtual"
892900
893 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
901 #: src/resources/ui/virt-viewer-vm-connection.ui:96
894902 msgid "Available virtual machines"
895903 msgstr "Máquinas virtuales disponibles"
896904
897 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
905 #: src/resources/ui/virt-viewer-preferences.ui:8
898906 msgid "Preferences"
899907 msgstr "Preferencias"
900908
901 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
909 #: src/resources/ui/virt-viewer-preferences.ui:48
902910 msgid "Folder sharing"
903911 msgstr "Compartición de carpeta"
904912
905 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
913 #: src/resources/ui/virt-viewer-preferences.ui:70
906914 msgid "Share folder"
907915 msgstr "Compartir capr"
908916
909 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
917 #: src/resources/ui/virt-viewer-preferences.ui:82
910918 msgid "Read-only"
911919 msgstr "Sólo lectura"
912920
913 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
921 #: src/resources/ui/virt-viewer-preferences.ui:96
922 msgid "Share clipboard"
923 msgstr ""
924
925 #: src/resources/ui/virt-viewer-preferences.ui:132
914926 msgid "Spice"
915927 msgstr "Spice"
928
929 #~ msgid "virt-manager.org"
930 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/et.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Estonian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+266
-253
po/eu.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Asier Iturralde Sarasola <asier.iturralde@gmail.com>, 2012
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:09-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:09+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Basque (http://www.transifex.com/projects/p/virt-viewer/"
1414 "language/eu/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr ""
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr ""
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr ""
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr ""
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr ""
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr ""
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr ""
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr ""
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
215203 msgstr ""
216204
217 #: ../src/resources/ui/virt-viewer-about.ui.h:4
205 #: src/resources/ui/virt-viewer-about.ui:18
218206 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219207 msgstr ""
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222 msgid "virt-manager.org"
223 msgstr ""
224
225 #: ../src/resources/ui/virt-viewer-about.ui.h:6
209 #: src/resources/ui/virt-viewer-about.ui:20
210 msgid "gitlab.com/virt-viewer/virt-viewer"
211 msgstr ""
212
213 #: src/resources/ui/virt-viewer-about.ui:21
226214 msgid ""
227215 "This program is free software; you can redistribute it and/or modify\n"
228216 "it under the terms of the GNU General Public License as published by\n"
239227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240228 msgstr ""
241229
242 #: ../src/resources/ui/virt-viewer-about.ui.h:20
230 #: src/resources/ui/virt-viewer-about.ui:38
243231 msgid "The Fedora Translation Team"
244232 msgstr ""
245233
246 #: ../src/virt-viewer-app.c:459
234 #: src/virt-viewer-app.c:594
247235 msgid "Do you want to close the session?"
248236 msgstr ""
249237
250 #: ../src/virt-viewer-app.c:461
238 #: src/virt-viewer-app.c:596
251239 msgid "Do not ask me again"
252240 msgstr ""
253241
254 #: ../src/virt-viewer-app.c:655
242 #: src/virt-viewer-app.c:767
255243 #, c-format
256244 msgid "Address is too long for unix socket_path: %s"
257245 msgstr ""
258246
259 #: ../src/virt-viewer-app.c:665
247 #: src/virt-viewer-app.c:777
260248 #, c-format
261249 msgid "Creating unix socket failed: %s"
262250 msgstr ""
263251
264 #: ../src/virt-viewer-app.c:671
252 #: src/virt-viewer-app.c:783
265253 #, c-format
266254 msgid "Connecting to unix socket failed: %s"
267255 msgstr ""
268256
269 #: ../src/virt-viewer-app.c:955
257 #: src/virt-viewer-app.c:1077
270258 #, c-format
271259 msgid "Waiting for display %d..."
272260 msgstr ""
273261
274 #: ../src/virt-viewer-app.c:1062
262 #: src/virt-viewer-app.c:1193
275263 #, c-format
276264 msgid "Unsupported graphic type '%s'"
277265 msgstr ""
278266
279 #: ../src/virt-viewer-app.c:1146
267 #: src/virt-viewer-app.c:1277
280268 msgid "Connect to ssh failed."
281269 msgstr ""
282270
283 #: ../src/virt-viewer-app.c:1161
271 #: src/virt-viewer-app.c:1292
284272 #, c-format
285273 msgid "Can't connect to channel: %s"
286274 msgstr ""
287275
288 #: ../src/virt-viewer-app.c:1163
276 #: src/virt-viewer-app.c:1294
289277 msgid "only SSH or unix socket connection supported."
290278 msgstr ""
291279
292 #: ../src/virt-viewer-app.c:1176
280 #: src/virt-viewer-app.c:1311
293281 msgid "Connect to channel unsupported."
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:1238
284 #: src/virt-viewer-app.c:1376
297285 msgid "Display can only be attached through libvirt with --attach"
298286 msgstr ""
299287
300 #: ../src/virt-viewer-app.c:1263
288 #: src/virt-viewer-app.c:1401
301289 msgid "Connecting to graphic server"
302290 msgstr ""
303291
304 #: ../src/virt-viewer-app.c:1362
292 #: src/virt-viewer-app.c:1500
305293 msgid "Guest domain has shutdown"
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1423
296 #: src/virt-viewer-app.c:1561
309297 msgid "Connected to graphic server"
310298 msgstr ""
311299
312 #: ../src/virt-viewer-app.c:1452
300 #: src/virt-viewer-app.c:1590
313301 #, c-format
314302 msgid "Unable to connect to the graphic server %s"
315303 msgstr ""
316304
317 #: ../src/virt-viewer-app.c:1478
305 #: src/virt-viewer-app.c:1616
318306 #, c-format
319307 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
320308 msgstr ""
321309
322 #: ../src/virt-viewer-app.c:1492
310 #: src/virt-viewer-app.c:1630
323311 #, c-format
324312 msgid "Unable to authenticate with remote desktop server: %s"
325313 msgstr ""
326314
327 #: ../src/virt-viewer-app.c:1500
315 #: src/virt-viewer-app.c:1638
328316 #, c-format
329317 msgid "USB redirection error: %s"
330318 msgstr ""
331319
332 #: ../src/virt-viewer-app.c:1834
320 #: src/virt-viewer-app.c:2026
333321 #, c-format
334322 msgid "Zoom level must be within %d-%d\n"
335323 msgstr ""
336324
337 #: ../src/virt-viewer-app.c:1887
325 #: src/virt-viewer-app.c:2081
338326 #, c-format
339327 msgid "%s\n"
340328 msgstr ""
341329
342 #: ../src/virt-viewer-app.c:1897
330 #: src/virt-viewer-app.c:2091
343331 #, c-format
344332 msgid "%s version %s"
345333 msgstr ""
346334
347 #: ../src/virt-viewer-app.c:2321
335 #: src/virt-viewer-app.c:2545
348336 #, c-format
349337 msgid "Display _%d"
350338 msgstr ""
351339
352 #: ../src/virt-viewer-app.c:2577
340 #: src/virt-viewer-app.c:2829
353341 #, c-format
354342 msgid "Invalid kiosk-quit argument: %s"
355343 msgstr ""
356344
357 #: ../src/virt-viewer-app.c:2588
345 #: src/virt-viewer-app.c:2840
358346 msgid "Display version information"
359347 msgstr "Bistaratu bertsio informazioa"
360348
361 #: ../src/virt-viewer-app.c:2590
349 #: src/virt-viewer-app.c:2842
362350 msgid "Zoom level of window, in percentage"
363351 msgstr ""
364352
365 #: ../src/virt-viewer-app.c:2592
353 #: src/virt-viewer-app.c:2844
366354 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2594
357 #: src/virt-viewer-app.c:2846
370358 msgid "Customise hotkeys"
371359 msgstr ""
372360
373 #: ../src/virt-viewer-app.c:2596
361 #: src/virt-viewer-app.c:2848
374362 msgid "Enable kiosk mode"
375363 msgstr ""
376364
377 #: ../src/virt-viewer-app.c:2598
365 #: src/virt-viewer-app.c:2850
378366 msgid "Quit on given condition in kiosk mode"
379367 msgstr ""
380368
381 #: ../src/virt-viewer-app.c:2598
369 #: src/virt-viewer-app.c:2850
382370 msgid "<never|on-disconnect>"
383371 msgstr ""
384372
385 #: ../src/virt-viewer-app.c:2600
373 #: src/virt-viewer-app.c:2852
386374 msgid "Display verbose information"
387375 msgstr ""
388376
389 #: ../src/virt-viewer-app.c:2602
377 #: src/virt-viewer-app.c:2854
390378 msgid "Display debugging information"
391379 msgstr "Bistaratu arazketa informazioa"
392380
393 #: ../src/virt-viewer-auth.c:89
381 #: src/virt-viewer-auth.c:89
394382 #, c-format
395383 msgid ""
396384 "Authentication is required for the %s connection to:\n"
399387 "\n"
400388 msgstr ""
401389
402 #: ../src/virt-viewer-auth.c:93
390 #: src/virt-viewer-auth.c:93
403391 #, c-format
404392 msgid "Authentication is required for the %s connection:\n"
405393 msgstr ""
406394
407 #.
408 #. * Local variables:
409 #. * c-indent-level: 4
410 #. * c-basic-offset: 4
411 #. * indent-tabs-mode: nil
412 #. * End:
413 #.
414 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
395 #: src/resources/ui/virt-viewer-auth.ui:7
415396 msgid "Authentication required"
416397 msgstr ""
417398
418 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
399 #: src/resources/ui/virt-viewer-auth.ui:42
419400 msgid "_OK"
420401 msgstr ""
421402
422 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
423 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
424 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
403 #: src/resources/ui/virt-viewer-auth.ui:71
404 #: src/resources/ui/virt-viewer-guest-details.ui:82
405 #: src/resources/ui/virt-viewer-guest-details.ui:96
406 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
425407 msgid "label"
426408 msgstr "etiketa"
427409
428 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
410 #: src/resources/ui/virt-viewer-auth.ui:93
429411 msgid "Password:"
430412 msgstr "Pasahitza:"
431413
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
414 #: src/resources/ui/virt-viewer-auth.ui:105
433415 msgid "Username:"
434416 msgstr "Erabiltzaile-izena:"
435417
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
418 #: src/resources/ui/virt-viewer-auth.ui:137
437419 msgid "Show password"
438420 msgstr ""
439421
440 #: ../src/virt-viewer-display-vnc.c:134
422 #: src/virt-viewer-display-vnc.c:130
441423 msgid "VNC does not provide GUID"
442424 msgstr ""
443425
444 #: ../src/virt-viewer-file-transfer-dialog.c:128
426 #: src/virt-viewer-display-vte.c:181
427 msgid "Console support is compiled out!"
428 msgstr ""
429
430 #: src/virt-viewer-file-transfer-dialog.c:124
445431 msgid "File Transfers"
446432 msgstr ""
447433
448 #: ../src/virt-viewer-file-transfer-dialog.c:154
434 #: src/virt-viewer-file-transfer-dialog.c:150
449435 msgid "Transferring 1 file..."
450436 msgstr ""
451437
452 #: ../src/virt-viewer-file-transfer-dialog.c:156
453 #, c-format
454 msgid "Transferring %d file of %d..."
455 msgid_plural "Transferring %d files of %d..."
438 #: src/virt-viewer-file-transfer-dialog.c:152
439 #, c-format
440 msgid "Transferring %u file of %u..."
441 msgid_plural "Transferring %u files of %u..."
456442 msgstr[0] ""
457
458 #: ../src/virt-viewer-file-transfer-dialog.c:228
459 #, c-format
460 msgid "An error caused the following file transfers to fail:%s"
461 msgstr ""
462
463 #: ../src/virt-viewer-main.c:38
443 msgstr[1] ""
444
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
464450 msgid "Virt Viewer"
465451 msgstr ""
466452
467 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
468454 msgid "Invalid password"
469455 msgstr ""
470456
471 #. Create the widgets
472 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
473458 msgid "Select USB devices for redirection"
474459 msgstr ""
475460
476 #: ../src/virt-viewer-session-spice.c:804
477 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
478463 msgid "_Close"
479464 msgstr ""
480465
481 #: ../src/virt-viewer-session-vnc.c:162
482 #, c-format
483 msgid "Unsupported authentication type %d"
484 msgstr ""
485
486 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
487484 msgid "No running virtual machine found"
488485 msgstr ""
489486
490 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
491488 msgid "No virtual machine was chosen"
492489 msgstr ""
493490
494 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
495492 msgid "Ctrl+Alt+_Del"
496493 msgstr ""
497494
498 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
499496 msgid "Ctrl+Alt+_Backspace"
500497 msgstr ""
501498
502 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
503500 msgid "Ctrl+Alt+F_1"
504501 msgstr ""
505502
506 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
507504 msgid "Ctrl+Alt+F_2"
508505 msgstr ""
509506
510 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
511508 msgid "Ctrl+Alt+F_3"
512509 msgstr ""
513510
514 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
515512 msgid "Ctrl+Alt+F_4"
516513 msgstr ""
517514
518 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
519516 msgid "Ctrl+Alt+F_5"
520517 msgstr ""
521518
522 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
523520 msgid "Ctrl+Alt+F_6"
524521 msgstr ""
525522
526 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
527524 msgid "Ctrl+Alt+F_7"
528525 msgstr ""
529526
530 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
531528 msgid "Ctrl+Alt+F_8"
532529 msgstr ""
533530
534 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
535532 msgid "Ctrl+Alt+F_9"
536533 msgstr ""
537534
538 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
539536 msgid "Ctrl+Alt+F1_0"
540537 msgstr ""
541538
542 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
543540 msgid "Ctrl+Alt+F11"
544541 msgstr ""
545542
546 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
547544 msgid "Ctrl+Alt+F12"
548545 msgstr ""
549546
550 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
551552 #, c-format
552553 msgid "Unable to determine image format for file '%s'"
553554 msgstr ""
554555
555 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
556561 msgid "_Save"
557562 msgstr ""
558563
559 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
560565 msgid "Screenshot.png"
561566 msgstr ""
562567
563 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
564569 msgid "Unknown"
565570 msgstr ""
566571
567 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
568573 msgid "Unable to connnect to oVirt"
569574 msgstr ""
570575
571 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
572577 msgid "Disconnect"
573578 msgstr "Deskonektatu"
574579
575 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
576581 msgid "USB device selection"
577582 msgstr "USB gailuaren hautapena"
578583
579 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
580585 msgid "Send key combination"
581586 msgstr ""
582587
583 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
584589 msgid "Leave fullscreen"
585590 msgstr "Irten pantaila osotik"
586591
587 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
588593 msgid "Ctrl+Alt"
589594 msgstr ""
590595
591 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
592597 #, c-format
593598 msgid "(Press %s to release pointer)"
594599 msgstr ""
595600
596 #. translators:
597 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
598 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
599 #.
600 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
601602 #, c-format
602603 msgid "%s%s%s - %s"
603604 msgstr "%s%s%s - %s"
604605
605 #. translators: <space>
606 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
607607 msgid " "
608608 msgstr " "
609609
610 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
611611 #, c-format
612612 msgid ""
613613 "At least %s version %s is required to setup this connection, see %s for "
614614 "details"
615615 msgstr ""
616616
617 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
618618 #, c-format
619619 msgid "At least %s version %s is required to setup this connection"
620620 msgstr ""
621621
622 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
623623 msgid "Direct connection with no automatic tunnels"
624624 msgstr ""
625625
626 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
627627 msgid "Attach to the local display using libvirt"
628628 msgstr ""
629629
630 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
631631 msgid "Connect to hypervisor"
632632 msgstr ""
633633
634 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
635635 msgid "Wait for domain to start"
636636 msgstr ""
637637
638 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
639639 msgid "Reconnect to domain upon restart"
640640 msgstr ""
641641
642 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
643643 msgid "Select the virtual machine only by its name"
644644 msgstr ""
645645
646 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
647647 msgid "Select the virtual machine only by its id"
648648 msgstr ""
649649
650 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
651651 msgid "Select the virtual machine only by its uuid"
652652 msgstr ""
653653
654 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
655655 msgid "Virtual machine graphical console"
656656 msgstr ""
657657
658 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
659659 #, c-format
660660 msgid ""
661661 "\n"
663663 "\n"
664664 msgstr ""
665665
666 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
667667 #, c-format
668668 msgid ""
669669 "\n"
671671 "\n"
672672 msgstr ""
673673
674 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
675675 msgid "Waiting for guest domain to re-start"
676676 msgstr ""
677677
678 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
679679 #, c-format
680680 msgid "Cannot determine the graphic type for the guest %s"
681681 msgstr ""
682682
683 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
684684 #, c-format
685685 msgid "Cannot determine the host for the guest %s"
686686 msgstr ""
687687
688 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
689689 #, c-format
690690 msgid "Guest '%s' is not reachable"
691691 msgstr ""
692692
693 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
694694 #, c-format
695695 msgid "Virtual machine %s is not running"
696696 msgstr ""
697697
698 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
699699 msgid "Waiting for libvirt to start"
700700 msgstr ""
701701
702 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
703703 msgid "Finding guest domain"
704704 msgstr ""
705705
706 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
707707 msgid "Waiting for guest domain to be created"
708708 msgstr ""
709709
710 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
711711 msgid "Checking guest domain status"
712712 msgstr ""
713713
714 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
715715 msgid "Cannot get guest state"
716716 msgstr ""
717717
718 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
719719 msgid "Waiting for guest domain to start"
720720 msgstr ""
721721
722 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
723723 #, c-format
724724 msgid "Unable to connect to libvirt with URI: %s."
725725 msgstr ""
726726
727 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
728728 msgid "[none]"
729729 msgstr ""
730730
731 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
732732 msgid "Authentication failed."
733733 msgstr ""
734734
735 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
736736 msgid "Failed to connect: "
737737 msgstr ""
738738
739 #.
740 #. * Local variables:
741 #. * c-indent-level: 4
742 #. * c-basic-offset: 4
743 #. * indent-tabs-mode: nil
744 #. * End:
745 #.
746 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
747740 msgid "_File"
748741 msgstr "_Fitxategia"
749742
750 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
751744 msgid "_Screenshot"
752745 msgstr ""
753746
754 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
755748 msgid "_USB device selection"
756749 msgstr ""
757750
758 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
759752 msgid "Smartcard insertion"
760753 msgstr ""
761754
762 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
763756 msgid "Smartcard removal"
764757 msgstr ""
765758
766 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
767760 msgid "_Change CD"
768761 msgstr ""
769762
770 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
771764 msgid "_Preferences"
772765 msgstr ""
773766
774 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
775768 msgid "_Quit"
776769 msgstr ""
777770
778 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
779788 msgid "_View"
780789 msgstr "_Ikusi"
781790
782 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
783792 msgid "_Full screen"
784793 msgstr ""
785794
786 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
787796 msgid "_Zoom"
788797 msgstr "_Zooma"
789798
790 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
791800 msgid "Zoom _In"
792801 msgstr ""
793802
794 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
795804 msgid "Zoom _Out"
796805 msgstr ""
797806
798 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
799808 msgid "_Normal Size"
800809 msgstr ""
801810
802 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
803812 msgid "_Displays"
804813 msgstr ""
805814
806 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
807816 msgid "Release cursor"
808817 msgstr ""
809818
810 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
811820 msgid "_Send key"
812821 msgstr "_Bidali tekla"
813822
814 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
815824 msgid "_Help"
816825 msgstr "_Laguntza"
817826
818 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
819828 msgid "_Guest Details"
820829 msgstr ""
821830
822 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
823832 msgid "_About"
824833 msgstr ""
825834
826 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
827836 msgid "Guest Details"
828837 msgstr ""
829838
830 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
831840 msgid "Name:"
832841 msgstr ""
833842
834 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
835844 msgid "GUID:"
836845 msgstr ""
837846
838 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
839848 msgid "Choose a virtual machine"
840849 msgstr ""
841850
842 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
843852 msgid "Available virtual machines"
844853 msgstr ""
845854
846 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
847856 msgid "Preferences"
848857 msgstr ""
849858
850 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
851860 msgid "Folder sharing"
852861 msgstr ""
853862
854 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
855864 msgid "Share folder"
856865 msgstr ""
857866
858 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
859868 msgid "Read-only"
860869 msgstr ""
861870
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
863876 msgid "Spice"
864877 msgstr ""
Binary diff not shown
+264
-252
po/fa.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Persian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/fi.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Finnish\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+350
-319
po/fr.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
99 # Sam Friedmann <sam.friedmann@redhat.com>, 2010,2012
1010 # Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr>, 2016. #zanata
1111 # Sam Friedmann <sfriedma@redhat.com>, 2016. #zanata
12 # Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr>, 2019. #zanata
1213 msgid ""
1314 msgstr ""
14 "Project-Id-Version: PACKAGE VERSION\n"
15 "Report-Msgid-Bugs-To: \n"
16 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
17 "PO-Revision-Date: 2016-07-15 05:00-0400\n"
15 "Project-Id-Version: virt-viewer 9.0\n"
16 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
17 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
18 "PO-Revision-Date: 2019-03-05 05:18+0000\n"
1819 "Last-Translator: Jean-Baptiste Holcroft <jean-baptiste@holcroft.fr>\n"
1920 "Language-Team: French (http://www.transifex.com/projects/p/virt-viewer/"
2021 "language/fr/)\n"
2324 "Content-Type: text/plain; charset=UTF-8\n"
2425 "Content-Transfer-Encoding: 8bit\n"
2526 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
26 "X-Generator: Zanata 3.9.6\n"
27
28 #: ../data/remote-viewer.appdata.xml.in.h:1
29 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
27 "X-Generator: Zanata 4.6.2\n"
28
29 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
30 #: src/remote-viewer-main.c:39
3031 msgid "Remote Viewer"
3132 msgstr "Afficheur distant"
3233
33 #: ../data/remote-viewer.appdata.xml.in.h:2
34 #: data/remote-viewer.appdata.xml.in:7
3435 msgid "Remotely access virtual machines"
3536 msgstr "Accéder à distance aux machines virtuelles"
3637
37 #: ../data/remote-viewer.appdata.xml.in.h:3
38 #: data/remote-viewer.appdata.xml.in:9
3839 msgid ""
3940 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
4041 "time it supports guest OS using the VNC or SPICE protocols. Further "
4243 "can connect directly to both local and remotely hosted guest OS, optionally "
4344 "using SSL/TLS encryption."
4445 msgstr ""
45
46 #: ../data/remote-viewer.desktop.in.h:2
46 "L'afficheur distant fourni un afficheur graphique pour l’affichage du "
47 "système d'exploitation hôte. Pour l'instant, il prend en charge les systèmes "
48 "hôtes utilisant les protocoles VNC ou SPICE. Plus de protocoles pourraient "
49 "être pris en charge dans le future selon des demandes des utilisateurs. "
50 "L'afficheur peu se connecter directement tant aux hôtes locaux ou distants, "
51 "en utilisant en option le chiffrement SSL/TLS."
52
53 #: data/remote-viewer.desktop.in:4
4754 msgid "Access remote desktops"
4855 msgstr "Accéder à des bureaux distants"
4956
50 #: ../data/virt-viewer-mime.xml.in.h:1
51 msgid "Virt-Viewer connection file"
52 msgstr "Fichier de connexion Virt-Viewer"
53
54 #: ../src/remote-viewer-iso-list-dialog.c:160
57 #: src/remote-viewer-iso-list-dialog.c:156
5558 msgid "Failed to fetch CD names"
56 msgstr ""
57
58 #: ../src/remote-viewer-iso-list-dialog.c:212
59 msgstr "Échec de la récupération des noms des CD"
60
61 #: src/remote-viewer-iso-list-dialog.c:205
5962 msgid "<b>Loading...</b>"
60 msgstr ""
61
62 #: ../src/remote-viewer-iso-list-dialog.c:285
63 msgstr "<b>Chargement...</b>"
64
65 #: src/remote-viewer-iso-list-dialog.c:276
6366 msgid "Refresh"
64 msgstr ""
65
66 #: ../src/remote-viewer-iso-list-dialog.c:286
67 msgstr "Recharger"
68
69 #: src/remote-viewer-iso-list-dialog.c:277
6770 msgid "Close"
68 msgstr ""
69
70 #: ../src/remote-viewer-iso-list-dialog.c:306
71 msgstr "Fermer"
72
73 #: src/remote-viewer-iso-list-dialog.c:297
7174 msgid "Unspecified error"
72 msgstr ""
73
74 #: ../src/remote-viewer-iso-list-dialog.c:328
75 msgstr "Erreur inconnue"
76
77 #: src/remote-viewer-iso-list-dialog.c:318
7578 msgid "Failed to change CD"
76 msgstr ""
77
78 #: ../src/remote-viewer-iso-list-dialog.c:380
79 msgstr "Échec du changement de CD"
80
81 #: src/remote-viewer-iso-list-dialog.c:370
7982 msgid "Change CD"
80 msgstr ""
81
82 #: ../src/remote-viewer.c:118
83 msgstr "Changer le CD"
84
85 #: src/remote-viewer.c:116
8386 msgid "Set window title"
8487 msgstr "Définir le titre de la fenêtre"
8588
86 #: ../src/remote-viewer.c:125
89 #: src/remote-viewer.c:123
8790 msgid "Remote viewer client"
88 msgstr "Client Remote viewer"
89
90 #: ../src/remote-viewer.c:150
91 #, c-format
91 msgstr "Client d'affichage à distance"
92
93 #: src/remote-viewer.c:148
9294 msgid ""
9395 "\n"
9496 "Error: can't handle multiple URIs\n"
9799 "\n"
98100 "Erreur : impossible de gérer plusieurs URI\n"
99101
100 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
102 #: src/remote-viewer.c:162 src/virt-viewer.c:200
101103 #, c-format
102104 msgid "Run '%s --help' to see a full list of available command line options\n"
103105 msgstr ""
104 "Lancer '%s --help' pour voir la liste complète des options de ligne de "
106 "Lancer « %s --help » pour voir la liste complète des options de ligne de "
105107 "commande disponibles.\n"
106108
107 #: ../src/remote-viewer.c:435
109 #: src/remote-viewer.c:429
108110 msgid "failed to parse ovirt uri"
109 msgstr "impossible d'analyser l'uri ovirt"
110
111 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
111 msgstr "impossible d'analyser l'URI oVirt"
112
113 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
112114 msgid "Authentication was cancelled"
113115 msgstr "L'authentification a été annulée"
114116
115 #: ../src/remote-viewer.c:480
117 #: src/remote-viewer.c:472
116118 #, c-format
117119 msgid "oVirt VM %s is not running"
118120 msgstr "oVirt VM %s n'est pas en cours d'exécution"
119121
120 #: ../src/remote-viewer.c:494
122 #: src/remote-viewer.c:486
121123 #, c-format
122124 msgid "oVirt VM %s has no display"
123125 msgstr "oVirt VM %s ne possède pas d'affichage"
124126
125 #: ../src/remote-viewer.c:520
127 #: src/remote-viewer.c:512
126128 #, c-format
127129 msgid "oVirt VM %s has no host information"
128130 msgstr "oVirt VM %s ne possède pas d'informations sur l'hôte"
129131
130 #: ../src/remote-viewer.c:531
131 #, c-format
132 msgid "oVirt VM %s has unknown display type: %d"
133 msgstr "Le type d'affichage d'oVirt VM %s est inconnu : %d"
134
135 #: ../src/remote-viewer.c:713
132 #: src/remote-viewer.c:523
133 #, c-format
134 msgid "oVirt VM %s has unknown display type: %u"
135 msgstr "Le type d'affichage de la VM oVirt %s est inconnu : %u"
136
137 #: src/remote-viewer.c:690
138 msgid "Couldn't open oVirt session: "
139 msgstr "Impossible d'ouvrir une session oVirt : "
140
141 #: src/remote-viewer.c:718
136142 msgid "Failed to initiate connection"
137143 msgstr "Impossible d'initier la connexion"
138144
139 #: ../src/remote-viewer.c:742
145 #: src/remote-viewer.c:747
140146 msgid "No connection was chosen"
141 msgstr "Aucune connexion choisie"
142
143 #: ../src/remote-viewer.c:759
147 msgstr "Aucune connexion n'a été choisie"
148
149 #: src/remote-viewer.c:764
144150 msgid "Failed to read stdin: "
145 msgstr ""
146
147 #: ../src/remote-viewer.c:776
151 msgstr "Échec de la lecture de stdin :"
152
153 #: src/remote-viewer.c:781
148154 #, c-format
149155 msgid "Invalid file %s: "
150156 msgstr "Fichier invalide %s  :"
151157
152 #: ../src/remote-viewer.c:786
158 #: src/remote-viewer.c:791
153159 msgid "Cannot determine the connection type from URI"
154160 msgstr "Impossible de déterminer le type de la connexion à partir de l'URI"
155161
156 #: ../src/remote-viewer.c:792
157 msgid "Couldn't open oVirt session: "
158 msgstr "Impossible d'ouvrir une session oVirt : "
159
160 #: ../src/remote-viewer.c:815
162 #: src/remote-viewer.c:810
161163 #, c-format
162164 msgid "Unable to connect: %s"
163 msgstr ""
164
165 #.
166 #. * Local variables:
167 #. * c-indent-level: 4
168 #. * c-basic-offset: 4
169 #. * indent-tabs-mode: nil
170 #. * End:
171 #.
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
165 msgstr "Impossible de se connecter à : %s"
166
167 #: src/resources/ui/remote-viewer-connect.ui:6
173168 msgid "Connection details"
174169 msgstr "Détails de la connexion"
175170
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
171 #: src/resources/ui/remote-viewer-connect.ui:24
177172 msgid "Connection _Address"
178173 msgstr "_Adresse de la connexion"
179174
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:54
181176 msgid "For example, spice://foo.example.org:5900"
182177 msgstr "Par exemple, spice://foo.example.org:5900"
183178
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
179 #: src/resources/ui/remote-viewer-connect.ui:78
185180 msgid "Recent connections"
186181 msgstr "Connexions récentes"
187182
188 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
189 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
190 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
191 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
183 #: src/resources/ui/remote-viewer-connect.ui:120
184 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
185 #: src/resources/ui/virt-viewer-vm-connection.ui:24
186 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
192187 msgid "_Cancel"
193188 msgstr "A_nnuler"
194189
195 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
196 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
190 #: src/resources/ui/remote-viewer-connect.ui:134
191 #: src/resources/ui/virt-viewer-vm-connection.ui:38
197192 msgid "C_onnect"
198193 msgstr "C_onnecter"
199194
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
195 #: src/resources/ui/remote-viewer-iso-list.ui:28
201196 msgid "Loading..."
202 msgstr ""
203
204 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
197 msgstr "Chargement..."
198
199 #: src/resources/ui/remote-viewer-iso-list.ui:78
205200 msgid "Select ISO"
206 msgstr ""
207
208 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
201 msgstr "Sélectionnez l'ISO"
202
203 #: src/resources/ui/remote-viewer-iso-list.ui:116
209204 msgid "Selected"
210 msgstr ""
211
212 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
213 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
205 msgstr "Sélectionné"
206
207 #: src/resources/ui/remote-viewer-iso-list.ui:129
208 #: src/resources/ui/virt-viewer-vm-connection.ui:72
214209 msgid "Name"
215210 msgstr "Nom"
216211
217 #: ../src/resources/ui/virt-viewer-about.ui.h:1
212 #: src/resources/ui/virt-viewer-about.ui:7
218213 msgid "About Virt-Viewer"
219214 msgstr "À propos de Virt-Viewer"
220215
221 #: ../src/resources/ui/virt-viewer-about.ui.h:2
216 #: src/resources/ui/virt-viewer-about.ui:16
222217 msgid ""
223218 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
224219 "Copyright (C) 2007-2014 Red Hat, Inc."
226221 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
227222 "Copyright (C) 2007-2014 Red Hat, Inc."
228223
229 #: ../src/resources/ui/virt-viewer-about.ui.h:4
224 #: src/resources/ui/virt-viewer-about.ui:18
230225 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
231226 msgstr "Le client bureau distant créé avec GTK-VNC, SPICE-GTK et libvirt"
232227
233 #: ../src/resources/ui/virt-viewer-about.ui.h:5
234 msgid "virt-manager.org"
235 msgstr "virt-manager.org"
236
237 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228 #: src/resources/ui/virt-viewer-about.ui:20
229 msgid "gitlab.com/virt-viewer/virt-viewer"
230 msgstr ""
231
232 #: src/resources/ui/virt-viewer-about.ui:21
238233 msgid ""
239234 "This program is free software; you can redistribute it and/or modify\n"
240235 "it under the terms of the GNU General Public License as published by\n"
264259 "along with this program; if not, write to the Free Software\n"
265260 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
266261
267 #: ../src/resources/ui/virt-viewer-about.ui.h:20
262 #: src/resources/ui/virt-viewer-about.ui:38
268263 msgid "The Fedora Translation Team"
269264 msgstr "L'équipe de traduction de Fedora"
270265
271 #: ../src/virt-viewer-app.c:459
266 #: src/virt-viewer-app.c:594
272267 msgid "Do you want to close the session?"
273268 msgstr "Êtes-vous sûr de vouloir mettre fin à la session?"
274269
275 #: ../src/virt-viewer-app.c:461
270 #: src/virt-viewer-app.c:596
276271 msgid "Do not ask me again"
277272 msgstr "Ne plus demander"
278273
279 #: ../src/virt-viewer-app.c:655
274 #: src/virt-viewer-app.c:767
280275 #, c-format
281276 msgid "Address is too long for unix socket_path: %s"
282 msgstr ""
283
284 #: ../src/virt-viewer-app.c:665
277 msgstr "L'adresse est trop longue pour le socket_path Unix : %s"
278
279 #: src/virt-viewer-app.c:777
285280 #, c-format
286281 msgid "Creating unix socket failed: %s"
287 msgstr ""
288
289 #: ../src/virt-viewer-app.c:671
282 msgstr "La création du socket Unix a échoué : %s"
283
284 #: src/virt-viewer-app.c:783
290285 #, c-format
291286 msgid "Connecting to unix socket failed: %s"
292 msgstr ""
293
294 #: ../src/virt-viewer-app.c:955
287 msgstr "La connexion au socket Unix a échoué : %s"
288
289 #: src/virt-viewer-app.c:1077
295290 #, c-format
296291 msgid "Waiting for display %d..."
297292 msgstr "En attente de l'affichage %d..."
298293
299 #: ../src/virt-viewer-app.c:1062
294 #: src/virt-viewer-app.c:1193
300295 #, c-format
301296 msgid "Unsupported graphic type '%s'"
302297 msgstr "Type d'affichage « %s » non pris en charge"
303298
304 #: ../src/virt-viewer-app.c:1146
299 #: src/virt-viewer-app.c:1277
305300 msgid "Connect to ssh failed."
306 msgstr "Échec de la connexion ssh."
307
308 #: ../src/virt-viewer-app.c:1161
301 msgstr "La connexion ssh a échoué."
302
303 #: src/virt-viewer-app.c:1292
309304 #, c-format
310305 msgid "Can't connect to channel: %s"
311 msgstr ""
312
313 #: ../src/virt-viewer-app.c:1163
306 msgstr "Impossible de se connecter au canal : %s"
307
308 #: src/virt-viewer-app.c:1294
314309 msgid "only SSH or unix socket connection supported."
315 msgstr ""
316
317 #: ../src/virt-viewer-app.c:1176
310 msgstr "seul les connexions via socket Unix ou SSH sont prises en charge."
311
312 #: src/virt-viewer-app.c:1311
318313 msgid "Connect to channel unsupported."
319314 msgstr "La connexion au canal n'est pas prise en charge."
320315
321 #: ../src/virt-viewer-app.c:1238
316 #: src/virt-viewer-app.c:1376
322317 msgid "Display can only be attached through libvirt with --attach"
323 msgstr ""
324 "L'affichage peut uniquement être attaché à travers libvirt avec --attach"
325
326 #: ../src/virt-viewer-app.c:1263
318 msgstr "L'affichage peut uniquement être attaché via libvirt avec --attach"
319
320 #: src/virt-viewer-app.c:1401
327321 msgid "Connecting to graphic server"
328322 msgstr "Connexion au serveur d'affichage"
329323
330 #: ../src/virt-viewer-app.c:1362
324 #: src/virt-viewer-app.c:1500
331325 msgid "Guest domain has shutdown"
332326 msgstr "Le domaine invité est fermé"
333327
334 #: ../src/virt-viewer-app.c:1423
328 #: src/virt-viewer-app.c:1561
335329 msgid "Connected to graphic server"
336330 msgstr "Connecté au serveur d'affichage"
337331
338 #: ../src/virt-viewer-app.c:1452
332 #: src/virt-viewer-app.c:1590
339333 #, c-format
340334 msgid "Unable to connect to the graphic server %s"
341335 msgstr "Impossible d'établir la connexion au serveur d'affichage %s"
342336
343 #: ../src/virt-viewer-app.c:1478
337 #: src/virt-viewer-app.c:1616
344338 #, c-format
345339 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
346340 msgstr ""
347341 "Impossible d'authentifier la connexion avec le serveur de bureau distantsur "
348342 "%s : %s\n"
349343
350 #: ../src/virt-viewer-app.c:1492
344 #: src/virt-viewer-app.c:1630
351345 #, c-format
352346 msgid "Unable to authenticate with remote desktop server: %s"
353347 msgstr ""
354348 "Impossible d'authentifier la connexion avec le serveur de bureau distant : %s"
355349
356 #: ../src/virt-viewer-app.c:1500
350 #: src/virt-viewer-app.c:1638
357351 #, c-format
358352 msgid "USB redirection error: %s"
359353 msgstr "Erreur de redirection USB : %s"
360354
361 #: ../src/virt-viewer-app.c:1834
355 #: src/virt-viewer-app.c:2026
362356 #, c-format
363357 msgid "Zoom level must be within %d-%d\n"
364358 msgstr "Le niveau de zoom doit être dans la plage %d-%d\n"
365359
366 #: ../src/virt-viewer-app.c:1887
360 #: src/virt-viewer-app.c:2081
367361 #, c-format
368362 msgid "%s\n"
369363 msgstr "%s\n"
370364
371 #: ../src/virt-viewer-app.c:1897
365 #: src/virt-viewer-app.c:2091
372366 #, c-format
373367 msgid "%s version %s"
374368 msgstr "%s version %s"
375369
376 #: ../src/virt-viewer-app.c:2321
370 #: src/virt-viewer-app.c:2545
377371 #, c-format
378372 msgid "Display _%d"
379373 msgstr "Afficher _%d"
380374
381 #: ../src/virt-viewer-app.c:2577
375 #: src/virt-viewer-app.c:2829
382376 #, c-format
383377 msgid "Invalid kiosk-quit argument: %s"
384378 msgstr "Argument kiosk-quit invalide : %s"
385379
386 #: ../src/virt-viewer-app.c:2588
380 #: src/virt-viewer-app.c:2840
387381 msgid "Display version information"
388382 msgstr "Afficher les informations de version"
389383
390 #: ../src/virt-viewer-app.c:2590
384 #: src/virt-viewer-app.c:2842
391385 msgid "Zoom level of window, in percentage"
392386 msgstr "Niveau de zoom de la fenêtre, en pourcentage"
393387
394 #: ../src/virt-viewer-app.c:2592
388 #: src/virt-viewer-app.c:2844
395389 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
396390 msgstr ""
397391 "Ouvre en mode plein écran (ajuste la résolution de l'invité à celle du "
398392 "client)"
399393
400 #: ../src/virt-viewer-app.c:2594
394 #: src/virt-viewer-app.c:2846
401395 msgid "Customise hotkeys"
402396 msgstr "Personnaliser les raccourcis clavier"
403397
404 #: ../src/virt-viewer-app.c:2596
398 #: src/virt-viewer-app.c:2848
405399 msgid "Enable kiosk mode"
406400 msgstr "Activer le mode kiosque"
407401
408 #: ../src/virt-viewer-app.c:2598
402 #: src/virt-viewer-app.c:2850
409403 msgid "Quit on given condition in kiosk mode"
410404 msgstr "Quitter sur une condition définie dans le mode kiosque"
411405
412 #: ../src/virt-viewer-app.c:2598
406 #: src/virt-viewer-app.c:2850
413407 msgid "<never|on-disconnect>"
414408 msgstr "<never|on-disconnect>"
415409
416 #: ../src/virt-viewer-app.c:2600
410 #: src/virt-viewer-app.c:2852
417411 msgid "Display verbose information"
418412 msgstr "Afficher les informations détaillées"
419413
420 #: ../src/virt-viewer-app.c:2602
414 #: src/virt-viewer-app.c:2854
421415 msgid "Display debugging information"
422416 msgstr "Afficher les informations de débogage"
423417
424 #: ../src/virt-viewer-auth.c:89
418 #: src/virt-viewer-auth.c:89
425419 #, c-format
426420 msgid ""
427421 "Authentication is required for the %s connection to:\n"
434428 "<b>%s</b>\n"
435429 "\n"
436430
437 #: ../src/virt-viewer-auth.c:93
431 #: src/virt-viewer-auth.c:93
438432 #, c-format
439433 msgid "Authentication is required for the %s connection:\n"
440434 msgstr ""
441435 "L'authentification est requise pour la connexion %s :\n"
442436 "\n"
443437
444 #.
445 #. * Local variables:
446 #. * c-indent-level: 4
447 #. * c-basic-offset: 4
448 #. * indent-tabs-mode: nil
449 #. * End:
450 #.
451 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
438 #: src/resources/ui/virt-viewer-auth.ui:7
452439 msgid "Authentication required"
453440 msgstr "Authentification requise"
454441
455 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
442 #: src/resources/ui/virt-viewer-auth.ui:42
456443 msgid "_OK"
457444 msgstr "_OK"
458445
459 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
460 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
461 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
446 #: src/resources/ui/virt-viewer-auth.ui:71
447 #: src/resources/ui/virt-viewer-guest-details.ui:82
448 #: src/resources/ui/virt-viewer-guest-details.ui:96
449 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
462450 msgid "label"
463451 msgstr "étiquette"
464452
465 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
453 #: src/resources/ui/virt-viewer-auth.ui:93
466454 msgid "Password:"
467455 msgstr "Mot de passe :"
468456
469 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
457 #: src/resources/ui/virt-viewer-auth.ui:105
470458 msgid "Username:"
471459 msgstr "Nom d'utilisateur :"
472460
473 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
461 #: src/resources/ui/virt-viewer-auth.ui:137
474462 msgid "Show password"
475463 msgstr "Afficher le mot de passe"
476464
477 #: ../src/virt-viewer-display-vnc.c:134
465 #: src/virt-viewer-display-vnc.c:130
478466 msgid "VNC does not provide GUID"
479467 msgstr "VNC ne fournit pas de GUID"
480468
481 #: ../src/virt-viewer-file-transfer-dialog.c:128
469 #: src/virt-viewer-display-vte.c:181
470 msgid "Console support is compiled out!"
471 msgstr "La prise en charge de la console est compilé !"
472
473 #: src/virt-viewer-file-transfer-dialog.c:124
482474 msgid "File Transfers"
483475 msgstr "Transferts de fichier"
484476
485 #: ../src/virt-viewer-file-transfer-dialog.c:154
477 #: src/virt-viewer-file-transfer-dialog.c:150
486478 msgid "Transferring 1 file..."
487 msgstr ""
488
489 #: ../src/virt-viewer-file-transfer-dialog.c:156
490 #, c-format
491 msgid "Transferring %d file of %d..."
492 msgid_plural "Transferring %d files of %d..."
493 msgstr[0] ""
494
495 #: ../src/virt-viewer-file-transfer-dialog.c:228
496 #, c-format
497 msgid "An error caused the following file transfers to fail:%s"
498 msgstr ""
499
500 #: ../src/virt-viewer-main.c:38
479 msgstr "Transfert de 1 fichier..."
480
481 #: src/virt-viewer-file-transfer-dialog.c:152
482 #, c-format
483 msgid "Transferring %u file of %u..."
484 msgid_plural "Transferring %u files of %u..."
485 msgstr[0] "Transfert de %u fichier sur %u..."
486 msgstr[1] "Transfert de %u fichiers sur %u..."
487
488 #: src/virt-viewer-file-transfer-dialog.c:225
489 msgid "An error caused the following file transfers to fail:"
490 msgstr ""
491
492 #: src/virt-viewer-main.c:38
501493 msgid "Virt Viewer"
502494 msgstr "Virt Viewer"
503495
504 #: ../src/virt-viewer-session-spice.c:704
496 #: src/virt-viewer-session-spice.c:731
505497 msgid "Invalid password"
506498 msgstr "Mot de passe invalide"
507499
508 #. Create the widgets
509 #: ../src/virt-viewer-session-spice.c:802
500 #: src/virt-viewer-session-spice.c:829
510501 msgid "Select USB devices for redirection"
511502 msgstr "Sélectionnez les périphériques USB à rediriger"
512503
513 #: ../src/virt-viewer-session-spice.c:804
514 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
504 #: src/virt-viewer-session-spice.c:831
505 #: src/resources/ui/virt-viewer-guest-details.ui:23
515506 msgid "_Close"
516507 msgstr "_Fermer"
517508
518 #: ../src/virt-viewer-session-vnc.c:162
519 #, c-format
520 msgid "Unsupported authentication type %d"
521 msgstr "Le type d'authentification %d n'est pas pris en charge"
522
523 #: ../src/virt-viewer-vm-connection.c:64
509 #: src/virt-viewer-session-spice.c:1019
510 msgid "Serial"
511 msgstr "Série"
512
513 #: src/virt-viewer-session-spice.c:1021
514 msgid "QEMU human monitor"
515 msgstr "Moniteur humain de QEMU"
516
517 #: src/virt-viewer-session-spice.c:1023
518 msgid "QEMU debug console"
519 msgstr "Console de débogage de QEMU"
520
521 #: src/virt-viewer-session-vnc.c:158
522 #, c-format
523 msgid "Unsupported authentication type %u"
524 msgstr "Le type d'authentification %u n'est pas pris en charge"
525
526 #: src/virt-viewer-vm-connection.c:64
524527 msgid "No running virtual machine found"
525 msgstr ""
526
527 #: ../src/virt-viewer-vm-connection.c:93
528 msgstr "Aucune machine virtuelle en cours de fonctionnement n'a été trouvée"
529
530 #: src/virt-viewer-vm-connection.c:93
528531 msgid "No virtual machine was chosen"
529532 msgstr "Aucune machine virtuelle choisie"
530533
531 #: ../src/virt-viewer-window.c:544
534 #: src/virt-viewer-window.c:621
532535 msgid "Ctrl+Alt+_Del"
533536 msgstr "Ctrl+Alt+_Suppr"
534537
535 #: ../src/virt-viewer-window.c:545
538 #: src/virt-viewer-window.c:622
536539 msgid "Ctrl+Alt+_Backspace"
537540 msgstr "Ctrl+Alt+_Effacer"
538541
539 #: ../src/virt-viewer-window.c:547
542 #: src/virt-viewer-window.c:624
540543 msgid "Ctrl+Alt+F_1"
541544 msgstr "Ctrl+Alt+F_1"
542545
543 #: ../src/virt-viewer-window.c:548
546 #: src/virt-viewer-window.c:625
544547 msgid "Ctrl+Alt+F_2"
545548 msgstr "Ctrl+Alt+F_2"
546549
547 #: ../src/virt-viewer-window.c:549
550 #: src/virt-viewer-window.c:626
548551 msgid "Ctrl+Alt+F_3"
549552 msgstr "Ctrl+Alt+F_3"
550553
551 #: ../src/virt-viewer-window.c:550
554 #: src/virt-viewer-window.c:627
552555 msgid "Ctrl+Alt+F_4"
553556 msgstr "Ctrl+Alt+F_4"
554557
555 #: ../src/virt-viewer-window.c:551
558 #: src/virt-viewer-window.c:628
556559 msgid "Ctrl+Alt+F_5"
557560 msgstr "Ctrl+Alt+F_5"
558561
559 #: ../src/virt-viewer-window.c:552
562 #: src/virt-viewer-window.c:629
560563 msgid "Ctrl+Alt+F_6"
561564 msgstr "Ctrl+Alt+F_6"
562565
563 #: ../src/virt-viewer-window.c:553
566 #: src/virt-viewer-window.c:630
564567 msgid "Ctrl+Alt+F_7"
565568 msgstr "Ctrl+Alt+F_7"
566569
567 #: ../src/virt-viewer-window.c:554
570 #: src/virt-viewer-window.c:631
568571 msgid "Ctrl+Alt+F_8"
569572 msgstr "Ctrl+Alt+F_8"
570573
571 #: ../src/virt-viewer-window.c:555
574 #: src/virt-viewer-window.c:632
572575 msgid "Ctrl+Alt+F_9"
573576 msgstr "Ctrl+Alt+F_9"
574577
575 #: ../src/virt-viewer-window.c:556
578 #: src/virt-viewer-window.c:633
576579 msgid "Ctrl+Alt+F1_0"
577580 msgstr "Ctrl+Alt+F1_0"
578581
579 #: ../src/virt-viewer-window.c:557
582 #: src/virt-viewer-window.c:634
580583 msgid "Ctrl+Alt+F11"
581584 msgstr "Ctrl+Alt+F11"
582585
583 #: ../src/virt-viewer-window.c:558
586 #: src/virt-viewer-window.c:635
584587 msgid "Ctrl+Alt+F12"
585588 msgstr "Ctrl+Alt+F12"
586589
587 #: ../src/virt-viewer-window.c:953
590 #: src/virt-viewer-window.c:637
591 msgid "_PrintScreen"
592 msgstr ""
593
594 #: src/virt-viewer-window.c:1030
588595 #, c-format
589596 msgid "Unable to determine image format for file '%s'"
590 msgstr ""
591
592 #: ../src/virt-viewer-window.c:980
597 msgstr "Incapable de déterminer le format d'image du fichier « %s »"
598
599 #: src/virt-viewer-window.c:1053
600 msgid "Save screenshot"
601 msgstr ""
602
603 #: src/virt-viewer-window.c:1057
593604 msgid "_Save"
594605 msgstr "Enregi_strer"
595606
596 #: ../src/virt-viewer-window.c:988
607 #: src/virt-viewer-window.c:1065
597608 msgid "Screenshot.png"
598 msgstr ""
599
600 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
609 msgstr "Screenshot.png"
610
611 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
601612 msgid "Unknown"
602613 msgstr "Inconnu"
603614
604 #: ../src/virt-viewer-window.c:1152
615 #: src/virt-viewer-window.c:1237
605616 msgid "Unable to connnect to oVirt"
606 msgstr ""
607
608 #: ../src/virt-viewer-window.c:1175
617 msgstr "Incapable de se connecter à oVirt"
618
619 #: src/virt-viewer-window.c:1260
609620 msgid "Disconnect"
610621 msgstr "Déconnexion"
611622
612 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
623 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
613624 msgid "USB device selection"
614625 msgstr "Sélection du périphérique USB"
615626
616 #: ../src/virt-viewer-window.c:1193
627 #: src/virt-viewer-window.c:1278
617628 msgid "Send key combination"
618629 msgstr "Envoyer la combinaison de touches"
619630
620 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
631 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
621632 msgid "Leave fullscreen"
622633 msgstr "Quitter le plein écran"
623634
624 #: ../src/virt-viewer-window.c:1279
635 #: src/virt-viewer-window.c:1364
625636 msgid "Ctrl+Alt"
626637 msgstr "Ctrl+Alt"
627638
628 #: ../src/virt-viewer-window.c:1282
639 #: src/virt-viewer-window.c:1367
629640 #, c-format
630641 msgid "(Press %s to release pointer)"
631642 msgstr "(Appuyer sur %s pour libérer la souris)"
632643
633 #. translators:
634 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
635 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
636 #.
637 #: ../src/virt-viewer-window.c:1293
644 #: src/virt-viewer-window.c:1378
638645 #, c-format
639646 msgid "%s%s%s - %s"
640647 msgstr "%s%s%s - %s"
641648
642 #. translators: <space>
643 #: ../src/virt-viewer-window.c:1297
649 #: src/virt-viewer-window.c:1382
644650 msgid " "
645651 msgstr " "
646652
647 #: ../src/virt-viewer-file.c:862
653 #: src/virt-viewer-file.c:875
648654 #, c-format
649655 msgid ""
650656 "At least %s version %s is required to setup this connection, see %s for "
653659 "La configuration de cette connexion requiert au minimum %s version %s, "
654660 "veuillez consulter %s pour plus de détails"
655661
656 #: ../src/virt-viewer-file.c:870
662 #: src/virt-viewer-file.c:883
657663 #, c-format
658664 msgid "At least %s version %s is required to setup this connection"
659665 msgstr "La configuration de cette connexion requiert au minimum %s version %s"
660666
661 #: ../src/virt-viewer.c:133
667 #: src/virt-viewer.c:131
662668 msgid "Direct connection with no automatic tunnels"
663669 msgstr "Connexion directe sans tunnels automatiques"
664670
665 #: ../src/virt-viewer.c:135
671 #: src/virt-viewer.c:133
666672 msgid "Attach to the local display using libvirt"
667673 msgstr "S'attacher à l'affichage local à l'aide de libvirt"
668674
669 #: ../src/virt-viewer.c:137
675 #: src/virt-viewer.c:135
670676 msgid "Connect to hypervisor"
671677 msgstr "Se connecter à l'hyperviseur"
672678
673 #: ../src/virt-viewer.c:139
679 #: src/virt-viewer.c:137
674680 msgid "Wait for domain to start"
675681 msgstr "En attente de démarrage du domaine"
676682
677 #: ../src/virt-viewer.c:141
683 #: src/virt-viewer.c:139
678684 msgid "Reconnect to domain upon restart"
679685 msgstr "Se reconnecter au domaine lors des redémarrages"
680686
681 #: ../src/virt-viewer.c:143
687 #: src/virt-viewer.c:141
682688 msgid "Select the virtual machine only by its name"
683 msgstr ""
684
685 #: ../src/virt-viewer.c:145
689 msgstr "Sélectionnez la machine virtuelle uniquement par son nom"
690
691 #: src/virt-viewer.c:143
686692 msgid "Select the virtual machine only by its id"
687 msgstr ""
688
689 #: ../src/virt-viewer.c:147
693 msgstr "Sélectionnez la machine virtuelle uniquement par son id"
694
695 #: src/virt-viewer.c:145
690696 msgid "Select the virtual machine only by its uuid"
691 msgstr ""
692
693 #: ../src/virt-viewer.c:154
697 msgstr "Sélectionnez la machine virtuelle uniquement par son uuid"
698
699 #: src/virt-viewer.c:152
694700 msgid "Virtual machine graphical console"
695701 msgstr "Console graphique de la machine virtuelle"
696702
697 #: ../src/virt-viewer.c:173
703 #: src/virt-viewer.c:171
698704 #, c-format
699705 msgid ""
700706 "\n"
701707 "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
702708 "\n"
703709 msgstr ""
704
705 #: ../src/virt-viewer.c:185
710 "\n"
711 "Usage : %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
712 "\n"
713
714 #: src/virt-viewer.c:183
706715 #, c-format
707716 msgid ""
708717 "\n"
709718 "No ID|UUID|DOMAIN-NAME was specified for '%s'\n"
710719 "\n"
711720 msgstr ""
712
713 #: ../src/virt-viewer.c:300
721 "\n"
722 "Aucun ID|UUID|DOMAIN-NAME n'a été renseigné pour « %s »\n"
723 "\n"
724
725 #: src/virt-viewer.c:296
714726 msgid "Waiting for guest domain to re-start"
715727 msgstr "En attente du redémarrage du domaine invité"
716728
717 #: ../src/virt-viewer.c:554
729 #: src/virt-viewer.c:550
718730 #, c-format
719731 msgid "Cannot determine the graphic type for the guest %s"
720732 msgstr "Impossible de déterminer le type d'affichage de l'invité %s"
721733
722 #: ../src/virt-viewer.c:603
734 #: src/virt-viewer.c:599
723735 #, c-format
724736 msgid "Cannot determine the host for the guest %s"
725737 msgstr "Impossible de déterminer l'hôte de l'invité %s"
726738
727 #: ../src/virt-viewer.c:631
739 #: src/virt-viewer.c:627
728740 #, c-format
729741 msgid "Guest '%s' is not reachable"
730742 msgstr "L'invité « %s » n'est pas joignable"
731743
732 #: ../src/virt-viewer.c:860
744 #: src/virt-viewer.c:856
733745 #, c-format
734746 msgid "Virtual machine %s is not running"
735747 msgstr "La machine virtuelle %s n'est pas en cours d'exécution"
736748
737 #: ../src/virt-viewer.c:884
749 #: src/virt-viewer.c:881
738750 msgid "Waiting for libvirt to start"
739751 msgstr "En attente du démarrage de libvirt"
740752
741 #: ../src/virt-viewer.c:888
753 #: src/virt-viewer.c:885
742754 msgid "Finding guest domain"
743755 msgstr "Recherche du domaine invité"
744756
745 #: ../src/virt-viewer.c:892
757 #: src/virt-viewer.c:889
746758 msgid "Waiting for guest domain to be created"
747759 msgstr "En attente de la création du domaine invité"
748760
749 #: ../src/virt-viewer.c:918
761 #: src/virt-viewer.c:921
750762 msgid "Checking guest domain status"
751763 msgstr "Vérification du statut du domaine invité"
752764
753 #: ../src/virt-viewer.c:921
765 #: src/virt-viewer.c:924
754766 msgid "Cannot get guest state"
755767 msgstr "Impossible d'obtenir l'état de l'invité"
756768
757 #: ../src/virt-viewer.c:927
769 #: src/virt-viewer.c:930
758770 msgid "Waiting for guest domain to start"
759771 msgstr "En attente du démarrage du domaine invité"
760772
761 #: ../src/virt-viewer.c:1040
773 #: src/virt-viewer.c:1044
762774 #, c-format
763775 msgid "Unable to connect to libvirt with URI: %s."
764776 msgstr "Impossible d'établir la connexion à libvirt avec l'URI : %s"
765777
766 #: ../src/virt-viewer.c:1041
778 #: src/virt-viewer.c:1045
767779 msgid "[none]"
768780 msgstr "[aucun]"
769781
770 #: ../src/virt-viewer.c:1048
782 #: src/virt-viewer.c:1052
771783 msgid "Authentication failed."
772784 msgstr "Échec de l'authentification."
773785
774 #: ../src/virt-viewer.c:1108
786 #: src/virt-viewer.c:1112
775787 msgid "Failed to connect: "
776788 msgstr "Échec de connexion :"
777789
778 #.
779 #. * Local variables:
780 #. * c-indent-level: 4
781 #. * c-basic-offset: 4
782 #. * indent-tabs-mode: nil
783 #. * End:
784 #.
785 #: ../src/resources/ui/virt-viewer.ui.h:1
790 #: src/resources/ui/virt-viewer.ui:28
786791 msgid "_File"
787792 msgstr "_Fichier"
788793
789 #: ../src/resources/ui/virt-viewer.ui.h:2
794 #: src/resources/ui/virt-viewer.ui:41
790795 msgid "_Screenshot"
791796 msgstr "_Capture d'écran"
792797
793 #: ../src/resources/ui/virt-viewer.ui.h:3
798 #: src/resources/ui/virt-viewer.ui:52
794799 msgid "_USB device selection"
795800 msgstr "Sélection du périphérique _USB"
796801
797 #: ../src/resources/ui/virt-viewer.ui.h:4
802 #: src/resources/ui/virt-viewer.ui:62
798803 msgid "Smartcard insertion"
799804 msgstr "Insertion d'une Smartcard"
800805
801 #: ../src/resources/ui/virt-viewer.ui.h:5
806 #: src/resources/ui/virt-viewer.ui:72
802807 msgid "Smartcard removal"
803808 msgstr "Suppression d'une Smartcard"
804809
805 #: ../src/resources/ui/virt-viewer.ui.h:6
810 #: src/resources/ui/virt-viewer.ui:80
806811 msgid "_Change CD"
807812 msgstr "_Changer le CD"
808813
809 #: ../src/resources/ui/virt-viewer.ui.h:7
814 #: src/resources/ui/virt-viewer.ui:90
810815 msgid "_Preferences"
811816 msgstr "_Préférences"
812817
813 #: ../src/resources/ui/virt-viewer.ui.h:8
818 #: src/resources/ui/virt-viewer.ui:103
814819 msgid "_Quit"
815820 msgstr "_Quitter"
816821
817 #: ../src/resources/ui/virt-viewer.ui.h:9
822 #: src/resources/ui/virt-viewer.ui:119
823 msgid "_Machine"
824 msgstr "_Machine"
825
826 #: src/resources/ui/virt-viewer.ui:129
827 msgid "_Pause"
828 msgstr "_Pause"
829
830 #: src/resources/ui/virt-viewer.ui:144
831 msgid "_Reset"
832 msgstr "_Réinitialiser"
833
834 #: src/resources/ui/virt-viewer.ui:153
835 msgid "_Power down"
836 msgstr "Éteindre"
837
838 #: src/resources/ui/virt-viewer.ui:167
818839 msgid "_View"
819840 msgstr "_Affichage"
820841
821 #: ../src/resources/ui/virt-viewer.ui.h:10
842 #: src/resources/ui/virt-viewer.ui:180
822843 msgid "_Full screen"
823844 msgstr "_Plein écran"
824845
825 #: ../src/resources/ui/virt-viewer.ui.h:11
846 #: src/resources/ui/virt-viewer.ui:191
826847 msgid "_Zoom"
827848 msgstr "_Zoom"
828849
829 #: ../src/resources/ui/virt-viewer.ui.h:12
850 #: src/resources/ui/virt-viewer.ui:201
830851 msgid "Zoom _In"
831852 msgstr "Agrand_ir"
832853
833 #: ../src/resources/ui/virt-viewer.ui.h:13
854 #: src/resources/ui/virt-viewer.ui:212
834855 msgid "Zoom _Out"
835856 msgstr "Rétréci_r"
836857
837 #: ../src/resources/ui/virt-viewer.ui.h:14
858 #: src/resources/ui/virt-viewer.ui:229
838859 msgid "_Normal Size"
839860 msgstr "Taille _normale"
840861
841 #: ../src/resources/ui/virt-viewer.ui.h:15
862 #: src/resources/ui/virt-viewer.ui:246
842863 msgid "_Displays"
843864 msgstr "Affichages"
844865
845 #: ../src/resources/ui/virt-viewer.ui.h:16
866 #: src/resources/ui/virt-viewer.ui:255
846867 msgid "Release cursor"
847868 msgstr "Libérer le curseur"
848869
849 #: ../src/resources/ui/virt-viewer.ui.h:17
870 #: src/resources/ui/virt-viewer.ui:270
850871 msgid "_Send key"
851872 msgstr "_Envoi de touches"
852873
853 #: ../src/resources/ui/virt-viewer.ui.h:18
874 #: src/resources/ui/virt-viewer.ui:279
854875 msgid "_Help"
855876 msgstr "_Aide"
856877
857 #: ../src/resources/ui/virt-viewer.ui.h:19
878 #: src/resources/ui/virt-viewer.ui:290
858879 msgid "_Guest Details"
859880 msgstr "_Détails de l'invité"
860881
861 #: ../src/resources/ui/virt-viewer.ui.h:20
882 #: src/resources/ui/virt-viewer.ui:297
862883 msgid "_About"
863884 msgstr "_À propos"
864885
865 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
886 #: src/resources/ui/virt-viewer-guest-details.ui:7
866887 msgid "Guest Details"
867888 msgstr "Détails de l'invité"
868889
869 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
890 #: src/resources/ui/virt-viewer-guest-details.ui:56
870891 msgid "Name:"
871892 msgstr "Nom :"
872893
873 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
894 #: src/resources/ui/virt-viewer-guest-details.ui:68
874895 msgid "GUID:"
875896 msgstr "GUID :"
876897
877 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
898 #: src/resources/ui/virt-viewer-vm-connection.ui:7
878899 msgid "Choose a virtual machine"
879900 msgstr "Choisissez une machine virtuelle"
880901
881 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
902 #: src/resources/ui/virt-viewer-vm-connection.ui:96
882903 msgid "Available virtual machines"
883904 msgstr "Machines virtuelles disponibles"
884905
885 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
906 #: src/resources/ui/virt-viewer-preferences.ui:8
886907 msgid "Preferences"
887908 msgstr "Préférences"
888909
889 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
910 #: src/resources/ui/virt-viewer-preferences.ui:48
890911 msgid "Folder sharing"
891912 msgstr "Partage de dossier"
892913
893 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
914 #: src/resources/ui/virt-viewer-preferences.ui:70
894915 msgid "Share folder"
895916 msgstr "Partager le dossier"
896917
897 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
918 #: src/resources/ui/virt-viewer-preferences.ui:82
898919 msgid "Read-only"
899920 msgstr "Lecture seule"
900921
901 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
922 #: src/resources/ui/virt-viewer-preferences.ui:96
923 msgid "Share clipboard"
924 msgstr ""
925
926 #: src/resources/ui/virt-viewer-preferences.ui:132
902927 msgid "Spice"
903928 msgstr "Spice"
929
930 #~ msgid "virt-manager.org"
931 #~ msgstr "virt-manager.org"
932
933 #~ msgid "virt-viewer"
934 #~ msgstr "virt-viewer"
Binary diff not shown
+264
-252
po/gl.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Galician\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+269
-253
po/gu.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
77 # sweta <swkothar@redhat.com>, 2013-2014
88 msgid ""
99 msgstr ""
10 "Project-Id-Version: PACKAGE VERSION\n"
11 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
13 "PO-Revision-Date: 2015-02-20 08:09-0500\n"
10 "Project-Id-Version: virt-viewer 9.0\n"
11 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
12 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
13 "PO-Revision-Date: 2015-02-20 08:09+0000\n"
1414 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1515 "Language-Team: Gujarati (http://www.transifex.com/projects/p/virt-viewer/"
1616 "language/gu/)\n"
1919 "Content-Type: text/plain; charset=UTF-8\n"
2020 "Content-Transfer-Encoding: 8bit\n"
2121 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22 "X-Generator: Zanata 3.9.6\n"
23
24 #: ../data/remote-viewer.appdata.xml.in.h:1
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
22 "X-Generator: Zanata 4.6.2\n"
23
24 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
25 #: src/remote-viewer-main.c:39
2626 msgid "Remote Viewer"
2727 msgstr "દૂરસ્થ દર્શક"
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:2
29 #: data/remote-viewer.appdata.xml.in:7
3030 msgid "Remotely access virtual machines"
3131 msgstr ""
3232
33 #: ../data/remote-viewer.appdata.xml.in.h:3
33 #: data/remote-viewer.appdata.xml.in:9
3434 msgid ""
3535 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3636 "time it supports guest OS using the VNC or SPICE protocols. Further "
3939 "using SSL/TLS encryption."
4040 msgstr ""
4141
42 #: ../data/remote-viewer.desktop.in.h:2
42 #: data/remote-viewer.desktop.in:4
4343 msgid "Access remote desktops"
4444 msgstr "દૂરસ્થ ડેસ્કટોપો માં પ્રવેશો"
4545
46 #: ../data/virt-viewer-mime.xml.in.h:1
47 msgid "Virt-Viewer connection file"
48 msgstr "Virt-Viewer જોડાણ ફાઇલ"
49
50 #: ../src/remote-viewer-iso-list-dialog.c:160
46 #: src/remote-viewer-iso-list-dialog.c:156
5147 msgid "Failed to fetch CD names"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:212
50 #: src/remote-viewer-iso-list-dialog.c:205
5551 msgid "<b>Loading...</b>"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:285
54 #: src/remote-viewer-iso-list-dialog.c:276
5955 msgid "Refresh"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:286
58 #: src/remote-viewer-iso-list-dialog.c:277
6359 msgid "Close"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:306
62 #: src/remote-viewer-iso-list-dialog.c:297
6763 msgid "Unspecified error"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:328
66 #: src/remote-viewer-iso-list-dialog.c:318
7167 msgid "Failed to change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer-iso-list-dialog.c:380
70 #: src/remote-viewer-iso-list-dialog.c:370
7571 msgid "Change CD"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:118
74 #: src/remote-viewer.c:116
7975 msgid "Set window title"
8076 msgstr "વિન્ડો શીર્ષક સુયોજિત કરો"
8177
82 #: ../src/remote-viewer.c:125
78 #: src/remote-viewer.c:123
8379 msgid "Remote viewer client"
8480 msgstr "- દૂરસ્થ દર્શક ક્લાયન્ટ"
8581
86 #: ../src/remote-viewer.c:150
87 #, c-format
82 #: src/remote-viewer.c:148
8883 msgid ""
8984 "\n"
9085 "Error: can't handle multiple URIs\n"
9186 "\n"
9287 msgstr ""
9388
94 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
89 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9590 #, c-format
9691 msgid "Run '%s --help' to see a full list of available command line options\n"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:435
94 #: src/remote-viewer.c:429
10095 msgid "failed to parse ovirt uri"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
98 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10499 msgid "Authentication was cancelled"
105100 msgstr ""
106101
107 #: ../src/remote-viewer.c:480
102 #: src/remote-viewer.c:472
108103 #, c-format
109104 msgid "oVirt VM %s is not running"
110105 msgstr ""
111106
112 #: ../src/remote-viewer.c:494
107 #: src/remote-viewer.c:486
113108 #, c-format
114109 msgid "oVirt VM %s has no display"
115110 msgstr ""
116111
117 #: ../src/remote-viewer.c:520
112 #: src/remote-viewer.c:512
118113 #, c-format
119114 msgid "oVirt VM %s has no host information"
120115 msgstr ""
121116
122 #: ../src/remote-viewer.c:531
123 #, c-format
124 msgid "oVirt VM %s has unknown display type: %d"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:713
117 #: src/remote-viewer.c:523
118 #, c-format
119 msgid "oVirt VM %s has unknown display type: %u"
120 msgstr ""
121
122 #: src/remote-viewer.c:690
123 msgid "Couldn't open oVirt session: "
124 msgstr ""
125
126 #: src/remote-viewer.c:718
128127 msgid "Failed to initiate connection"
129128 msgstr "જોડાણને પ્રારંભ કરવાનુ નિષ્ફળ"
130129
131 #: ../src/remote-viewer.c:742
130 #: src/remote-viewer.c:747
132131 msgid "No connection was chosen"
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:759
134 #: src/remote-viewer.c:764
136135 msgid "Failed to read stdin: "
137136 msgstr ""
138137
139 #: ../src/remote-viewer.c:776
138 #: src/remote-viewer.c:781
140139 #, c-format
141140 msgid "Invalid file %s: "
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:786
143 #: src/remote-viewer.c:791
145144 msgid "Cannot determine the connection type from URI"
146145 msgstr "URI માંથી જોડાણ પ્રકારને નક્કી કરી શકાતુ નથી"
147146
148 #: ../src/remote-viewer.c:792
149 msgid "Couldn't open oVirt session: "
150 msgstr ""
151
152 #: ../src/remote-viewer.c:815
147 #: src/remote-viewer.c:810
153148 #, c-format
154149 msgid "Unable to connect: %s"
155150 msgstr ""
156151
157 #.
158 #. * Local variables:
159 #. * c-indent-level: 4
160 #. * c-basic-offset: 4
161 #. * indent-tabs-mode: nil
162 #. * End:
163 #.
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
152 #: src/resources/ui/remote-viewer-connect.ui:6
165153 msgid "Connection details"
166154 msgstr "જોડાણ વિગતો"
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
156 #: src/resources/ui/remote-viewer-connect.ui:24
169157 msgid "Connection _Address"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
160 #: src/resources/ui/remote-viewer-connect.ui:54
173161 msgid "For example, spice://foo.example.org:5900"
174162 msgstr "ઉદાહરણ તરીકે, spice://foo.example.org:5900"
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
164 #: src/resources/ui/remote-viewer-connect.ui:78
177165 msgid "Recent connections"
178166 msgstr ""
179167
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
181 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
182 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
183 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
168 #: src/resources/ui/remote-viewer-connect.ui:120
169 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
170 #: src/resources/ui/virt-viewer-vm-connection.ui:24
171 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
184172 msgid "_Cancel"
185173 msgstr ""
186174
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
188 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:134
176 #: src/resources/ui/virt-viewer-vm-connection.ui:38
189177 msgid "C_onnect"
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
180 #: src/resources/ui/remote-viewer-iso-list.ui:28
193181 msgid "Loading..."
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
184 #: src/resources/ui/remote-viewer-iso-list.ui:78
197185 msgid "Select ISO"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
188 #: src/resources/ui/remote-viewer-iso-list.ui:116
201189 msgid "Selected"
202190 msgstr ""
203191
204 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
205 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
192 #: src/resources/ui/remote-viewer-iso-list.ui:129
193 #: src/resources/ui/virt-viewer-vm-connection.ui:72
206194 msgid "Name"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:1
197 #: src/resources/ui/virt-viewer-about.ui:7
210198 msgid "About Virt-Viewer"
211199 msgstr ""
212200
213 #: ../src/resources/ui/virt-viewer-about.ui.h:2
201 #: src/resources/ui/virt-viewer-about.ui:16
214202 msgid ""
215203 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216204 "Copyright (C) 2007-2014 Red Hat, Inc."
218206 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219207 "Copyright (C) 2007-2014 Red Hat, Inc."
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:4
209 #: src/resources/ui/virt-viewer-about.ui:18
222210 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
223211 msgstr "GTK-VNC, SPICE-GTK અને libvirt સાથે દૂરસ્થ ડેસ્કટોપ ક્લાયન્ટને બનાવેલ છે"
224212
225 #: ../src/resources/ui/virt-viewer-about.ui.h:5
226 msgid "virt-manager.org"
227 msgstr "virt-manager.org"
228
229 #: ../src/resources/ui/virt-viewer-about.ui.h:6
213 #: src/resources/ui/virt-viewer-about.ui:20
214 msgid "gitlab.com/virt-viewer/virt-viewer"
215 msgstr ""
216
217 #: src/resources/ui/virt-viewer-about.ui:21
230218 msgid ""
231219 "This program is free software; you can redistribute it and/or modify\n"
232220 "it under the terms of the GNU General Public License as published by\n"
256244 "along with this program; if not, write to the Free Software\n"
257245 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
258246
259 #: ../src/resources/ui/virt-viewer-about.ui.h:20
247 #: src/resources/ui/virt-viewer-about.ui:38
260248 msgid "The Fedora Translation Team"
261249 msgstr "Fedora અનુવાદ ટીમ"
262250
263 #: ../src/virt-viewer-app.c:459
251 #: src/virt-viewer-app.c:594
264252 msgid "Do you want to close the session?"
265253 msgstr "શું તમે આ સત્રને બંધ કરવા માંગો છો?"
266254
267 #: ../src/virt-viewer-app.c:461
255 #: src/virt-viewer-app.c:596
268256 msgid "Do not ask me again"
269257 msgstr "મને ફરી વાર પૂછશો નહિં"
270258
271 #: ../src/virt-viewer-app.c:655
259 #: src/virt-viewer-app.c:767
272260 #, c-format
273261 msgid "Address is too long for unix socket_path: %s"
274262 msgstr ""
275263
276 #: ../src/virt-viewer-app.c:665
264 #: src/virt-viewer-app.c:777
277265 #, c-format
278266 msgid "Creating unix socket failed: %s"
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:671
269 #: src/virt-viewer-app.c:783
282270 #, c-format
283271 msgid "Connecting to unix socket failed: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:955
274 #: src/virt-viewer-app.c:1077
287275 #, c-format
288276 msgid "Waiting for display %d..."
289277 msgstr "%d ને દર્શાવવા માટે રાહ જોઇ રહ્યા છે..."
290278
291 #: ../src/virt-viewer-app.c:1062
279 #: src/virt-viewer-app.c:1193
292280 #, c-format
293281 msgid "Unsupported graphic type '%s'"
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:1146
284 #: src/virt-viewer-app.c:1277
297285 msgid "Connect to ssh failed."
298286 msgstr "ssh સાથે જોડાવાનું નિષ્ફળ."
299287
300 #: ../src/virt-viewer-app.c:1161
288 #: src/virt-viewer-app.c:1292
301289 #, c-format
302290 msgid "Can't connect to channel: %s"
303291 msgstr ""
304292
305 #: ../src/virt-viewer-app.c:1163
293 #: src/virt-viewer-app.c:1294
306294 msgid "only SSH or unix socket connection supported."
307295 msgstr ""
308296
309 #: ../src/virt-viewer-app.c:1176
297 #: src/virt-viewer-app.c:1311
310298 msgid "Connect to channel unsupported."
311299 msgstr "ચેનલમાં જોડાવાનુ બિનઆધારભૂત છે."
312300
313 #: ../src/virt-viewer-app.c:1238
301 #: src/virt-viewer-app.c:1376
314302 msgid "Display can only be attached through libvirt with --attach"
315303 msgstr ""
316304
317 #: ../src/virt-viewer-app.c:1263
305 #: src/virt-viewer-app.c:1401
318306 msgid "Connecting to graphic server"
319307 msgstr "ગ્રાફિક સર્વરમાં જોડાઇ રહ્યા છે"
320308
321 #: ../src/virt-viewer-app.c:1362
309 #: src/virt-viewer-app.c:1500
322310 msgid "Guest domain has shutdown"
323311 msgstr "મહેમાન ડોમેઇન બંધ થઇ ગયો"
324312
325 #: ../src/virt-viewer-app.c:1423
313 #: src/virt-viewer-app.c:1561
326314 msgid "Connected to graphic server"
327315 msgstr "ગ્રાફિક સર્વરમાં જોડાયેલ છે"
328316
329 #: ../src/virt-viewer-app.c:1452
317 #: src/virt-viewer-app.c:1590
330318 #, c-format
331319 msgid "Unable to connect to the graphic server %s"
332320 msgstr "ગ્રાફિક સર્વર %s માં જોડાવામાં અસમર્થ"
333321
334 #: ../src/virt-viewer-app.c:1478
322 #: src/virt-viewer-app.c:1616
335323 #, c-format
336324 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
337325 msgstr ""
338326
339 #: ../src/virt-viewer-app.c:1492
327 #: src/virt-viewer-app.c:1630
340328 #, c-format
341329 msgid "Unable to authenticate with remote desktop server: %s"
342330 msgstr "દૂરસ્થ ડેસ્કટોપ સર્વર સાથે સત્તાધિકરણ કરવાનું અસમર્થ: %s"
343331
344 #: ../src/virt-viewer-app.c:1500
332 #: src/virt-viewer-app.c:1638
345333 #, c-format
346334 msgid "USB redirection error: %s"
347335 msgstr "USB પુનર્નિર્દેશન ભૂલ: %s"
348336
349 #: ../src/virt-viewer-app.c:1834
337 #: src/virt-viewer-app.c:2026
350338 #, c-format
351339 msgid "Zoom level must be within %d-%d\n"
352340 msgstr "નાનું મોટુ કરવાનું લેવલ એ %d-%d માં હોવુ જ જોઇએ\n"
353341
354 #: ../src/virt-viewer-app.c:1887
342 #: src/virt-viewer-app.c:2081
355343 #, c-format
356344 msgid "%s\n"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:1897
347 #: src/virt-viewer-app.c:2091
360348 #, c-format
361349 msgid "%s version %s"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2321
352 #: src/virt-viewer-app.c:2545
365353 #, c-format
366354 msgid "Display _%d"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2577
357 #: src/virt-viewer-app.c:2829
370358 #, c-format
371359 msgid "Invalid kiosk-quit argument: %s"
372360 msgstr "અયોગ્ય kiosk-quit દલીલ: %s"
373361
374 #: ../src/virt-viewer-app.c:2588
362 #: src/virt-viewer-app.c:2840
375363 msgid "Display version information"
376364 msgstr "આવૃત્તિ જાણકારીને બતાવો"
377365
378 #: ../src/virt-viewer-app.c:2590
366 #: src/virt-viewer-app.c:2842
379367 msgid "Zoom level of window, in percentage"
380368 msgstr "નાનામોટાપણાનું સ્તર, ટકામાં"
381369
382 #: ../src/virt-viewer-app.c:2592
370 #: src/virt-viewer-app.c:2844
383371 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
384372 msgstr "સંપૂર્ણ સ્ક્રીન સ્થિતિમાં ખોલો (ક્લાયન્ટને બંધબેસાડવા માટે મહેમાન રિઝોલ્યુશનને ગોઠવે છે)"
385373
386 #: ../src/virt-viewer-app.c:2594
374 #: src/virt-viewer-app.c:2846
387375 msgid "Customise hotkeys"
388376 msgstr "ટૂંકીકીઓ કસ્ટમાઇઝ કરો"
389377
390 #: ../src/virt-viewer-app.c:2596
378 #: src/virt-viewer-app.c:2848
391379 msgid "Enable kiosk mode"
392380 msgstr "kiosk સ્થિતિને સક્રિય કરો"
393381
394 #: ../src/virt-viewer-app.c:2598
382 #: src/virt-viewer-app.c:2850
395383 msgid "Quit on given condition in kiosk mode"
396384 msgstr "kiosk સ્થિતિમાં આપેલ શરત પર બહાર નીકળો"
397385
398 #: ../src/virt-viewer-app.c:2598
386 #: src/virt-viewer-app.c:2850
399387 msgid "<never|on-disconnect>"
400388 msgstr "<never|on-disconnect>"
401389
402 #: ../src/virt-viewer-app.c:2600
390 #: src/virt-viewer-app.c:2852
403391 msgid "Display verbose information"
404392 msgstr "વર્બોસ જાણકારીને બતાવો"
405393
406 #: ../src/virt-viewer-app.c:2602
394 #: src/virt-viewer-app.c:2854
407395 msgid "Display debugging information"
408396 msgstr "ડિબગીંગ જાણકારીને બતાવો"
409397
410 #: ../src/virt-viewer-auth.c:89
398 #: src/virt-viewer-auth.c:89
411399 #, c-format
412400 msgid ""
413401 "Authentication is required for the %s connection to:\n"
416404 "\n"
417405 msgstr ""
418406
419 #: ../src/virt-viewer-auth.c:93
407 #: src/virt-viewer-auth.c:93
420408 #, c-format
421409 msgid "Authentication is required for the %s connection:\n"
422410 msgstr ""
423411
424 #.
425 #. * Local variables:
426 #. * c-indent-level: 4
427 #. * c-basic-offset: 4
428 #. * indent-tabs-mode: nil
429 #. * End:
430 #.
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
412 #: src/resources/ui/virt-viewer-auth.ui:7
432413 msgid "Authentication required"
433414 msgstr "સત્તાધિકરણ જરૂરી છે"
434415
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
416 #: src/resources/ui/virt-viewer-auth.ui:42
436417 msgid "_OK"
437418 msgstr ""
438419
439 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
440 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
441 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
420 #: src/resources/ui/virt-viewer-auth.ui:71
421 #: src/resources/ui/virt-viewer-guest-details.ui:82
422 #: src/resources/ui/virt-viewer-guest-details.ui:96
423 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
442424 msgid "label"
443425 msgstr "લેબલ"
444426
445 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
427 #: src/resources/ui/virt-viewer-auth.ui:93
446428 msgid "Password:"
447429 msgstr "પાસવર્ડ:"
448430
449 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
431 #: src/resources/ui/virt-viewer-auth.ui:105
450432 msgid "Username:"
451433 msgstr "વપરાશકર્તાનામ:"
452434
453 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
435 #: src/resources/ui/virt-viewer-auth.ui:137
454436 msgid "Show password"
455437 msgstr ""
456438
457 #: ../src/virt-viewer-display-vnc.c:134
439 #: src/virt-viewer-display-vnc.c:130
458440 msgid "VNC does not provide GUID"
459441 msgstr ""
460442
461 #: ../src/virt-viewer-file-transfer-dialog.c:128
443 #: src/virt-viewer-display-vte.c:181
444 msgid "Console support is compiled out!"
445 msgstr ""
446
447 #: src/virt-viewer-file-transfer-dialog.c:124
462448 msgid "File Transfers"
463449 msgstr ""
464450
465 #: ../src/virt-viewer-file-transfer-dialog.c:154
451 #: src/virt-viewer-file-transfer-dialog.c:150
466452 msgid "Transferring 1 file..."
467453 msgstr ""
468454
469 #: ../src/virt-viewer-file-transfer-dialog.c:156
470 #, c-format
471 msgid "Transferring %d file of %d..."
472 msgid_plural "Transferring %d files of %d..."
455 #: src/virt-viewer-file-transfer-dialog.c:152
456 #, c-format
457 msgid "Transferring %u file of %u..."
458 msgid_plural "Transferring %u files of %u..."
473459 msgstr[0] ""
474
475 #: ../src/virt-viewer-file-transfer-dialog.c:228
476 #, c-format
477 msgid "An error caused the following file transfers to fail:%s"
478 msgstr ""
479
480 #: ../src/virt-viewer-main.c:38
460 msgstr[1] ""
461
462 #: src/virt-viewer-file-transfer-dialog.c:225
463 msgid "An error caused the following file transfers to fail:"
464 msgstr ""
465
466 #: src/virt-viewer-main.c:38
481467 msgid "Virt Viewer"
482468 msgstr "Virt Viewer"
483469
484 #: ../src/virt-viewer-session-spice.c:704
470 #: src/virt-viewer-session-spice.c:731
485471 msgid "Invalid password"
486472 msgstr ""
487473
488 #. Create the widgets
489 #: ../src/virt-viewer-session-spice.c:802
474 #: src/virt-viewer-session-spice.c:829
490475 msgid "Select USB devices for redirection"
491476 msgstr "પુનર્નિર્દેશન માટે USB ઉપકરણોને પસંદ કરો"
492477
493 #: ../src/virt-viewer-session-spice.c:804
494 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
478 #: src/virt-viewer-session-spice.c:831
479 #: src/resources/ui/virt-viewer-guest-details.ui:23
495480 msgid "_Close"
496481 msgstr ""
497482
498 #: ../src/virt-viewer-session-vnc.c:162
499 #, c-format
500 msgid "Unsupported authentication type %d"
501 msgstr "બિનઆધારભૂત સત્તાધિકરણ પ્રકાર %d"
502
503 #: ../src/virt-viewer-vm-connection.c:64
483 #: src/virt-viewer-session-spice.c:1019
484 msgid "Serial"
485 msgstr ""
486
487 #: src/virt-viewer-session-spice.c:1021
488 msgid "QEMU human monitor"
489 msgstr ""
490
491 #: src/virt-viewer-session-spice.c:1023
492 msgid "QEMU debug console"
493 msgstr ""
494
495 #: src/virt-viewer-session-vnc.c:158
496 #, c-format
497 msgid "Unsupported authentication type %u"
498 msgstr ""
499
500 #: src/virt-viewer-vm-connection.c:64
504501 msgid "No running virtual machine found"
505502 msgstr ""
506503
507 #: ../src/virt-viewer-vm-connection.c:93
504 #: src/virt-viewer-vm-connection.c:93
508505 msgid "No virtual machine was chosen"
509506 msgstr ""
510507
511 #: ../src/virt-viewer-window.c:544
508 #: src/virt-viewer-window.c:621
512509 msgid "Ctrl+Alt+_Del"
513510 msgstr "Ctrl+Alt+_Del"
514511
515 #: ../src/virt-viewer-window.c:545
512 #: src/virt-viewer-window.c:622
516513 msgid "Ctrl+Alt+_Backspace"
517514 msgstr "Ctrl+Alt+_Backspace"
518515
519 #: ../src/virt-viewer-window.c:547
516 #: src/virt-viewer-window.c:624
520517 msgid "Ctrl+Alt+F_1"
521518 msgstr "Ctrl+Alt+F_1"
522519
523 #: ../src/virt-viewer-window.c:548
520 #: src/virt-viewer-window.c:625
524521 msgid "Ctrl+Alt+F_2"
525522 msgstr "Ctrl+Alt+F_2"
526523
527 #: ../src/virt-viewer-window.c:549
524 #: src/virt-viewer-window.c:626
528525 msgid "Ctrl+Alt+F_3"
529526 msgstr "Ctrl+Alt+F_3"
530527
531 #: ../src/virt-viewer-window.c:550
528 #: src/virt-viewer-window.c:627
532529 msgid "Ctrl+Alt+F_4"
533530 msgstr "Ctrl+Alt+F_4"
534531
535 #: ../src/virt-viewer-window.c:551
532 #: src/virt-viewer-window.c:628
536533 msgid "Ctrl+Alt+F_5"
537534 msgstr "Ctrl+Alt+F_5"
538535
539 #: ../src/virt-viewer-window.c:552
536 #: src/virt-viewer-window.c:629
540537 msgid "Ctrl+Alt+F_6"
541538 msgstr "Ctrl+Alt+F_6"
542539
543 #: ../src/virt-viewer-window.c:553
540 #: src/virt-viewer-window.c:630
544541 msgid "Ctrl+Alt+F_7"
545542 msgstr "Ctrl+Alt+F_7"
546543
547 #: ../src/virt-viewer-window.c:554
544 #: src/virt-viewer-window.c:631
548545 msgid "Ctrl+Alt+F_8"
549546 msgstr "Ctrl+Alt+F_8"
550547
551 #: ../src/virt-viewer-window.c:555
548 #: src/virt-viewer-window.c:632
552549 msgid "Ctrl+Alt+F_9"
553550 msgstr "Ctrl+Alt+F_9"
554551
555 #: ../src/virt-viewer-window.c:556
552 #: src/virt-viewer-window.c:633
556553 msgid "Ctrl+Alt+F1_0"
557554 msgstr "Ctrl+Alt+F1_0"
558555
559 #: ../src/virt-viewer-window.c:557
556 #: src/virt-viewer-window.c:634
560557 msgid "Ctrl+Alt+F11"
561558 msgstr "Ctrl+Alt+F11"
562559
563 #: ../src/virt-viewer-window.c:558
560 #: src/virt-viewer-window.c:635
564561 msgid "Ctrl+Alt+F12"
565562 msgstr "Ctrl+Alt+F12"
566563
567 #: ../src/virt-viewer-window.c:953
564 #: src/virt-viewer-window.c:637
565 msgid "_PrintScreen"
566 msgstr ""
567
568 #: src/virt-viewer-window.c:1030
568569 #, c-format
569570 msgid "Unable to determine image format for file '%s'"
570571 msgstr ""
571572
572 #: ../src/virt-viewer-window.c:980
573 #: src/virt-viewer-window.c:1053
574 msgid "Save screenshot"
575 msgstr ""
576
577 #: src/virt-viewer-window.c:1057
573578 msgid "_Save"
574579 msgstr ""
575580
576 #: ../src/virt-viewer-window.c:988
581 #: src/virt-viewer-window.c:1065
577582 msgid "Screenshot.png"
578583 msgstr ""
579584
580 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
585 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
581586 msgid "Unknown"
582587 msgstr ""
583588
584 #: ../src/virt-viewer-window.c:1152
589 #: src/virt-viewer-window.c:1237
585590 msgid "Unable to connnect to oVirt"
586591 msgstr ""
587592
588 #: ../src/virt-viewer-window.c:1175
593 #: src/virt-viewer-window.c:1260
589594 msgid "Disconnect"
590595 msgstr "જોડાણ તોડી નાંખો"
591596
592 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
597 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
593598 msgid "USB device selection"
594599 msgstr "USB ઉપકરણ પસંદગી"
595600
596 #: ../src/virt-viewer-window.c:1193
601 #: src/virt-viewer-window.c:1278
597602 msgid "Send key combination"
598603 msgstr "કી સંયોજન મોકલો"
599604
600 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
605 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
601606 msgid "Leave fullscreen"
602607 msgstr "પૂર્ણસ્ક્રીન છોડો"
603608
604 #: ../src/virt-viewer-window.c:1279
609 #: src/virt-viewer-window.c:1364
605610 msgid "Ctrl+Alt"
606611 msgstr "Ctrl+Alt"
607612
608 #: ../src/virt-viewer-window.c:1282
613 #: src/virt-viewer-window.c:1367
609614 #, c-format
610615 msgid "(Press %s to release pointer)"
611616 msgstr "(પોઇંટરને પ્રકાશિત કરવા માટે %s ને દબાવો)"
612617
613 #. translators:
614 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
615 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
616 #.
617 #: ../src/virt-viewer-window.c:1293
618 #: src/virt-viewer-window.c:1378
618619 #, c-format
619620 msgid "%s%s%s - %s"
620621 msgstr "%s%s%s - %s"
621622
622 #. translators: <space>
623 #: ../src/virt-viewer-window.c:1297
623 #: src/virt-viewer-window.c:1382
624624 msgid " "
625625 msgstr " "
626626
627 #: ../src/virt-viewer-file.c:862
627 #: src/virt-viewer-file.c:875
628628 #, c-format
629629 msgid ""
630630 "At least %s version %s is required to setup this connection, see %s for "
631631 "details"
632632 msgstr ""
633633
634 #: ../src/virt-viewer-file.c:870
634 #: src/virt-viewer-file.c:883
635635 #, c-format
636636 msgid "At least %s version %s is required to setup this connection"
637637 msgstr "ઓછામાં ઓછી %s આવૃત્તિ %s ને આ જોડાણને સુયોજિત કરવાની જરૂરિયાત છે"
638638
639 #: ../src/virt-viewer.c:133
639 #: src/virt-viewer.c:131
640640 msgid "Direct connection with no automatic tunnels"
641641 msgstr "સ્વયંસંચાલિત ટનલ સાથે સીધુ જોડાણ નથી"
642642
643 #: ../src/virt-viewer.c:135
643 #: src/virt-viewer.c:133
644644 msgid "Attach to the local display using libvirt"
645645 msgstr "libvirt ની મદદથી સ્થાનિક દર્શાવ સાથે જોડાવો"
646646
647 #: ../src/virt-viewer.c:137
647 #: src/virt-viewer.c:135
648648 msgid "Connect to hypervisor"
649649 msgstr "હાઇપરવિઝરમાં જોડાવો"
650650
651 #: ../src/virt-viewer.c:139
651 #: src/virt-viewer.c:137
652652 msgid "Wait for domain to start"
653653 msgstr "શરૂ કરવા ડોમેઇન માટે રાહ જુઓ"
654654
655 #: ../src/virt-viewer.c:141
655 #: src/virt-viewer.c:139
656656 msgid "Reconnect to domain upon restart"
657657 msgstr "પુનઃશરૂ કરવા પર ડોમેઇન પુનઃજોડાણ"
658658
659 #: ../src/virt-viewer.c:143
659 #: src/virt-viewer.c:141
660660 msgid "Select the virtual machine only by its name"
661661 msgstr ""
662662
663 #: ../src/virt-viewer.c:145
663 #: src/virt-viewer.c:143
664664 msgid "Select the virtual machine only by its id"
665665 msgstr ""
666666
667 #: ../src/virt-viewer.c:147
667 #: src/virt-viewer.c:145
668668 msgid "Select the virtual machine only by its uuid"
669669 msgstr ""
670670
671 #: ../src/virt-viewer.c:154
671 #: src/virt-viewer.c:152
672672 msgid "Virtual machine graphical console"
673673 msgstr "વર્ચ્યુઅલ મશીન ગ્રાફિકલ કન્સોલ"
674674
675 #: ../src/virt-viewer.c:173
675 #: src/virt-viewer.c:171
676676 #, c-format
677677 msgid ""
678678 "\n"
680680 "\n"
681681 msgstr ""
682682
683 #: ../src/virt-viewer.c:185
683 #: src/virt-viewer.c:183
684684 #, c-format
685685 msgid ""
686686 "\n"
688688 "\n"
689689 msgstr ""
690690
691 #: ../src/virt-viewer.c:300
691 #: src/virt-viewer.c:296
692692 msgid "Waiting for guest domain to re-start"
693693 msgstr "પુન:શરૂ કરવા માટે મહેમાન ડોમેઇન માટે રાહ જોઇ રહ્યા છે"
694694
695 #: ../src/virt-viewer.c:554
695 #: src/virt-viewer.c:550
696696 #, c-format
697697 msgid "Cannot determine the graphic type for the guest %s"
698698 msgstr "મહેમાન %s માટે ગ્રાફિક પ્રકારને નક્કી કરી શકાતુ નથી"
699699
700 #: ../src/virt-viewer.c:603
700 #: src/virt-viewer.c:599
701701 #, c-format
702702 msgid "Cannot determine the host for the guest %s"
703703 msgstr "મહેમાન %s માટે યજમાનને નક્કી કરી શકાતુ નથી"
704704
705 #: ../src/virt-viewer.c:631
705 #: src/virt-viewer.c:627
706706 #, c-format
707707 msgid "Guest '%s' is not reachable"
708708 msgstr ""
709709
710 #: ../src/virt-viewer.c:860
710 #: src/virt-viewer.c:856
711711 #, c-format
712712 msgid "Virtual machine %s is not running"
713713 msgstr ""
714714
715 #: ../src/virt-viewer.c:884
715 #: src/virt-viewer.c:881
716716 msgid "Waiting for libvirt to start"
717717 msgstr "શરૂ થવા libvirt માટે રાહ જોઇ રહ્યા છે"
718718
719 #: ../src/virt-viewer.c:888
719 #: src/virt-viewer.c:885
720720 msgid "Finding guest domain"
721721 msgstr "મહેમાન ડોમેઇનને શોધી રહ્યા છે"
722722
723 #: ../src/virt-viewer.c:892
723 #: src/virt-viewer.c:889
724724 msgid "Waiting for guest domain to be created"
725725 msgstr "બનાવવા માટે મહેમાન ડોમેઇન માટે રાહ જોઇ રહ્યા છે"
726726
727 #: ../src/virt-viewer.c:918
727 #: src/virt-viewer.c:921
728728 msgid "Checking guest domain status"
729729 msgstr "મહેમાન ડોમેઇન પરિસ્થિતિને ચકાસી રહ્યા છે"
730730
731 #: ../src/virt-viewer.c:921
731 #: src/virt-viewer.c:924
732732 msgid "Cannot get guest state"
733733 msgstr ""
734734
735 #: ../src/virt-viewer.c:927
735 #: src/virt-viewer.c:930
736736 msgid "Waiting for guest domain to start"
737737 msgstr "શરૂ કરવા માટે મહેમાન ડોમેઇન માટે રાહ જોઇ રહ્યા છે"
738738
739 #: ../src/virt-viewer.c:1040
739 #: src/virt-viewer.c:1044
740740 #, c-format
741741 msgid "Unable to connect to libvirt with URI: %s."
742742 msgstr ""
743743
744 #: ../src/virt-viewer.c:1041
744 #: src/virt-viewer.c:1045
745745 msgid "[none]"
746746 msgstr "[કંઇ નહિં]"
747747
748 #: ../src/virt-viewer.c:1048
748 #: src/virt-viewer.c:1052
749749 msgid "Authentication failed."
750750 msgstr ""
751751
752 #: ../src/virt-viewer.c:1108
752 #: src/virt-viewer.c:1112
753753 msgid "Failed to connect: "
754754 msgstr ""
755755
756 #.
757 #. * Local variables:
758 #. * c-indent-level: 4
759 #. * c-basic-offset: 4
760 #. * indent-tabs-mode: nil
761 #. * End:
762 #.
763 #: ../src/resources/ui/virt-viewer.ui.h:1
756 #: src/resources/ui/virt-viewer.ui:28
764757 msgid "_File"
765758 msgstr "ફાઇલ (_F)"
766759
767 #: ../src/resources/ui/virt-viewer.ui.h:2
760 #: src/resources/ui/virt-viewer.ui:41
768761 msgid "_Screenshot"
769762 msgstr ""
770763
771 #: ../src/resources/ui/virt-viewer.ui.h:3
764 #: src/resources/ui/virt-viewer.ui:52
772765 msgid "_USB device selection"
773766 msgstr ""
774767
775 #: ../src/resources/ui/virt-viewer.ui.h:4
768 #: src/resources/ui/virt-viewer.ui:62
776769 msgid "Smartcard insertion"
777770 msgstr "સ્માર્ટકાર્ડ નિવેશ"
778771
779 #: ../src/resources/ui/virt-viewer.ui.h:5
772 #: src/resources/ui/virt-viewer.ui:72
780773 msgid "Smartcard removal"
781774 msgstr "સ્માર્ટકાર્ડ નિરાકરણ"
782775
783 #: ../src/resources/ui/virt-viewer.ui.h:6
776 #: src/resources/ui/virt-viewer.ui:80
784777 msgid "_Change CD"
785778 msgstr ""
786779
787 #: ../src/resources/ui/virt-viewer.ui.h:7
780 #: src/resources/ui/virt-viewer.ui:90
788781 msgid "_Preferences"
789782 msgstr ""
790783
791 #: ../src/resources/ui/virt-viewer.ui.h:8
784 #: src/resources/ui/virt-viewer.ui:103
792785 msgid "_Quit"
793786 msgstr ""
794787
795 #: ../src/resources/ui/virt-viewer.ui.h:9
788 #: src/resources/ui/virt-viewer.ui:119
789 msgid "_Machine"
790 msgstr ""
791
792 #: src/resources/ui/virt-viewer.ui:129
793 msgid "_Pause"
794 msgstr ""
795
796 #: src/resources/ui/virt-viewer.ui:144
797 msgid "_Reset"
798 msgstr ""
799
800 #: src/resources/ui/virt-viewer.ui:153
801 msgid "_Power down"
802 msgstr ""
803
804 #: src/resources/ui/virt-viewer.ui:167
796805 msgid "_View"
797806 msgstr "દૃશ્ય (_V)"
798807
799 #: ../src/resources/ui/virt-viewer.ui.h:10
808 #: src/resources/ui/virt-viewer.ui:180
800809 msgid "_Full screen"
801810 msgstr ""
802811
803 #: ../src/resources/ui/virt-viewer.ui.h:11
812 #: src/resources/ui/virt-viewer.ui:191
804813 msgid "_Zoom"
805814 msgstr "નાનુંમોટુ કરો (_Z)"
806815
807 #: ../src/resources/ui/virt-viewer.ui.h:12
816 #: src/resources/ui/virt-viewer.ui:201
808817 msgid "Zoom _In"
809818 msgstr ""
810819
811 #: ../src/resources/ui/virt-viewer.ui.h:13
820 #: src/resources/ui/virt-viewer.ui:212
812821 msgid "Zoom _Out"
813822 msgstr ""
814823
815 #: ../src/resources/ui/virt-viewer.ui.h:14
824 #: src/resources/ui/virt-viewer.ui:229
816825 msgid "_Normal Size"
817826 msgstr ""
818827
819 #: ../src/resources/ui/virt-viewer.ui.h:15
828 #: src/resources/ui/virt-viewer.ui:246
820829 msgid "_Displays"
821830 msgstr ""
822831
823 #: ../src/resources/ui/virt-viewer.ui.h:16
832 #: src/resources/ui/virt-viewer.ui:255
824833 msgid "Release cursor"
825834 msgstr "પ્રકાશન કર્સર"
826835
827 #: ../src/resources/ui/virt-viewer.ui.h:17
836 #: src/resources/ui/virt-viewer.ui:270
828837 msgid "_Send key"
829838 msgstr "કી મોકલો (_S)"
830839
831 #: ../src/resources/ui/virt-viewer.ui.h:18
840 #: src/resources/ui/virt-viewer.ui:279
832841 msgid "_Help"
833842 msgstr "મદદ (_H)"
834843
835 #: ../src/resources/ui/virt-viewer.ui.h:19
844 #: src/resources/ui/virt-viewer.ui:290
836845 msgid "_Guest Details"
837846 msgstr ""
838847
839 #: ../src/resources/ui/virt-viewer.ui.h:20
848 #: src/resources/ui/virt-viewer.ui:297
840849 msgid "_About"
841850 msgstr ""
842851
843 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
852 #: src/resources/ui/virt-viewer-guest-details.ui:7
844853 msgid "Guest Details"
845854 msgstr ""
846855
847 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
856 #: src/resources/ui/virt-viewer-guest-details.ui:56
848857 msgid "Name:"
849858 msgstr ""
850859
851 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
860 #: src/resources/ui/virt-viewer-guest-details.ui:68
852861 msgid "GUID:"
853862 msgstr ""
854863
855 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
864 #: src/resources/ui/virt-viewer-vm-connection.ui:7
856865 msgid "Choose a virtual machine"
857866 msgstr ""
858867
859 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
868 #: src/resources/ui/virt-viewer-vm-connection.ui:96
860869 msgid "Available virtual machines"
861870 msgstr ""
862871
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
872 #: src/resources/ui/virt-viewer-preferences.ui:8
864873 msgid "Preferences"
865874 msgstr ""
866875
867 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
876 #: src/resources/ui/virt-viewer-preferences.ui:48
868877 msgid "Folder sharing"
869878 msgstr ""
870879
871 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
880 #: src/resources/ui/virt-viewer-preferences.ui:70
872881 msgid "Share folder"
873882 msgstr ""
874883
875 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
884 #: src/resources/ui/virt-viewer-preferences.ui:82
876885 msgid "Read-only"
877886 msgstr ""
878887
879 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
888 #: src/resources/ui/virt-viewer-preferences.ui:96
889 msgid "Share clipboard"
890 msgstr ""
891
892 #: src/resources/ui/virt-viewer-preferences.ui:132
880893 msgid "Spice"
881894 msgstr ""
895
896 #~ msgid "virt-manager.org"
897 #~ msgstr "virt-manager.org"
Binary diff not shown
+267
-254
po/he.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Hebrew\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
17 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
17 "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 2 : 1;\n"
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
442 msgstr[2] ""
443
444 #: src/virt-viewer-file-transfer-dialog.c:225
445 msgid "An error caused the following file transfers to fail:"
446 msgstr ""
447
448 #: src/virt-viewer-main.c:38
463449 msgid "Virt Viewer"
464450 msgstr ""
465451
466 #: ../src/virt-viewer-session-spice.c:704
452 #: src/virt-viewer-session-spice.c:731
467453 msgid "Invalid password"
468454 msgstr ""
469455
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
456 #: src/virt-viewer-session-spice.c:829
472457 msgid "Select USB devices for redirection"
473458 msgstr ""
474459
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
460 #: src/virt-viewer-session-spice.c:831
461 #: src/resources/ui/virt-viewer-guest-details.ui:23
477462 msgid "_Close"
478463 msgstr ""
479464
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
465 #: src/virt-viewer-session-spice.c:1019
466 msgid "Serial"
467 msgstr ""
468
469 #: src/virt-viewer-session-spice.c:1021
470 msgid "QEMU human monitor"
471 msgstr ""
472
473 #: src/virt-viewer-session-spice.c:1023
474 msgid "QEMU debug console"
475 msgstr ""
476
477 #: src/virt-viewer-session-vnc.c:158
478 #, c-format
479 msgid "Unsupported authentication type %u"
480 msgstr ""
481
482 #: src/virt-viewer-vm-connection.c:64
486483 msgid "No running virtual machine found"
487484 msgstr ""
488485
489 #: ../src/virt-viewer-vm-connection.c:93
486 #: src/virt-viewer-vm-connection.c:93
490487 msgid "No virtual machine was chosen"
491488 msgstr ""
492489
493 #: ../src/virt-viewer-window.c:544
490 #: src/virt-viewer-window.c:621
494491 msgid "Ctrl+Alt+_Del"
495492 msgstr ""
496493
497 #: ../src/virt-viewer-window.c:545
494 #: src/virt-viewer-window.c:622
498495 msgid "Ctrl+Alt+_Backspace"
499496 msgstr ""
500497
501 #: ../src/virt-viewer-window.c:547
498 #: src/virt-viewer-window.c:624
502499 msgid "Ctrl+Alt+F_1"
503500 msgstr ""
504501
505 #: ../src/virt-viewer-window.c:548
502 #: src/virt-viewer-window.c:625
506503 msgid "Ctrl+Alt+F_2"
507504 msgstr ""
508505
509 #: ../src/virt-viewer-window.c:549
506 #: src/virt-viewer-window.c:626
510507 msgid "Ctrl+Alt+F_3"
511508 msgstr ""
512509
513 #: ../src/virt-viewer-window.c:550
510 #: src/virt-viewer-window.c:627
514511 msgid "Ctrl+Alt+F_4"
515512 msgstr ""
516513
517 #: ../src/virt-viewer-window.c:551
514 #: src/virt-viewer-window.c:628
518515 msgid "Ctrl+Alt+F_5"
519516 msgstr ""
520517
521 #: ../src/virt-viewer-window.c:552
518 #: src/virt-viewer-window.c:629
522519 msgid "Ctrl+Alt+F_6"
523520 msgstr ""
524521
525 #: ../src/virt-viewer-window.c:553
522 #: src/virt-viewer-window.c:630
526523 msgid "Ctrl+Alt+F_7"
527524 msgstr ""
528525
529 #: ../src/virt-viewer-window.c:554
526 #: src/virt-viewer-window.c:631
530527 msgid "Ctrl+Alt+F_8"
531528 msgstr ""
532529
533 #: ../src/virt-viewer-window.c:555
530 #: src/virt-viewer-window.c:632
534531 msgid "Ctrl+Alt+F_9"
535532 msgstr ""
536533
537 #: ../src/virt-viewer-window.c:556
534 #: src/virt-viewer-window.c:633
538535 msgid "Ctrl+Alt+F1_0"
539536 msgstr ""
540537
541 #: ../src/virt-viewer-window.c:557
538 #: src/virt-viewer-window.c:634
542539 msgid "Ctrl+Alt+F11"
543540 msgstr ""
544541
545 #: ../src/virt-viewer-window.c:558
542 #: src/virt-viewer-window.c:635
546543 msgid "Ctrl+Alt+F12"
547544 msgstr ""
548545
549 #: ../src/virt-viewer-window.c:953
546 #: src/virt-viewer-window.c:637
547 msgid "_PrintScreen"
548 msgstr ""
549
550 #: src/virt-viewer-window.c:1030
550551 #, c-format
551552 msgid "Unable to determine image format for file '%s'"
552553 msgstr ""
553554
554 #: ../src/virt-viewer-window.c:980
555 #: src/virt-viewer-window.c:1053
556 msgid "Save screenshot"
557 msgstr ""
558
559 #: src/virt-viewer-window.c:1057
555560 msgid "_Save"
556561 msgstr ""
557562
558 #: ../src/virt-viewer-window.c:988
563 #: src/virt-viewer-window.c:1065
559564 msgid "Screenshot.png"
560565 msgstr ""
561566
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
567 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563568 msgid "Unknown"
564569 msgstr ""
565570
566 #: ../src/virt-viewer-window.c:1152
571 #: src/virt-viewer-window.c:1237
567572 msgid "Unable to connnect to oVirt"
568573 msgstr ""
569574
570 #: ../src/virt-viewer-window.c:1175
575 #: src/virt-viewer-window.c:1260
571576 msgid "Disconnect"
572577 msgstr ""
573578
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
579 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575580 msgid "USB device selection"
576581 msgstr ""
577582
578 #: ../src/virt-viewer-window.c:1193
583 #: src/virt-viewer-window.c:1278
579584 msgid "Send key combination"
580585 msgstr ""
581586
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
587 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583588 msgid "Leave fullscreen"
584589 msgstr ""
585590
586 #: ../src/virt-viewer-window.c:1279
591 #: src/virt-viewer-window.c:1364
587592 msgid "Ctrl+Alt"
588593 msgstr ""
589594
590 #: ../src/virt-viewer-window.c:1282
595 #: src/virt-viewer-window.c:1367
591596 #, c-format
592597 msgid "(Press %s to release pointer)"
593598 msgstr ""
594599
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
600 #: src/virt-viewer-window.c:1378
600601 #, c-format
601602 msgid "%s%s%s - %s"
602603 msgstr ""
603604
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
605 #: src/virt-viewer-window.c:1382
606606 msgid " "
607607 msgstr ""
608608
609 #: ../src/virt-viewer-file.c:862
609 #: src/virt-viewer-file.c:875
610610 #, c-format
611611 msgid ""
612612 "At least %s version %s is required to setup this connection, see %s for "
613613 "details"
614614 msgstr ""
615615
616 #: ../src/virt-viewer-file.c:870
616 #: src/virt-viewer-file.c:883
617617 #, c-format
618618 msgid "At least %s version %s is required to setup this connection"
619619 msgstr ""
620620
621 #: ../src/virt-viewer.c:133
621 #: src/virt-viewer.c:131
622622 msgid "Direct connection with no automatic tunnels"
623623 msgstr ""
624624
625 #: ../src/virt-viewer.c:135
625 #: src/virt-viewer.c:133
626626 msgid "Attach to the local display using libvirt"
627627 msgstr ""
628628
629 #: ../src/virt-viewer.c:137
629 #: src/virt-viewer.c:135
630630 msgid "Connect to hypervisor"
631631 msgstr ""
632632
633 #: ../src/virt-viewer.c:139
633 #: src/virt-viewer.c:137
634634 msgid "Wait for domain to start"
635635 msgstr ""
636636
637 #: ../src/virt-viewer.c:141
637 #: src/virt-viewer.c:139
638638 msgid "Reconnect to domain upon restart"
639639 msgstr ""
640640
641 #: ../src/virt-viewer.c:143
641 #: src/virt-viewer.c:141
642642 msgid "Select the virtual machine only by its name"
643643 msgstr ""
644644
645 #: ../src/virt-viewer.c:145
645 #: src/virt-viewer.c:143
646646 msgid "Select the virtual machine only by its id"
647647 msgstr ""
648648
649 #: ../src/virt-viewer.c:147
649 #: src/virt-viewer.c:145
650650 msgid "Select the virtual machine only by its uuid"
651651 msgstr ""
652652
653 #: ../src/virt-viewer.c:154
653 #: src/virt-viewer.c:152
654654 msgid "Virtual machine graphical console"
655655 msgstr ""
656656
657 #: ../src/virt-viewer.c:173
657 #: src/virt-viewer.c:171
658658 #, c-format
659659 msgid ""
660660 "\n"
662662 "\n"
663663 msgstr ""
664664
665 #: ../src/virt-viewer.c:185
665 #: src/virt-viewer.c:183
666666 #, c-format
667667 msgid ""
668668 "\n"
670670 "\n"
671671 msgstr ""
672672
673 #: ../src/virt-viewer.c:300
673 #: src/virt-viewer.c:296
674674 msgid "Waiting for guest domain to re-start"
675675 msgstr ""
676676
677 #: ../src/virt-viewer.c:554
677 #: src/virt-viewer.c:550
678678 #, c-format
679679 msgid "Cannot determine the graphic type for the guest %s"
680680 msgstr ""
681681
682 #: ../src/virt-viewer.c:603
682 #: src/virt-viewer.c:599
683683 #, c-format
684684 msgid "Cannot determine the host for the guest %s"
685685 msgstr ""
686686
687 #: ../src/virt-viewer.c:631
687 #: src/virt-viewer.c:627
688688 #, c-format
689689 msgid "Guest '%s' is not reachable"
690690 msgstr ""
691691
692 #: ../src/virt-viewer.c:860
692 #: src/virt-viewer.c:856
693693 #, c-format
694694 msgid "Virtual machine %s is not running"
695695 msgstr ""
696696
697 #: ../src/virt-viewer.c:884
697 #: src/virt-viewer.c:881
698698 msgid "Waiting for libvirt to start"
699699 msgstr ""
700700
701 #: ../src/virt-viewer.c:888
701 #: src/virt-viewer.c:885
702702 msgid "Finding guest domain"
703703 msgstr ""
704704
705 #: ../src/virt-viewer.c:892
705 #: src/virt-viewer.c:889
706706 msgid "Waiting for guest domain to be created"
707707 msgstr ""
708708
709 #: ../src/virt-viewer.c:918
709 #: src/virt-viewer.c:921
710710 msgid "Checking guest domain status"
711711 msgstr ""
712712
713 #: ../src/virt-viewer.c:921
713 #: src/virt-viewer.c:924
714714 msgid "Cannot get guest state"
715715 msgstr ""
716716
717 #: ../src/virt-viewer.c:927
717 #: src/virt-viewer.c:930
718718 msgid "Waiting for guest domain to start"
719719 msgstr ""
720720
721 #: ../src/virt-viewer.c:1040
721 #: src/virt-viewer.c:1044
722722 #, c-format
723723 msgid "Unable to connect to libvirt with URI: %s."
724724 msgstr ""
725725
726 #: ../src/virt-viewer.c:1041
726 #: src/virt-viewer.c:1045
727727 msgid "[none]"
728728 msgstr ""
729729
730 #: ../src/virt-viewer.c:1048
730 #: src/virt-viewer.c:1052
731731 msgid "Authentication failed."
732732 msgstr ""
733733
734 #: ../src/virt-viewer.c:1108
734 #: src/virt-viewer.c:1112
735735 msgid "Failed to connect: "
736736 msgstr ""
737737
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
738 #: src/resources/ui/virt-viewer.ui:28
746739 msgid "_File"
747740 msgstr ""
748741
749 #: ../src/resources/ui/virt-viewer.ui.h:2
742 #: src/resources/ui/virt-viewer.ui:41
750743 msgid "_Screenshot"
751744 msgstr ""
752745
753 #: ../src/resources/ui/virt-viewer.ui.h:3
746 #: src/resources/ui/virt-viewer.ui:52
754747 msgid "_USB device selection"
755748 msgstr ""
756749
757 #: ../src/resources/ui/virt-viewer.ui.h:4
750 #: src/resources/ui/virt-viewer.ui:62
758751 msgid "Smartcard insertion"
759752 msgstr ""
760753
761 #: ../src/resources/ui/virt-viewer.ui.h:5
754 #: src/resources/ui/virt-viewer.ui:72
762755 msgid "Smartcard removal"
763756 msgstr ""
764757
765 #: ../src/resources/ui/virt-viewer.ui.h:6
758 #: src/resources/ui/virt-viewer.ui:80
766759 msgid "_Change CD"
767760 msgstr ""
768761
769 #: ../src/resources/ui/virt-viewer.ui.h:7
762 #: src/resources/ui/virt-viewer.ui:90
770763 msgid "_Preferences"
771764 msgstr ""
772765
773 #: ../src/resources/ui/virt-viewer.ui.h:8
766 #: src/resources/ui/virt-viewer.ui:103
774767 msgid "_Quit"
775768 msgstr ""
776769
777 #: ../src/resources/ui/virt-viewer.ui.h:9
770 #: src/resources/ui/virt-viewer.ui:119
771 msgid "_Machine"
772 msgstr ""
773
774 #: src/resources/ui/virt-viewer.ui:129
775 msgid "_Pause"
776 msgstr ""
777
778 #: src/resources/ui/virt-viewer.ui:144
779 msgid "_Reset"
780 msgstr ""
781
782 #: src/resources/ui/virt-viewer.ui:153
783 msgid "_Power down"
784 msgstr ""
785
786 #: src/resources/ui/virt-viewer.ui:167
778787 msgid "_View"
779788 msgstr ""
780789
781 #: ../src/resources/ui/virt-viewer.ui.h:10
790 #: src/resources/ui/virt-viewer.ui:180
782791 msgid "_Full screen"
783792 msgstr ""
784793
785 #: ../src/resources/ui/virt-viewer.ui.h:11
794 #: src/resources/ui/virt-viewer.ui:191
786795 msgid "_Zoom"
787796 msgstr ""
788797
789 #: ../src/resources/ui/virt-viewer.ui.h:12
798 #: src/resources/ui/virt-viewer.ui:201
790799 msgid "Zoom _In"
791800 msgstr ""
792801
793 #: ../src/resources/ui/virt-viewer.ui.h:13
802 #: src/resources/ui/virt-viewer.ui:212
794803 msgid "Zoom _Out"
795804 msgstr ""
796805
797 #: ../src/resources/ui/virt-viewer.ui.h:14
806 #: src/resources/ui/virt-viewer.ui:229
798807 msgid "_Normal Size"
799808 msgstr ""
800809
801 #: ../src/resources/ui/virt-viewer.ui.h:15
810 #: src/resources/ui/virt-viewer.ui:246
802811 msgid "_Displays"
803812 msgstr ""
804813
805 #: ../src/resources/ui/virt-viewer.ui.h:16
814 #: src/resources/ui/virt-viewer.ui:255
806815 msgid "Release cursor"
807816 msgstr ""
808817
809 #: ../src/resources/ui/virt-viewer.ui.h:17
818 #: src/resources/ui/virt-viewer.ui:270
810819 msgid "_Send key"
811820 msgstr ""
812821
813 #: ../src/resources/ui/virt-viewer.ui.h:18
822 #: src/resources/ui/virt-viewer.ui:279
814823 msgid "_Help"
815824 msgstr ""
816825
817 #: ../src/resources/ui/virt-viewer.ui.h:19
826 #: src/resources/ui/virt-viewer.ui:290
818827 msgid "_Guest Details"
819828 msgstr ""
820829
821 #: ../src/resources/ui/virt-viewer.ui.h:20
830 #: src/resources/ui/virt-viewer.ui:297
822831 msgid "_About"
823832 msgstr ""
824833
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
834 #: src/resources/ui/virt-viewer-guest-details.ui:7
826835 msgid "Guest Details"
827836 msgstr ""
828837
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
838 #: src/resources/ui/virt-viewer-guest-details.ui:56
830839 msgid "Name:"
831840 msgstr ""
832841
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
842 #: src/resources/ui/virt-viewer-guest-details.ui:68
834843 msgid "GUID:"
835844 msgstr ""
836845
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
846 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838847 msgid "Choose a virtual machine"
839848 msgstr ""
840849
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
850 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842851 msgid "Available virtual machines"
843852 msgstr ""
844853
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
854 #: src/resources/ui/virt-viewer-preferences.ui:8
846855 msgid "Preferences"
847856 msgstr ""
848857
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
858 #: src/resources/ui/virt-viewer-preferences.ui:48
850859 msgid "Folder sharing"
851860 msgstr ""
852861
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
862 #: src/resources/ui/virt-viewer-preferences.ui:70
854863 msgid "Share folder"
855864 msgstr ""
856865
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
866 #: src/resources/ui/virt-viewer-preferences.ui:82
858867 msgid "Read-only"
859868 msgstr ""
860869
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
870 #: src/resources/ui/virt-viewer-preferences.ui:96
871 msgid "Share clipboard"
872 msgstr ""
873
874 #: src/resources/ui/virt-viewer-preferences.ui:132
862875 msgid "Spice"
863876 msgstr ""
Binary diff not shown
+269
-253
po/hi.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
88 # Rajesh Ranjan <rranjan@redhat.com>, 2012-2013
99 msgid ""
1010 msgstr ""
11 "Project-Id-Version: PACKAGE VERSION\n"
12 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
14 "PO-Revision-Date: 2015-02-20 08:09-0500\n"
11 "Project-Id-Version: virt-viewer 9.0\n"
12 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
13 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
14 "PO-Revision-Date: 2015-02-20 08:09+0000\n"
1515 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1616 "Language-Team: Hindi (http://www.transifex.com/projects/p/virt-viewer/"
1717 "language/hi/)\n"
2020 "Content-Type: text/plain; charset=UTF-8\n"
2121 "Content-Transfer-Encoding: 8bit\n"
2222 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23 "X-Generator: Zanata 3.9.6\n"
24
25 #: ../data/remote-viewer.appdata.xml.in.h:1
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
23 "X-Generator: Zanata 4.6.2\n"
24
25 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
26 #: src/remote-viewer-main.c:39
2727 msgid "Remote Viewer"
2828 msgstr "दूरस्थ दर्शक"
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:2
30 #: data/remote-viewer.appdata.xml.in:7
3131 msgid "Remotely access virtual machines"
3232 msgstr ""
3333
34 #: ../data/remote-viewer.appdata.xml.in.h:3
34 #: data/remote-viewer.appdata.xml.in:9
3535 msgid ""
3636 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3737 "time it supports guest OS using the VNC or SPICE protocols. Further "
4040 "using SSL/TLS encryption."
4141 msgstr ""
4242
43 #: ../data/remote-viewer.desktop.in.h:2
43 #: data/remote-viewer.desktop.in:4
4444 msgid "Access remote desktops"
4545 msgstr "दूरस्थ डेस्कटॉप की पहुँच लें"
4646
47 #: ../data/virt-viewer-mime.xml.in.h:1
48 msgid "Virt-Viewer connection file"
49 msgstr "Virt-Viewer कनेक्शन फ़ाइल"
50
51 #: ../src/remote-viewer-iso-list-dialog.c:160
47 #: src/remote-viewer-iso-list-dialog.c:156
5248 msgid "Failed to fetch CD names"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:212
51 #: src/remote-viewer-iso-list-dialog.c:205
5652 msgid "<b>Loading...</b>"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:285
55 #: src/remote-viewer-iso-list-dialog.c:276
6056 msgid "Refresh"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:286
59 #: src/remote-viewer-iso-list-dialog.c:277
6460 msgid "Close"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:306
63 #: src/remote-viewer-iso-list-dialog.c:297
6864 msgid "Unspecified error"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:328
67 #: src/remote-viewer-iso-list-dialog.c:318
7268 msgid "Failed to change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer-iso-list-dialog.c:380
71 #: src/remote-viewer-iso-list-dialog.c:370
7672 msgid "Change CD"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:118
75 #: src/remote-viewer.c:116
8076 msgid "Set window title"
8177 msgstr "विंडो शीर्षक सेट करें"
8278
83 #: ../src/remote-viewer.c:125
79 #: src/remote-viewer.c:123
8480 msgid "Remote viewer client"
8581 msgstr ""
8682
87 #: ../src/remote-viewer.c:150
88 #, c-format
83 #: src/remote-viewer.c:148
8984 msgid ""
9085 "\n"
9186 "Error: can't handle multiple URIs\n"
9287 "\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
90 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9691 #, c-format
9792 msgid "Run '%s --help' to see a full list of available command line options\n"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:435
95 #: src/remote-viewer.c:429
10196 msgid "failed to parse ovirt uri"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
99 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
105100 msgid "Authentication was cancelled"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:480
103 #: src/remote-viewer.c:472
109104 #, c-format
110105 msgid "oVirt VM %s is not running"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:494
108 #: src/remote-viewer.c:486
114109 #, c-format
115110 msgid "oVirt VM %s has no display"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:520
113 #: src/remote-viewer.c:512
119114 #, c-format
120115 msgid "oVirt VM %s has no host information"
121116 msgstr ""
122117
123 #: ../src/remote-viewer.c:531
124 #, c-format
125 msgid "oVirt VM %s has unknown display type: %d"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:713
118 #: src/remote-viewer.c:523
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %u"
121 msgstr ""
122
123 #: src/remote-viewer.c:690
124 msgid "Couldn't open oVirt session: "
125 msgstr ""
126
127 #: src/remote-viewer.c:718
129128 msgid "Failed to initiate connection"
130129 msgstr "कनेक्शन आरंभ करने में विफल"
131130
132 #: ../src/remote-viewer.c:742
131 #: src/remote-viewer.c:747
133132 msgid "No connection was chosen"
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:759
135 #: src/remote-viewer.c:764
137136 msgid "Failed to read stdin: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:776
139 #: src/remote-viewer.c:781
141140 #, c-format
142141 msgid "Invalid file %s: "
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:786
144 #: src/remote-viewer.c:791
146145 msgid "Cannot determine the connection type from URI"
147146 msgstr "यूआरआइ से कनेक्शन के प्रकार को तय नहीं कर सकता है"
148147
149 #: ../src/remote-viewer.c:792
150 msgid "Couldn't open oVirt session: "
151 msgstr ""
152
153 #: ../src/remote-viewer.c:815
148 #: src/remote-viewer.c:810
154149 #, c-format
155150 msgid "Unable to connect: %s"
156151 msgstr ""
157152
158 #.
159 #. * Local variables:
160 #. * c-indent-level: 4
161 #. * c-basic-offset: 4
162 #. * indent-tabs-mode: nil
163 #. * End:
164 #.
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
153 #: src/resources/ui/remote-viewer-connect.ui:6
166154 msgid "Connection details"
167155 msgstr "संबंध विवरण"
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
157 #: src/resources/ui/remote-viewer-connect.ui:24
170158 msgid "Connection _Address"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
161 #: src/resources/ui/remote-viewer-connect.ui:54
174162 msgid "For example, spice://foo.example.org:5900"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
165 #: src/resources/ui/remote-viewer-connect.ui:78
178166 msgid "Recent connections"
179167 msgstr ""
180168
181 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
182 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
183 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
184 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
169 #: src/resources/ui/remote-viewer-connect.ui:120
170 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
171 #: src/resources/ui/virt-viewer-vm-connection.ui:24
172 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
185173 msgid "_Cancel"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
189 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
176 #: src/resources/ui/remote-viewer-connect.ui:134
177 #: src/resources/ui/virt-viewer-vm-connection.ui:38
190178 msgid "C_onnect"
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
181 #: src/resources/ui/remote-viewer-iso-list.ui:28
194182 msgid "Loading..."
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
185 #: src/resources/ui/remote-viewer-iso-list.ui:78
198186 msgid "Select ISO"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
189 #: src/resources/ui/remote-viewer-iso-list.ui:116
202190 msgid "Selected"
203191 msgstr ""
204192
205 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
206 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
193 #: src/resources/ui/remote-viewer-iso-list.ui:129
194 #: src/resources/ui/virt-viewer-vm-connection.ui:72
207195 msgid "Name"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:1
198 #: src/resources/ui/virt-viewer-about.ui:7
211199 msgid "About Virt-Viewer"
212200 msgstr ""
213201
214 #: ../src/resources/ui/virt-viewer-about.ui.h:2
202 #: src/resources/ui/virt-viewer-about.ui:16
215203 msgid ""
216204 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
217205 "Copyright (C) 2007-2014 Red Hat, Inc."
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:4
208 #: src/resources/ui/virt-viewer-about.ui:18
221209 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
222210 msgstr "एक दूरस्थ डेस्कटॉप ग्राहक जीतीके-वीएनसी, स्पाइस-जीटीके और लिब्विर्ट के साथ निर्मित"
223211
224 #: ../src/resources/ui/virt-viewer-about.ui.h:5
225 msgid "virt-manager.org"
226 msgstr "virt-manager.org"
227
228 #: ../src/resources/ui/virt-viewer-about.ui.h:6
212 #: src/resources/ui/virt-viewer-about.ui:20
213 msgid "gitlab.com/virt-viewer/virt-viewer"
214 msgstr ""
215
216 #: src/resources/ui/virt-viewer-about.ui:21
229217 msgid ""
230218 "This program is free software; you can redistribute it and/or modify\n"
231219 "it under the terms of the GNU General Public License as published by\n"
253241 "नहीं, फ्री सॉफ्टवेयर फाउंडेशन को लिखे, Inc. 59 मंदिर प्लेस, 330 सूट, बोस्टन, एमए "
254242 "02111-1307, संयुक्त राज्य अमेरिका\n"
255243
256 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244 #: src/resources/ui/virt-viewer-about.ui:38
257245 msgid "The Fedora Translation Team"
258246 msgstr "फेडोरा अनुवाद टीम"
259247
260 #: ../src/virt-viewer-app.c:459
248 #: src/virt-viewer-app.c:594
261249 msgid "Do you want to close the session?"
262250 msgstr "क्या आप इस सत्र को आयात बंद करना चाहते हैं?"
263251
264 #: ../src/virt-viewer-app.c:461
252 #: src/virt-viewer-app.c:596
265253 msgid "Do not ask me again"
266254 msgstr "मुझे फिर मत पूछें"
267255
268 #: ../src/virt-viewer-app.c:655
256 #: src/virt-viewer-app.c:767
269257 #, c-format
270258 msgid "Address is too long for unix socket_path: %s"
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:665
261 #: src/virt-viewer-app.c:777
274262 #, c-format
275263 msgid "Creating unix socket failed: %s"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:671
266 #: src/virt-viewer-app.c:783
279267 #, c-format
280268 msgid "Connecting to unix socket failed: %s"
281269 msgstr ""
282270
283 #: ../src/virt-viewer-app.c:955
271 #: src/virt-viewer-app.c:1077
284272 #, c-format
285273 msgid "Waiting for display %d..."
286274 msgstr " %d प्रदर्शन के लिए प्रतीक्षा कर रहा है ..."
287275
288 #: ../src/virt-viewer-app.c:1062
276 #: src/virt-viewer-app.c:1193
289277 #, c-format
290278 msgid "Unsupported graphic type '%s'"
291279 msgstr ""
292280
293 #: ../src/virt-viewer-app.c:1146
281 #: src/virt-viewer-app.c:1277
294282 msgid "Connect to ssh failed."
295283 msgstr "सश से कनेक्ट करने में विफल."
296284
297 #: ../src/virt-viewer-app.c:1161
285 #: src/virt-viewer-app.c:1292
298286 #, c-format
299287 msgid "Can't connect to channel: %s"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1163
290 #: src/virt-viewer-app.c:1294
303291 msgid "only SSH or unix socket connection supported."
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1176
294 #: src/virt-viewer-app.c:1311
307295 msgid "Connect to channel unsupported."
308296 msgstr " चैनल से कनेक्ट करना असहायक"
309297
310 #: ../src/virt-viewer-app.c:1238
298 #: src/virt-viewer-app.c:1376
311299 msgid "Display can only be attached through libvirt with --attach"
312300 msgstr ""
313301
314 #: ../src/virt-viewer-app.c:1263
302 #: src/virt-viewer-app.c:1401
315303 msgid "Connecting to graphic server"
316304 msgstr "ग्राफ़िक सर्वर से कनेक्ट हो रहा है."
317305
318 #: ../src/virt-viewer-app.c:1362
306 #: src/virt-viewer-app.c:1500
319307 msgid "Guest domain has shutdown"
320308 msgstr "अतिथि के डोमेन को शटडाउन किया है"
321309
322 #: ../src/virt-viewer-app.c:1423
310 #: src/virt-viewer-app.c:1561
323311 msgid "Connected to graphic server"
324312 msgstr "ग्राफ़िक सर्वर से जुड़ा"
325313
326 #: ../src/virt-viewer-app.c:1452
314 #: src/virt-viewer-app.c:1590
327315 #, c-format
328316 msgid "Unable to connect to the graphic server %s"
329317 msgstr "%s ग्राफ़िक सर्वर से कनेक्ट करने में असमर्थ"
330318
331 #: ../src/virt-viewer-app.c:1478
319 #: src/virt-viewer-app.c:1616
332320 #, c-format
333321 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1492
324 #: src/virt-viewer-app.c:1630
337325 #, c-format
338326 msgid "Unable to authenticate with remote desktop server: %s"
339327 msgstr "दूरस्थ डेस्कटॉप सर्वर के साथ सत्यापन करने में असमर्थ : %s"
340328
341 #: ../src/virt-viewer-app.c:1500
329 #: src/virt-viewer-app.c:1638
342330 #, c-format
343331 msgid "USB redirection error: %s"
344332 msgstr "यूएसबी पुनर्निर्देशन त्रुटि : %s"
345333
346 #: ../src/virt-viewer-app.c:1834
334 #: src/virt-viewer-app.c:2026
347335 #, c-format
348336 msgid "Zoom level must be within %d-%d\n"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:1887
339 #: src/virt-viewer-app.c:2081
352340 #, c-format
353341 msgid "%s\n"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:1897
344 #: src/virt-viewer-app.c:2091
357345 #, c-format
358346 msgid "%s version %s"
359347 msgstr ""
360348
361 #: ../src/virt-viewer-app.c:2321
349 #: src/virt-viewer-app.c:2545
362350 #, c-format
363351 msgid "Display _%d"
364352 msgstr ""
365353
366 #: ../src/virt-viewer-app.c:2577
354 #: src/virt-viewer-app.c:2829
367355 #, c-format
368356 msgid "Invalid kiosk-quit argument: %s"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2588
359 #: src/virt-viewer-app.c:2840
372360 msgid "Display version information"
373361 msgstr "संस्करण की जानकारी दिखाता है"
374362
375 #: ../src/virt-viewer-app.c:2590
363 #: src/virt-viewer-app.c:2842
376364 msgid "Zoom level of window, in percentage"
377365 msgstr "विंडो का जूम स्तर, प्रतिशत में"
378366
379 #: ../src/virt-viewer-app.c:2592
367 #: src/virt-viewer-app.c:2844
380368 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2594
371 #: src/virt-viewer-app.c:2846
384372 msgid "Customise hotkeys"
385373 msgstr "हॉटकी मनपसंद बनाएँ"
386374
387 #: ../src/virt-viewer-app.c:2596
375 #: src/virt-viewer-app.c:2848
388376 msgid "Enable kiosk mode"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-app.c:2598
379 #: src/virt-viewer-app.c:2850
392380 msgid "Quit on given condition in kiosk mode"
393381 msgstr ""
394382
395 #: ../src/virt-viewer-app.c:2598
383 #: src/virt-viewer-app.c:2850
396384 msgid "<never|on-disconnect>"
397385 msgstr ""
398386
399 #: ../src/virt-viewer-app.c:2600
387 #: src/virt-viewer-app.c:2852
400388 msgid "Display verbose information"
401389 msgstr " वर्बोज की जानकारी दिखाता है"
402390
403 #: ../src/virt-viewer-app.c:2602
391 #: src/virt-viewer-app.c:2854
404392 msgid "Display debugging information"
405393 msgstr "डिबगिंग सूचना दिखाता है"
406394
407 #: ../src/virt-viewer-auth.c:89
395 #: src/virt-viewer-auth.c:89
408396 #, c-format
409397 msgid ""
410398 "Authentication is required for the %s connection to:\n"
413401 "\n"
414402 msgstr ""
415403
416 #: ../src/virt-viewer-auth.c:93
404 #: src/virt-viewer-auth.c:93
417405 #, c-format
418406 msgid "Authentication is required for the %s connection:\n"
419407 msgstr ""
420408
421 #.
422 #. * Local variables:
423 #. * c-indent-level: 4
424 #. * c-basic-offset: 4
425 #. * indent-tabs-mode: nil
426 #. * End:
427 #.
428 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
409 #: src/resources/ui/virt-viewer-auth.ui:7
429410 msgid "Authentication required"
430411 msgstr "सत्यापन की आवश्यकता"
431412
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
413 #: src/resources/ui/virt-viewer-auth.ui:42
433414 msgid "_OK"
434415 msgstr ""
435416
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
437 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
438 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
417 #: src/resources/ui/virt-viewer-auth.ui:71
418 #: src/resources/ui/virt-viewer-guest-details.ui:82
419 #: src/resources/ui/virt-viewer-guest-details.ui:96
420 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
439421 msgid "label"
440422 msgstr "लेबल"
441423
442 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
424 #: src/resources/ui/virt-viewer-auth.ui:93
443425 msgid "Password:"
444426 msgstr "कूटशब्द:"
445427
446 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
428 #: src/resources/ui/virt-viewer-auth.ui:105
447429 msgid "Username:"
448430 msgstr "उपयोगकर्ता नाम:"
449431
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
432 #: src/resources/ui/virt-viewer-auth.ui:137
451433 msgid "Show password"
452434 msgstr ""
453435
454 #: ../src/virt-viewer-display-vnc.c:134
436 #: src/virt-viewer-display-vnc.c:130
455437 msgid "VNC does not provide GUID"
456438 msgstr ""
457439
458 #: ../src/virt-viewer-file-transfer-dialog.c:128
440 #: src/virt-viewer-display-vte.c:181
441 msgid "Console support is compiled out!"
442 msgstr ""
443
444 #: src/virt-viewer-file-transfer-dialog.c:124
459445 msgid "File Transfers"
460446 msgstr ""
461447
462 #: ../src/virt-viewer-file-transfer-dialog.c:154
448 #: src/virt-viewer-file-transfer-dialog.c:150
463449 msgid "Transferring 1 file..."
464450 msgstr ""
465451
466 #: ../src/virt-viewer-file-transfer-dialog.c:156
467 #, c-format
468 msgid "Transferring %d file of %d..."
469 msgid_plural "Transferring %d files of %d..."
452 #: src/virt-viewer-file-transfer-dialog.c:152
453 #, c-format
454 msgid "Transferring %u file of %u..."
455 msgid_plural "Transferring %u files of %u..."
470456 msgstr[0] ""
471
472 #: ../src/virt-viewer-file-transfer-dialog.c:228
473 #, c-format
474 msgid "An error caused the following file transfers to fail:%s"
475 msgstr ""
476
477 #: ../src/virt-viewer-main.c:38
457 msgstr[1] ""
458
459 #: src/virt-viewer-file-transfer-dialog.c:225
460 msgid "An error caused the following file transfers to fail:"
461 msgstr ""
462
463 #: src/virt-viewer-main.c:38
478464 msgid "Virt Viewer"
479465 msgstr "वर्चुअल व्यूअर"
480466
481 #: ../src/virt-viewer-session-spice.c:704
467 #: src/virt-viewer-session-spice.c:731
482468 msgid "Invalid password"
483469 msgstr ""
484470
485 #. Create the widgets
486 #: ../src/virt-viewer-session-spice.c:802
471 #: src/virt-viewer-session-spice.c:829
487472 msgid "Select USB devices for redirection"
488473 msgstr "पुनर्निर्देशन के लिए यूएसबी उपकरणों का चयन करें"
489474
490 #: ../src/virt-viewer-session-spice.c:804
491 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
475 #: src/virt-viewer-session-spice.c:831
476 #: src/resources/ui/virt-viewer-guest-details.ui:23
492477 msgid "_Close"
493478 msgstr ""
494479
495 #: ../src/virt-viewer-session-vnc.c:162
496 #, c-format
497 msgid "Unsupported authentication type %d"
498 msgstr "असहायक सत्यापन के प्रकार %d"
499
500 #: ../src/virt-viewer-vm-connection.c:64
480 #: src/virt-viewer-session-spice.c:1019
481 msgid "Serial"
482 msgstr ""
483
484 #: src/virt-viewer-session-spice.c:1021
485 msgid "QEMU human monitor"
486 msgstr ""
487
488 #: src/virt-viewer-session-spice.c:1023
489 msgid "QEMU debug console"
490 msgstr ""
491
492 #: src/virt-viewer-session-vnc.c:158
493 #, c-format
494 msgid "Unsupported authentication type %u"
495 msgstr ""
496
497 #: src/virt-viewer-vm-connection.c:64
501498 msgid "No running virtual machine found"
502499 msgstr ""
503500
504 #: ../src/virt-viewer-vm-connection.c:93
501 #: src/virt-viewer-vm-connection.c:93
505502 msgid "No virtual machine was chosen"
506503 msgstr ""
507504
508 #: ../src/virt-viewer-window.c:544
505 #: src/virt-viewer-window.c:621
509506 msgid "Ctrl+Alt+_Del"
510507 msgstr "Ctrl+Alt+_Del"
511508
512 #: ../src/virt-viewer-window.c:545
509 #: src/virt-viewer-window.c:622
513510 msgid "Ctrl+Alt+_Backspace"
514511 msgstr "Ctrl+Alt+_Backspace"
515512
516 #: ../src/virt-viewer-window.c:547
513 #: src/virt-viewer-window.c:624
517514 msgid "Ctrl+Alt+F_1"
518515 msgstr "Ctrl+Alt+F_1"
519516
520 #: ../src/virt-viewer-window.c:548
517 #: src/virt-viewer-window.c:625
521518 msgid "Ctrl+Alt+F_2"
522519 msgstr "Ctrl+Alt+F_2"
523520
524 #: ../src/virt-viewer-window.c:549
521 #: src/virt-viewer-window.c:626
525522 msgid "Ctrl+Alt+F_3"
526523 msgstr "Ctrl+Alt+F_3"
527524
528 #: ../src/virt-viewer-window.c:550
525 #: src/virt-viewer-window.c:627
529526 msgid "Ctrl+Alt+F_4"
530527 msgstr "Ctrl+Alt+F_4"
531528
532 #: ../src/virt-viewer-window.c:551
529 #: src/virt-viewer-window.c:628
533530 msgid "Ctrl+Alt+F_5"
534531 msgstr "Ctrl+Alt+F_5"
535532
536 #: ../src/virt-viewer-window.c:552
533 #: src/virt-viewer-window.c:629
537534 msgid "Ctrl+Alt+F_6"
538535 msgstr "Ctrl+Alt+F_6"
539536
540 #: ../src/virt-viewer-window.c:553
537 #: src/virt-viewer-window.c:630
541538 msgid "Ctrl+Alt+F_7"
542539 msgstr "Ctrl+Alt+F_7"
543540
544 #: ../src/virt-viewer-window.c:554
541 #: src/virt-viewer-window.c:631
545542 msgid "Ctrl+Alt+F_8"
546543 msgstr "Ctrl+Alt+F_8"
547544
548 #: ../src/virt-viewer-window.c:555
545 #: src/virt-viewer-window.c:632
549546 msgid "Ctrl+Alt+F_9"
550547 msgstr "Ctrl+Alt+F_9"
551548
552 #: ../src/virt-viewer-window.c:556
549 #: src/virt-viewer-window.c:633
553550 msgid "Ctrl+Alt+F1_0"
554551 msgstr "Ctrl+Alt+F1_0"
555552
556 #: ../src/virt-viewer-window.c:557
553 #: src/virt-viewer-window.c:634
557554 msgid "Ctrl+Alt+F11"
558555 msgstr "Ctrl+Alt+F11"
559556
560 #: ../src/virt-viewer-window.c:558
557 #: src/virt-viewer-window.c:635
561558 msgid "Ctrl+Alt+F12"
562559 msgstr "Ctrl+Alt+F12"
563560
564 #: ../src/virt-viewer-window.c:953
561 #: src/virt-viewer-window.c:637
562 msgid "_PrintScreen"
563 msgstr ""
564
565 #: src/virt-viewer-window.c:1030
565566 #, c-format
566567 msgid "Unable to determine image format for file '%s'"
567568 msgstr ""
568569
569 #: ../src/virt-viewer-window.c:980
570 #: src/virt-viewer-window.c:1053
571 msgid "Save screenshot"
572 msgstr ""
573
574 #: src/virt-viewer-window.c:1057
570575 msgid "_Save"
571576 msgstr ""
572577
573 #: ../src/virt-viewer-window.c:988
578 #: src/virt-viewer-window.c:1065
574579 msgid "Screenshot.png"
575580 msgstr ""
576581
577 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
582 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
578583 msgid "Unknown"
579584 msgstr ""
580585
581 #: ../src/virt-viewer-window.c:1152
586 #: src/virt-viewer-window.c:1237
582587 msgid "Unable to connnect to oVirt"
583588 msgstr ""
584589
585 #: ../src/virt-viewer-window.c:1175
590 #: src/virt-viewer-window.c:1260
586591 msgid "Disconnect"
587592 msgstr "डिस्कनेक्ट करें"
588593
589 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
594 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
590595 msgid "USB device selection"
591596 msgstr "यूएसबी उपकरण चयन"
592597
593 #: ../src/virt-viewer-window.c:1193
598 #: src/virt-viewer-window.c:1278
594599 msgid "Send key combination"
595600 msgstr "कुंजी संयोजन भेजें"
596601
597 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
602 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
598603 msgid "Leave fullscreen"
599604 msgstr "फुल स्क्रीन छोड़ दें"
600605
601 #: ../src/virt-viewer-window.c:1279
606 #: src/virt-viewer-window.c:1364
602607 msgid "Ctrl+Alt"
603608 msgstr "Ctrl+Alt"
604609
605 #: ../src/virt-viewer-window.c:1282
610 #: src/virt-viewer-window.c:1367
606611 #, c-format
607612 msgid "(Press %s to release pointer)"
608613 msgstr "(सूचक जारी करने के लिए %s दबाएँ)"
609614
610 #. translators:
611 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
612 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
613 #.
614 #: ../src/virt-viewer-window.c:1293
615 #: src/virt-viewer-window.c:1378
615616 #, c-format
616617 msgid "%s%s%s - %s"
617618 msgstr "%s%s%s - %s"
618619
619 #. translators: <space>
620 #: ../src/virt-viewer-window.c:1297
620 #: src/virt-viewer-window.c:1382
621621 msgid " "
622622 msgstr " "
623623
624 #: ../src/virt-viewer-file.c:862
624 #: src/virt-viewer-file.c:875
625625 #, c-format
626626 msgid ""
627627 "At least %s version %s is required to setup this connection, see %s for "
628628 "details"
629629 msgstr ""
630630
631 #: ../src/virt-viewer-file.c:870
631 #: src/virt-viewer-file.c:883
632632 #, c-format
633633 msgid "At least %s version %s is required to setup this connection"
634634 msgstr "कम से कम %s संस्करण %s इस कनेक्शन के सेटअप के लिए जरूरी है"
635635
636 #: ../src/virt-viewer.c:133
636 #: src/virt-viewer.c:131
637637 msgid "Direct connection with no automatic tunnels"
638638 msgstr " स्वचालित सुरंगों के साथ कोई भी प्रत्यक्ष कनेक्शन नहीं "
639639
640 #: ../src/virt-viewer.c:135
640 #: src/virt-viewer.c:133
641641 msgid "Attach to the local display using libvirt"
642642 msgstr "लिब्विर्ट का उपयोग करके स्थानीय डिस्प्ले का संलग्न करें"
643643
644 #: ../src/virt-viewer.c:137
644 #: src/virt-viewer.c:135
645645 msgid "Connect to hypervisor"
646646 msgstr "हाइपरविजर से कनेक्ट करें"
647647
648 #: ../src/virt-viewer.c:139
648 #: src/virt-viewer.c:137
649649 msgid "Wait for domain to start"
650650 msgstr "डोमेन को प्रारंभ करने के लिए प्रतीक्षा करें"
651651
652 #: ../src/virt-viewer.c:141
652 #: src/virt-viewer.c:139
653653 msgid "Reconnect to domain upon restart"
654654 msgstr "पुनः आरंभ होने पर डोमेन को फिर से जुड़ें"
655655
656 #: ../src/virt-viewer.c:143
656 #: src/virt-viewer.c:141
657657 msgid "Select the virtual machine only by its name"
658658 msgstr ""
659659
660 #: ../src/virt-viewer.c:145
660 #: src/virt-viewer.c:143
661661 msgid "Select the virtual machine only by its id"
662662 msgstr ""
663663
664 #: ../src/virt-viewer.c:147
664 #: src/virt-viewer.c:145
665665 msgid "Select the virtual machine only by its uuid"
666666 msgstr ""
667667
668 #: ../src/virt-viewer.c:154
668 #: src/virt-viewer.c:152
669669 msgid "Virtual machine graphical console"
670670 msgstr ""
671671
672 #: ../src/virt-viewer.c:173
672 #: src/virt-viewer.c:171
673673 #, c-format
674674 msgid ""
675675 "\n"
677677 "\n"
678678 msgstr ""
679679
680 #: ../src/virt-viewer.c:185
680 #: src/virt-viewer.c:183
681681 #, c-format
682682 msgid ""
683683 "\n"
685685 "\n"
686686 msgstr ""
687687
688 #: ../src/virt-viewer.c:300
688 #: src/virt-viewer.c:296
689689 msgid "Waiting for guest domain to re-start"
690690 msgstr "अतिथि डोमेन को फिर से प्रारंभ करने के लिए प्रतीक्षा करे "
691691
692 #: ../src/virt-viewer.c:554
692 #: src/virt-viewer.c:550
693693 #, c-format
694694 msgid "Cannot determine the graphic type for the guest %s"
695695 msgstr "%s अतिथि के लिए ग्राफ़िक प्रकार निर्धारित नहीं कर सकते है "
696696
697 #: ../src/virt-viewer.c:603
697 #: src/virt-viewer.c:599
698698 #, c-format
699699 msgid "Cannot determine the host for the guest %s"
700700 msgstr "%s अतिथि के लिए होस्ट का निर्धारण नहीं कर सकते है "
701701
702 #: ../src/virt-viewer.c:631
702 #: src/virt-viewer.c:627
703703 #, c-format
704704 msgid "Guest '%s' is not reachable"
705705 msgstr ""
706706
707 #: ../src/virt-viewer.c:860
707 #: src/virt-viewer.c:856
708708 #, c-format
709709 msgid "Virtual machine %s is not running"
710710 msgstr ""
711711
712 #: ../src/virt-viewer.c:884
712 #: src/virt-viewer.c:881
713713 msgid "Waiting for libvirt to start"
714714 msgstr "libvirt शुरू करने के लिए प्रतीक्षा की जा रही है"
715715
716 #: ../src/virt-viewer.c:888
716 #: src/virt-viewer.c:885
717717 msgid "Finding guest domain"
718718 msgstr "अतिथि डोमेन को खोज रहा है "
719719
720 #: ../src/virt-viewer.c:892
720 #: src/virt-viewer.c:889
721721 msgid "Waiting for guest domain to be created"
722722 msgstr "अतिथि डोमेन बनाई जाने प्रतीक्षा के लिए की जा रही है"
723723
724 #: ../src/virt-viewer.c:918
724 #: src/virt-viewer.c:921
725725 msgid "Checking guest domain status"
726726 msgstr "अतिथि डोमेन की स्थिति की जाँच हो रही है"
727727
728 #: ../src/virt-viewer.c:921
728 #: src/virt-viewer.c:924
729729 msgid "Cannot get guest state"
730730 msgstr ""
731731
732 #: ../src/virt-viewer.c:927
732 #: src/virt-viewer.c:930
733733 msgid "Waiting for guest domain to start"
734734 msgstr " अतिथि डोमेन शुरू करने के लिए प्रतीक्षा की जा रही है "
735735
736 #: ../src/virt-viewer.c:1040
736 #: src/virt-viewer.c:1044
737737 #, c-format
738738 msgid "Unable to connect to libvirt with URI: %s."
739739 msgstr ""
740740
741 #: ../src/virt-viewer.c:1041
741 #: src/virt-viewer.c:1045
742742 msgid "[none]"
743743 msgstr "कुछ नहीं"
744744
745 #: ../src/virt-viewer.c:1048
745 #: src/virt-viewer.c:1052
746746 msgid "Authentication failed."
747747 msgstr ""
748748
749 #: ../src/virt-viewer.c:1108
749 #: src/virt-viewer.c:1112
750750 msgid "Failed to connect: "
751751 msgstr ""
752752
753 #.
754 #. * Local variables:
755 #. * c-indent-level: 4
756 #. * c-basic-offset: 4
757 #. * indent-tabs-mode: nil
758 #. * End:
759 #.
760 #: ../src/resources/ui/virt-viewer.ui.h:1
753 #: src/resources/ui/virt-viewer.ui:28
761754 msgid "_File"
762755 msgstr "फाइल (_F)"
763756
764 #: ../src/resources/ui/virt-viewer.ui.h:2
757 #: src/resources/ui/virt-viewer.ui:41
765758 msgid "_Screenshot"
766759 msgstr ""
767760
768 #: ../src/resources/ui/virt-viewer.ui.h:3
761 #: src/resources/ui/virt-viewer.ui:52
769762 msgid "_USB device selection"
770763 msgstr ""
771764
772 #: ../src/resources/ui/virt-viewer.ui.h:4
765 #: src/resources/ui/virt-viewer.ui:62
773766 msgid "Smartcard insertion"
774767 msgstr "स्मार्टकार्ड प्रवेश"
775768
776 #: ../src/resources/ui/virt-viewer.ui.h:5
769 #: src/resources/ui/virt-viewer.ui:72
777770 msgid "Smartcard removal"
778771 msgstr "स्मार्टकार्ड हटाना"
779772
780 #: ../src/resources/ui/virt-viewer.ui.h:6
773 #: src/resources/ui/virt-viewer.ui:80
781774 msgid "_Change CD"
782775 msgstr ""
783776
784 #: ../src/resources/ui/virt-viewer.ui.h:7
777 #: src/resources/ui/virt-viewer.ui:90
785778 msgid "_Preferences"
786779 msgstr ""
787780
788 #: ../src/resources/ui/virt-viewer.ui.h:8
781 #: src/resources/ui/virt-viewer.ui:103
789782 msgid "_Quit"
790783 msgstr ""
791784
792 #: ../src/resources/ui/virt-viewer.ui.h:9
785 #: src/resources/ui/virt-viewer.ui:119
786 msgid "_Machine"
787 msgstr ""
788
789 #: src/resources/ui/virt-viewer.ui:129
790 msgid "_Pause"
791 msgstr ""
792
793 #: src/resources/ui/virt-viewer.ui:144
794 msgid "_Reset"
795 msgstr ""
796
797 #: src/resources/ui/virt-viewer.ui:153
798 msgid "_Power down"
799 msgstr ""
800
801 #: src/resources/ui/virt-viewer.ui:167
793802 msgid "_View"
794803 msgstr "दृश्य (_V)"
795804
796 #: ../src/resources/ui/virt-viewer.ui.h:10
805 #: src/resources/ui/virt-viewer.ui:180
797806 msgid "_Full screen"
798807 msgstr ""
799808
800 #: ../src/resources/ui/virt-viewer.ui.h:11
809 #: src/resources/ui/virt-viewer.ui:191
801810 msgid "_Zoom"
802811 msgstr "ज़ूम (_Z)"
803812
804 #: ../src/resources/ui/virt-viewer.ui.h:12
813 #: src/resources/ui/virt-viewer.ui:201
805814 msgid "Zoom _In"
806815 msgstr ""
807816
808 #: ../src/resources/ui/virt-viewer.ui.h:13
817 #: src/resources/ui/virt-viewer.ui:212
809818 msgid "Zoom _Out"
810819 msgstr ""
811820
812 #: ../src/resources/ui/virt-viewer.ui.h:14
821 #: src/resources/ui/virt-viewer.ui:229
813822 msgid "_Normal Size"
814823 msgstr ""
815824
816 #: ../src/resources/ui/virt-viewer.ui.h:15
825 #: src/resources/ui/virt-viewer.ui:246
817826 msgid "_Displays"
818827 msgstr ""
819828
820 #: ../src/resources/ui/virt-viewer.ui.h:16
829 #: src/resources/ui/virt-viewer.ui:255
821830 msgid "Release cursor"
822831 msgstr "रिलीज कर्सर"
823832
824 #: ../src/resources/ui/virt-viewer.ui.h:17
833 #: src/resources/ui/virt-viewer.ui:270
825834 msgid "_Send key"
826835 msgstr "कुंजी भेजें (_S)"
827836
828 #: ../src/resources/ui/virt-viewer.ui.h:18
837 #: src/resources/ui/virt-viewer.ui:279
829838 msgid "_Help"
830839 msgstr "सहायता (_H)"
831840
832 #: ../src/resources/ui/virt-viewer.ui.h:19
841 #: src/resources/ui/virt-viewer.ui:290
833842 msgid "_Guest Details"
834843 msgstr ""
835844
836 #: ../src/resources/ui/virt-viewer.ui.h:20
845 #: src/resources/ui/virt-viewer.ui:297
837846 msgid "_About"
838847 msgstr ""
839848
840 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
849 #: src/resources/ui/virt-viewer-guest-details.ui:7
841850 msgid "Guest Details"
842851 msgstr ""
843852
844 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
853 #: src/resources/ui/virt-viewer-guest-details.ui:56
845854 msgid "Name:"
846855 msgstr ""
847856
848 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
857 #: src/resources/ui/virt-viewer-guest-details.ui:68
849858 msgid "GUID:"
850859 msgstr ""
851860
852 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
861 #: src/resources/ui/virt-viewer-vm-connection.ui:7
853862 msgid "Choose a virtual machine"
854863 msgstr ""
855864
856 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
865 #: src/resources/ui/virt-viewer-vm-connection.ui:96
857866 msgid "Available virtual machines"
858867 msgstr ""
859868
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
869 #: src/resources/ui/virt-viewer-preferences.ui:8
861870 msgid "Preferences"
862871 msgstr ""
863872
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
873 #: src/resources/ui/virt-viewer-preferences.ui:48
865874 msgid "Folder sharing"
866875 msgstr ""
867876
868 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
877 #: src/resources/ui/virt-viewer-preferences.ui:70
869878 msgid "Share folder"
870879 msgstr ""
871880
872 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
881 #: src/resources/ui/virt-viewer-preferences.ui:82
873882 msgid "Read-only"
874883 msgstr ""
875884
876 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
885 #: src/resources/ui/virt-viewer-preferences.ui:96
886 msgid "Share clipboard"
887 msgstr ""
888
889 #: src/resources/ui/virt-viewer-preferences.ui:132
877890 msgid "Spice"
878891 msgstr ""
892
893 #~ msgid "virt-manager.org"
894 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/hr.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Croatian\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1818 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444
459 #: ../src/virt-viewer-file-transfer-dialog.c:228
460 #, c-format
461 msgid "An error caused the following file transfers to fail:%s"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:38
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
465450 msgid "Virt Viewer"
466451 msgstr ""
467452
468 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
469454 msgid "Invalid password"
470455 msgstr ""
471456
472 #. Create the widgets
473 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
474458 msgid "Select USB devices for redirection"
475459 msgstr ""
476460
477 #: ../src/virt-viewer-session-spice.c:804
478 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
479463 msgid "_Close"
480464 msgstr ""
481465
482 #: ../src/virt-viewer-session-vnc.c:162
483 #, c-format
484 msgid "Unsupported authentication type %d"
485 msgstr ""
486
487 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
488484 msgid "No running virtual machine found"
489485 msgstr ""
490486
491 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
492488 msgid "No virtual machine was chosen"
493489 msgstr ""
494490
495 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
496492 msgid "Ctrl+Alt+_Del"
497493 msgstr ""
498494
499 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
500496 msgid "Ctrl+Alt+_Backspace"
501497 msgstr ""
502498
503 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
504500 msgid "Ctrl+Alt+F_1"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
508504 msgid "Ctrl+Alt+F_2"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
512508 msgid "Ctrl+Alt+F_3"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
516512 msgid "Ctrl+Alt+F_4"
517513 msgstr ""
518514
519 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
520516 msgid "Ctrl+Alt+F_5"
521517 msgstr ""
522518
523 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
524520 msgid "Ctrl+Alt+F_6"
525521 msgstr ""
526522
527 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
528524 msgid "Ctrl+Alt+F_7"
529525 msgstr ""
530526
531 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
532528 msgid "Ctrl+Alt+F_8"
533529 msgstr ""
534530
535 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
536532 msgid "Ctrl+Alt+F_9"
537533 msgstr ""
538534
539 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
540536 msgid "Ctrl+Alt+F1_0"
541537 msgstr ""
542538
543 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
544540 msgid "Ctrl+Alt+F11"
545541 msgstr ""
546542
547 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
548544 msgid "Ctrl+Alt+F12"
549545 msgstr ""
550546
551 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
552552 #, c-format
553553 msgid "Unable to determine image format for file '%s'"
554554 msgstr ""
555555
556 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
557561 msgid "_Save"
558562 msgstr ""
559563
560 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
561565 msgid "Screenshot.png"
562566 msgstr ""
563567
564 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
565569 msgid "Unknown"
566570 msgstr ""
567571
568 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
569573 msgid "Unable to connnect to oVirt"
570574 msgstr ""
571575
572 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
573577 msgid "Disconnect"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
577581 msgid "USB device selection"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
581585 msgid "Send key combination"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
585589 msgid "Leave fullscreen"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
589593 msgid "Ctrl+Alt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
593597 #, c-format
594598 msgid "(Press %s to release pointer)"
595599 msgstr ""
596600
597 #. translators:
598 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600 #.
601 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
602602 #, c-format
603603 msgid "%s%s%s - %s"
604604 msgstr ""
605605
606 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
608607 msgid " "
609608 msgstr ""
610609
611 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
612611 #, c-format
613612 msgid ""
614613 "At least %s version %s is required to setup this connection, see %s for "
615614 "details"
616615 msgstr ""
617616
618 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
619618 #, c-format
620619 msgid "At least %s version %s is required to setup this connection"
621620 msgstr ""
622621
623 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
624623 msgid "Direct connection with no automatic tunnels"
625624 msgstr ""
626625
627 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
628627 msgid "Attach to the local display using libvirt"
629628 msgstr ""
630629
631 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
632631 msgid "Connect to hypervisor"
633632 msgstr ""
634633
635 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
636635 msgid "Wait for domain to start"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
640639 msgid "Reconnect to domain upon restart"
641640 msgstr ""
642641
643 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
644643 msgid "Select the virtual machine only by its name"
645644 msgstr ""
646645
647 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
648647 msgid "Select the virtual machine only by its id"
649648 msgstr ""
650649
651 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
652651 msgid "Select the virtual machine only by its uuid"
653652 msgstr ""
654653
655 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
656655 msgid "Virtual machine graphical console"
657656 msgstr ""
658657
659 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
660659 #, c-format
661660 msgid ""
662661 "\n"
664663 "\n"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
668667 #, c-format
669668 msgid ""
670669 "\n"
672671 "\n"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
676675 msgid "Waiting for guest domain to re-start"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
680679 #, c-format
681680 msgid "Cannot determine the graphic type for the guest %s"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
685684 #, c-format
686685 msgid "Cannot determine the host for the guest %s"
687686 msgstr ""
688687
689 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
690689 #, c-format
691690 msgid "Guest '%s' is not reachable"
692691 msgstr ""
693692
694 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
695694 #, c-format
696695 msgid "Virtual machine %s is not running"
697696 msgstr ""
698697
699 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
700699 msgid "Waiting for libvirt to start"
701700 msgstr ""
702701
703 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
704703 msgid "Finding guest domain"
705704 msgstr ""
706705
707 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
708707 msgid "Waiting for guest domain to be created"
709708 msgstr ""
710709
711 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
712711 msgid "Checking guest domain status"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
716715 msgid "Cannot get guest state"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
720719 msgid "Waiting for guest domain to start"
721720 msgstr ""
722721
723 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
724723 #, c-format
725724 msgid "Unable to connect to libvirt with URI: %s."
726725 msgstr ""
727726
728 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
729728 msgid "[none]"
730729 msgstr ""
731730
732 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
733732 msgid "Authentication failed."
734733 msgstr ""
735734
736 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
737736 msgid "Failed to connect: "
738737 msgstr ""
739738
740 #.
741 #. * Local variables:
742 #. * c-indent-level: 4
743 #. * c-basic-offset: 4
744 #. * indent-tabs-mode: nil
745 #. * End:
746 #.
747 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
748740 msgid "_File"
749741 msgstr ""
750742
751 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
752744 msgid "_Screenshot"
753745 msgstr ""
754746
755 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
756748 msgid "_USB device selection"
757749 msgstr ""
758750
759 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
760752 msgid "Smartcard insertion"
761753 msgstr ""
762754
763 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
764756 msgid "Smartcard removal"
765757 msgstr ""
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
768760 msgid "_Change CD"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
772764 msgid "_Preferences"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
776768 msgid "_Quit"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
780788 msgid "_View"
781789 msgstr ""
782790
783 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
784792 msgid "_Full screen"
785793 msgstr ""
786794
787 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
788796 msgid "_Zoom"
789797 msgstr ""
790798
791 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
792800 msgid "Zoom _In"
793801 msgstr ""
794802
795 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
796804 msgid "Zoom _Out"
797805 msgstr ""
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
800808 msgid "_Normal Size"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
804812 msgid "_Displays"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
808816 msgid "Release cursor"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
812820 msgid "_Send key"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
816824 msgid "_Help"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
820828 msgid "_Guest Details"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
824832 msgid "_About"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
828836 msgid "Guest Details"
829837 msgstr ""
830838
831 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
832840 msgid "Name:"
833841 msgstr ""
834842
835 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
836844 msgid "GUID:"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
840848 msgid "Choose a virtual machine"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
844852 msgid "Available virtual machines"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
848856 msgid "Preferences"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
852860 msgid "Folder sharing"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
856864 msgid "Share folder"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
860868 msgid "Read-only"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
864876 msgid "Spice"
865877 msgstr ""
Binary diff not shown
+393
-356
po/hu.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Szabo Attila <atekka@gmail.com>, 2013
77 # Zoltan Hoppár <zoltanh721@fedoraproject.org>, 2012-2013
88 # Meskó Balázs <meskobalazs@gmail.com>, 2016. #zanata
9 # Meskó Balázs <meskobalazs@gmail.com>, 2018. #zanata
10 # Meskó Balázs <meskobalazs@gmail.com>, 2019. #zanata
911 msgid ""
1012 msgstr ""
11 "Project-Id-Version: PACKAGE VERSION\n"
12 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
14 "PO-Revision-Date: 2016-03-09 01:13-0500\n"
15 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
13 "Project-Id-Version: virt-viewer 9.0\n"
14 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
15 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
16 "PO-Revision-Date: 2019-02-28 03:37+0000\n"
17 "Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
1618 "Language-Team: Hungarian (http://www.transifex.com/projects/p/virt-viewer/"
1719 "language/hu/)\n"
1820 "Language: hu\n"
2022 "Content-Type: text/plain; charset=UTF-8\n"
2123 "Content-Transfer-Encoding: 8bit\n"
2224 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23 "X-Generator: Zanata 3.9.6\n"
24
25 #: ../data/remote-viewer.appdata.xml.in.h:1
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
25 "X-Generator: Zanata 4.6.2\n"
26
27 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
28 #: src/remote-viewer-main.c:39
2729 msgid "Remote Viewer"
2830 msgstr "Távoli megjelenítő"
2931
30 #: ../data/remote-viewer.appdata.xml.in.h:2
32 #: data/remote-viewer.appdata.xml.in:7
3133 msgid "Remotely access virtual machines"
32 msgstr ""
33
34 #: ../data/remote-viewer.appdata.xml.in.h:3
34 msgstr "Virtuális gépek távoli elérése"
35
36 #: data/remote-viewer.appdata.xml.in:9
3537 msgid ""
3638 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3739 "time it supports guest OS using the VNC or SPICE protocols. Further "
3941 "can connect directly to both local and remotely hosted guest OS, optionally "
4042 "using SSL/TLS encryption."
4143 msgstr ""
42
43 #: ../data/remote-viewer.desktop.in.h:2
44 "A Remote Viewer egy grafikus megjelenítőt biztosít a vendég OS-hez. Jelenleg "
45 "a vendés OS-t VNC vagy SPICE protokollokon keresztül támogatja. További "
46 "protokollok is támogatottak lehetnek a jövőben, ha megköveteli a "
47 "felhasználói igény. A megjelenítő közvetlenül tud csatlakozni helyi és "
48 "távolit vendég OS-ekhez, választható módon akár SSL/TLS titkosítással."
49
50 #: data/remote-viewer.desktop.in:4
4451 msgid "Access remote desktops"
4552 msgstr "Távoli számítógépek elérése"
4653
47 #: ../data/virt-viewer-mime.xml.in.h:1
48 msgid "Virt-Viewer connection file"
49 msgstr "Virt-Viewer kapcsolódási fájl"
50
51 #: ../src/remote-viewer-iso-list-dialog.c:160
54 #: src/remote-viewer-iso-list-dialog.c:156
5255 msgid "Failed to fetch CD names"
53 msgstr ""
54
55 #: ../src/remote-viewer-iso-list-dialog.c:212
56 msgstr "A CD nevek lekérése meghiúsult"
57
58 #: src/remote-viewer-iso-list-dialog.c:205
5659 msgid "<b>Loading...</b>"
57 msgstr ""
58
59 #: ../src/remote-viewer-iso-list-dialog.c:285
60 msgstr "<b>Betöltés...</b>"
61
62 #: src/remote-viewer-iso-list-dialog.c:276
6063 msgid "Refresh"
61 msgstr ""
62
63 #: ../src/remote-viewer-iso-list-dialog.c:286
64 msgstr "Frissítés"
65
66 #: src/remote-viewer-iso-list-dialog.c:277
6467 msgid "Close"
65 msgstr ""
66
67 #: ../src/remote-viewer-iso-list-dialog.c:306
68 msgstr "Bezárás"
69
70 #: src/remote-viewer-iso-list-dialog.c:297
6871 msgid "Unspecified error"
69 msgstr ""
70
71 #: ../src/remote-viewer-iso-list-dialog.c:328
72 msgstr "Meghatározatlan hiba"
73
74 #: src/remote-viewer-iso-list-dialog.c:318
7275 msgid "Failed to change CD"
73 msgstr ""
74
75 #: ../src/remote-viewer-iso-list-dialog.c:380
76 msgstr "A CD cseréje meghiúsult"
77
78 #: src/remote-viewer-iso-list-dialog.c:370
7679 msgid "Change CD"
77 msgstr ""
78
79 #: ../src/remote-viewer.c:118
80 msgstr "CD cseréje"
81
82 #: src/remote-viewer.c:116
8083 msgid "Set window title"
8184 msgstr "Ablak címének megadása"
8285
83 #: ../src/remote-viewer.c:125
86 #: src/remote-viewer.c:123
8487 msgid "Remote viewer client"
8588 msgstr "Távoli megjelenítő kliens"
8689
87 #: ../src/remote-viewer.c:150
88 #, c-format
90 #: src/remote-viewer.c:148
8991 msgid ""
9092 "\n"
9193 "Error: can't handle multiple URIs\n"
9294 "\n"
9395 msgstr ""
94
95 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
96 "\n"
97 "Hiba: nem kezelhető több URI\n"
98 "\n"
99
100 #: src/remote-viewer.c:162 src/virt-viewer.c:200
96101 #, c-format
97102 msgid "Run '%s --help' to see a full list of available command line options\n"
98103 msgstr ""
99
100 #: ../src/remote-viewer.c:435
104 "Futtassa a „%s --help” parancsot az elérhető parancssori kapcsolók "
105 "listájáért\n"
106
107 #: src/remote-viewer.c:429
101108 msgid "failed to parse ovirt uri"
102109 msgstr "nem sikerült feldolgozni az ovirt URI-t"
103110
104 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
111 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
105112 msgid "Authentication was cancelled"
106113 msgstr "A hitelesítés meg lett szakítva"
107114
108 #: ../src/remote-viewer.c:480
115 #: src/remote-viewer.c:472
109116 #, c-format
110117 msgid "oVirt VM %s is not running"
111118 msgstr "A(z) %s oVirt VM nem fut"
112119
113 #: ../src/remote-viewer.c:494
120 #: src/remote-viewer.c:486
114121 #, c-format
115122 msgid "oVirt VM %s has no display"
116123 msgstr "A(z) %s oVirt VM-nek nincs kijelzője"
117124
118 #: ../src/remote-viewer.c:520
125 #: src/remote-viewer.c:512
119126 #, c-format
120127 msgid "oVirt VM %s has no host information"
121128 msgstr "A(z) %s oVirt VM-nek nincsenek gazda információi"
122129
123 #: ../src/remote-viewer.c:531
124 #, c-format
125 msgid "oVirt VM %s has unknown display type: %d"
126 msgstr "A(z) %s oVirt VM-nek ismeretlen a megjelenítő típusa: %d"
127
128 #: ../src/remote-viewer.c:713
130 #: src/remote-viewer.c:523
131 #, c-format
132 msgid "oVirt VM %s has unknown display type: %u"
133 msgstr "A(z) %s oVirt VM megjelenítő típusa ismeretlen: %u"
134
135 #: src/remote-viewer.c:690
136 msgid "Couldn't open oVirt session: "
137 msgstr "Az oVirt munkamenet nem nyitható meg: "
138
139 #: src/remote-viewer.c:718
129140 msgid "Failed to initiate connection"
130141 msgstr "Sikertelen kapcsolatindítás"
131142
132 #: ../src/remote-viewer.c:742
143 #: src/remote-viewer.c:747
133144 msgid "No connection was chosen"
134145 msgstr "Nem került kiválasztásra kapcsolat"
135146
136 #: ../src/remote-viewer.c:759
147 #: src/remote-viewer.c:764
137148 msgid "Failed to read stdin: "
138 msgstr ""
139
140 #: ../src/remote-viewer.c:776
149 msgstr "Sikertelen olvasás a szabványos bemenetről: "
150
151 #: src/remote-viewer.c:781
141152 #, c-format
142153 msgid "Invalid file %s: "
143154 msgstr "Érvénytelen fájl %s:"
144155
145 #: ../src/remote-viewer.c:786
156 #: src/remote-viewer.c:791
146157 msgid "Cannot determine the connection type from URI"
147158 msgstr "A kapcsolattípus nem határozható meg az URI-ból"
148159
149 #: ../src/remote-viewer.c:792
150 msgid "Couldn't open oVirt session: "
151 msgstr "Az oVirt munkamenet nem nyitható meg: "
152
153 #: ../src/remote-viewer.c:815
160 #: src/remote-viewer.c:810
154161 #, c-format
155162 msgid "Unable to connect: %s"
156 msgstr ""
157
158 #.
159 #. * Local variables:
160 #. * c-indent-level: 4
161 #. * c-basic-offset: 4
162 #. * indent-tabs-mode: nil
163 #. * End:
164 #.
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
163 msgstr "Nem lehet ide kapcsolódni: %s"
164
165 #: src/resources/ui/remote-viewer-connect.ui:6
166166 msgid "Connection details"
167167 msgstr "Kapcsolat részletei"
168168
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
169 #: src/resources/ui/remote-viewer-connect.ui:24
170170 msgid "Connection _Address"
171 msgstr ""
172
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
171 msgstr "Kapcsolódási _cím"
172
173 #: src/resources/ui/remote-viewer-connect.ui:54
174174 msgid "For example, spice://foo.example.org:5900"
175 msgstr "Például spice://valami.pelda.hu:5900"
176
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
175 msgstr "Például spice://valami.example.com:5900"
176
177 #: src/resources/ui/remote-viewer-connect.ui:78
178178 msgid "Recent connections"
179179 msgstr "Előző kapcsolatok"
180180
181 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
182 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
183 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
184 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
181 #: src/resources/ui/remote-viewer-connect.ui:120
182 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
183 #: src/resources/ui/virt-viewer-vm-connection.ui:24
184 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
185185 msgid "_Cancel"
186 msgstr ""
187
188 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
189 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
186 msgstr "_Mégse"
187
188 #: src/resources/ui/remote-viewer-connect.ui:134
189 #: src/resources/ui/virt-viewer-vm-connection.ui:38
190190 msgid "C_onnect"
191 msgstr ""
192
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
191 msgstr "K_apcsolódás"
192
193 #: src/resources/ui/remote-viewer-iso-list.ui:28
194194 msgid "Loading..."
195 msgstr ""
196
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
195 msgstr "Betöltés…"
196
197 #: src/resources/ui/remote-viewer-iso-list.ui:78
198198 msgid "Select ISO"
199 msgstr ""
200
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
199 msgstr "Válasszon ISO-t"
200
201 #: src/resources/ui/remote-viewer-iso-list.ui:116
202202 msgid "Selected"
203 msgstr ""
204
205 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
206 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
203 msgstr "Kiválasztva"
204
205 #: src/resources/ui/remote-viewer-iso-list.ui:129
206 #: src/resources/ui/virt-viewer-vm-connection.ui:72
207207 msgid "Name"
208208 msgstr "Név"
209209
210 #: ../src/resources/ui/virt-viewer-about.ui.h:1
210 #: src/resources/ui/virt-viewer-about.ui:7
211211 msgid "About Virt-Viewer"
212 msgstr ""
213
214 #: ../src/resources/ui/virt-viewer-about.ui.h:2
212 msgstr "A Virt-Viewer névjegye"
213
214 #: src/resources/ui/virt-viewer-about.ui:16
215215 msgid ""
216216 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
217217 "Copyright (C) 2007-2014 Red Hat, Inc."
219219 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
220220 "Copyright (C) 2007-2014 Red Hat, Inc."
221221
222 #: ../src/resources/ui/virt-viewer-about.ui.h:4
222 #: src/resources/ui/virt-viewer-about.ui:18
223223 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
224224 msgstr ""
225225 "Egy távoli asztal kliens beépített GTK-VNC, SPICE-GTK és libvirt támogatással"
226226
227 #: ../src/resources/ui/virt-viewer-about.ui.h:5
228 msgid "virt-manager.org"
229 msgstr "virt-manager.org"
230
231 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227 #: src/resources/ui/virt-viewer-about.ui:20
228 msgid "gitlab.com/virt-viewer/virt-viewer"
229 msgstr ""
230
231 #: src/resources/ui/virt-viewer-about.ui:21
232232 msgid ""
233233 "This program is free software; you can redistribute it and/or modify\n"
234234 "it under the terms of the GNU General Public License as published by\n"
257257 "meg, írjon a Free Software Foundation Inc.-nek. Levélcímük: 59 Temple Place, "
258258 "Suite 330, Boston, MA 02111-1307 USA\n"
259259
260 #: ../src/resources/ui/virt-viewer-about.ui.h:20
260 #: src/resources/ui/virt-viewer-about.ui:38
261261 msgid "The Fedora Translation Team"
262262 msgstr "A Fedora fordítói csapata"
263263
264 #: ../src/virt-viewer-app.c:459
264 #: src/virt-viewer-app.c:594
265265 msgid "Do you want to close the session?"
266266 msgstr "Biztosan le akarja zárni ezt a munkamenetet?"
267267
268 #: ../src/virt-viewer-app.c:461
268 #: src/virt-viewer-app.c:596
269269 msgid "Do not ask me again"
270270 msgstr "Ne kérdezze meg többet"
271271
272 #: ../src/virt-viewer-app.c:655
272 #: src/virt-viewer-app.c:767
273273 #, c-format
274274 msgid "Address is too long for unix socket_path: %s"
275 msgstr ""
276
277 #: ../src/virt-viewer-app.c:665
275 msgstr "A cím túl hosszú a Unix foglalat útvonalhoz: %s"
276
277 #: src/virt-viewer-app.c:777
278278 #, c-format
279279 msgid "Creating unix socket failed: %s"
280 msgstr ""
281
282 #: ../src/virt-viewer-app.c:671
280 msgstr "A Unix foglalat létrehozása meghiúsult: %s"
281
282 #: src/virt-viewer-app.c:783
283283 #, c-format
284284 msgid "Connecting to unix socket failed: %s"
285 msgstr ""
286
287 #: ../src/virt-viewer-app.c:955
285 msgstr "A Unix foglalathoz kapcsolódás meghiúsult: %s"
286
287 #: src/virt-viewer-app.c:1077
288288 #, c-format
289289 msgid "Waiting for display %d..."
290290 msgstr "Várakozás a(z) %d. kijelzőre…"
291291
292 #: ../src/virt-viewer-app.c:1062
292 #: src/virt-viewer-app.c:1193
293293 #, c-format
294294 msgid "Unsupported graphic type '%s'"
295295 msgstr "Nem támogatott '%s' grafikus mód típus"
296296
297 #: ../src/virt-viewer-app.c:1146
297 #: src/virt-viewer-app.c:1277
298298 msgid "Connect to ssh failed."
299299 msgstr "SSH kapcsolat sikertelen."
300300
301 #: ../src/virt-viewer-app.c:1161
301 #: src/virt-viewer-app.c:1292
302302 #, c-format
303303 msgid "Can't connect to channel: %s"
304 msgstr ""
305
306 #: ../src/virt-viewer-app.c:1163
304 msgstr "Nem lehet kapcsolódni a csatornához: %s"
305
306 #: src/virt-viewer-app.c:1294
307307 msgid "only SSH or unix socket connection supported."
308 msgstr ""
309
310 #: ../src/virt-viewer-app.c:1176
308 msgstr "csak az SSH vagy a Unix foglalat kapcsolat támogatott."
309
310 #: src/virt-viewer-app.c:1311
311311 msgid "Connect to channel unsupported."
312312 msgstr "A csatornához kapcsolódás nem támogatott."
313313
314 #: ../src/virt-viewer-app.c:1238
314 #: src/virt-viewer-app.c:1376
315315 msgid "Display can only be attached through libvirt with --attach"
316316 msgstr ""
317317 "A kijelző a libvirt-en keresztül csak az --attach-csal kapcsolható össze"
318318
319 #: ../src/virt-viewer-app.c:1263
319 #: src/virt-viewer-app.c:1401
320320 msgid "Connecting to graphic server"
321321 msgstr "Csatlakozás a grafikus kiszolgálóhoz"
322322
323 #: ../src/virt-viewer-app.c:1362
323 #: src/virt-viewer-app.c:1500
324324 msgid "Guest domain has shutdown"
325325 msgstr "A vendég tartomány leállt"
326326
327 #: ../src/virt-viewer-app.c:1423
327 #: src/virt-viewer-app.c:1561
328328 msgid "Connected to graphic server"
329329 msgstr "Csatlakozva a grafikus kiszolgálóhoz"
330330
331 #: ../src/virt-viewer-app.c:1452
331 #: src/virt-viewer-app.c:1590
332332 #, c-format
333333 msgid "Unable to connect to the graphic server %s"
334334 msgstr "A(z) %s grafikus kiszolgálóhoz kapcsolódás nem lehetséges"
335335
336 #: ../src/virt-viewer-app.c:1478
336 #: src/virt-viewer-app.c:1616
337337 #, c-format
338338 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
339339 msgstr "Nem lehetséges a hitelesítés a(z) %s távoli asztal kiszolgálóhoz: %s\n"
340340
341 #: ../src/virt-viewer-app.c:1492
341 #: src/virt-viewer-app.c:1630
342342 #, c-format
343343 msgid "Unable to authenticate with remote desktop server: %s"
344344 msgstr "Hitelesítés sikertelen a távoli asztal kiszolgálóhoz: %s"
345345
346 #: ../src/virt-viewer-app.c:1500
346 #: src/virt-viewer-app.c:1638
347347 #, c-format
348348 msgid "USB redirection error: %s"
349349 msgstr "USB átirányítási hiba: %s"
350350
351 #: ../src/virt-viewer-app.c:1834
351 #: src/virt-viewer-app.c:2026
352352 #, c-format
353353 msgid "Zoom level must be within %d-%d\n"
354354 msgstr "A nagyítási szint %d-%d között kell legyen\n"
355355
356 #: ../src/virt-viewer-app.c:1887
356 #: src/virt-viewer-app.c:2081
357357 #, c-format
358358 msgid "%s\n"
359 msgstr ""
360
361 #: ../src/virt-viewer-app.c:1897
359 msgstr "%s\n"
360
361 #: src/virt-viewer-app.c:2091
362362 #, c-format
363363 msgid "%s version %s"
364 msgstr ""
365
366 #: ../src/virt-viewer-app.c:2321
364 msgstr "%s – %s verzió"
365
366 #: src/virt-viewer-app.c:2545
367367 #, c-format
368368 msgid "Display _%d"
369 msgstr ""
370
371 #: ../src/virt-viewer-app.c:2577
369 msgstr "_%d. megjelenítő"
370
371 #: src/virt-viewer-app.c:2829
372372 #, c-format
373373 msgid "Invalid kiosk-quit argument: %s"
374374 msgstr "Érvénytelen kioszk-kilépési argumentum: %s"
375375
376 #: ../src/virt-viewer-app.c:2588
376 #: src/virt-viewer-app.c:2840
377377 msgid "Display version information"
378378 msgstr "Verzió információk megjelenítése"
379379
380 #: ../src/virt-viewer-app.c:2590
380 #: src/virt-viewer-app.c:2842
381381 msgid "Zoom level of window, in percentage"
382382 msgstr "Ablak nagyítási szintje, százalékban"
383383
384 #: ../src/virt-viewer-app.c:2592
384 #: src/virt-viewer-app.c:2844
385385 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
386386 msgstr ""
387387 "Megnyitás teljes képernyős módban (vendég felbontásának igazítása a "
388388 "klienshez)"
389389
390 #: ../src/virt-viewer-app.c:2594
390 #: src/virt-viewer-app.c:2846
391391 msgid "Customise hotkeys"
392392 msgstr "Gyorsbillentyűk testreszabása"
393393
394 #: ../src/virt-viewer-app.c:2596
394 #: src/virt-viewer-app.c:2848
395395 msgid "Enable kiosk mode"
396396 msgstr "Kioszk mód engedélyezése"
397397
398 #: ../src/virt-viewer-app.c:2598
398 #: src/virt-viewer-app.c:2850
399399 msgid "Quit on given condition in kiosk mode"
400400 msgstr "A megadott feltétel esetén kilépés kioszk módból"
401401
402 #: ../src/virt-viewer-app.c:2598
402 #: src/virt-viewer-app.c:2850
403403 msgid "<never|on-disconnect>"
404404 msgstr "<never|on-disconnect>"
405405
406 #: ../src/virt-viewer-app.c:2600
406 #: src/virt-viewer-app.c:2852
407407 msgid "Display verbose information"
408408 msgstr "Részletes információk megjelenítése"
409409
410 #: ../src/virt-viewer-app.c:2602
410 #: src/virt-viewer-app.c:2854
411411 msgid "Display debugging information"
412412 msgstr "Hibakeresési információk megjelenítése"
413413
414 #: ../src/virt-viewer-auth.c:89
414 #: src/virt-viewer-auth.c:89
415415 #, c-format
416416 msgid ""
417417 "Authentication is required for the %s connection to:\n"
424424 "<b>%s</b>\n"
425425 "\n"
426426
427 #: ../src/virt-viewer-auth.c:93
427 #: src/virt-viewer-auth.c:93
428428 #, c-format
429429 msgid "Authentication is required for the %s connection:\n"
430430 msgstr "Hitelesítés szükséges a(z) %s kapcsolathoz:\n"
431431
432 #.
433 #. * Local variables:
434 #. * c-indent-level: 4
435 #. * c-basic-offset: 4
436 #. * indent-tabs-mode: nil
437 #. * End:
438 #.
439 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
432 #: src/resources/ui/virt-viewer-auth.ui:7
440433 msgid "Authentication required"
441434 msgstr "Hitelesítés szükséges"
442435
443 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
436 #: src/resources/ui/virt-viewer-auth.ui:42
444437 msgid "_OK"
445 msgstr ""
446
447 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
448 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
449 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
438 msgstr "_OK"
439
440 #: src/resources/ui/virt-viewer-auth.ui:71
441 #: src/resources/ui/virt-viewer-guest-details.ui:82
442 #: src/resources/ui/virt-viewer-guest-details.ui:96
443 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
450444 msgid "label"
451445 msgstr "címke"
452446
453 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
447 #: src/resources/ui/virt-viewer-auth.ui:93
454448 msgid "Password:"
455449 msgstr "Jelszó:"
456450
457 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
451 #: src/resources/ui/virt-viewer-auth.ui:105
458452 msgid "Username:"
459453 msgstr "Felhasználónév:"
460454
461 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
455 #: src/resources/ui/virt-viewer-auth.ui:137
462456 msgid "Show password"
463457 msgstr "Jelszó megjelenítése"
464458
465 #: ../src/virt-viewer-display-vnc.c:134
459 #: src/virt-viewer-display-vnc.c:130
466460 msgid "VNC does not provide GUID"
467461 msgstr "A VNC nem szolgáltat GUID-ot"
468462
469 #: ../src/virt-viewer-file-transfer-dialog.c:128
463 #: src/virt-viewer-display-vte.c:181
464 msgid "Console support is compiled out!"
465 msgstr "A konzolos támogatás nincs belefordítva!"
466
467 #: src/virt-viewer-file-transfer-dialog.c:124
470468 msgid "File Transfers"
471 msgstr ""
472
473 #: ../src/virt-viewer-file-transfer-dialog.c:154
469 msgstr "Fájlküldések"
470
471 #: src/virt-viewer-file-transfer-dialog.c:150
474472 msgid "Transferring 1 file..."
475 msgstr ""
476
477 #: ../src/virt-viewer-file-transfer-dialog.c:156
478 #, c-format
479 msgid "Transferring %d file of %d..."
480 msgid_plural "Transferring %d files of %d..."
481 msgstr[0] ""
482
483 #: ../src/virt-viewer-file-transfer-dialog.c:228
484 #, c-format
485 msgid "An error caused the following file transfers to fail:%s"
486 msgstr ""
487
488 #: ../src/virt-viewer-main.c:38
473 msgstr "1 fájl átküldése…"
474
475 #: src/virt-viewer-file-transfer-dialog.c:152
476 #, c-format
477 msgid "Transferring %u file of %u..."
478 msgid_plural "Transferring %u files of %u..."
479 msgstr[0] "%u / %u fájl átküldése…"
480 msgstr[1] "%u / %u fájl átküldése…"
481
482 #: src/virt-viewer-file-transfer-dialog.c:225
483 msgid "An error caused the following file transfers to fail:"
484 msgstr ""
485
486 #: src/virt-viewer-main.c:38
489487 msgid "Virt Viewer"
490488 msgstr "Virt Viewer"
491489
492 #: ../src/virt-viewer-session-spice.c:704
490 #: src/virt-viewer-session-spice.c:731
493491 msgid "Invalid password"
494492 msgstr "Érvénytelen jelszó"
495493
496 #. Create the widgets
497 #: ../src/virt-viewer-session-spice.c:802
494 #: src/virt-viewer-session-spice.c:829
498495 msgid "Select USB devices for redirection"
499496 msgstr "Válasszon USB eszközöket az átirányításhoz"
500497
501 #: ../src/virt-viewer-session-spice.c:804
502 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
498 #: src/virt-viewer-session-spice.c:831
499 #: src/resources/ui/virt-viewer-guest-details.ui:23
503500 msgid "_Close"
504 msgstr ""
505
506 #: ../src/virt-viewer-session-vnc.c:162
507 #, c-format
508 msgid "Unsupported authentication type %d"
509 msgstr "Nem támogatott azonosítási mód: %d"
510
511 #: ../src/virt-viewer-vm-connection.c:64
501 msgstr "_Bezárás"
502
503 #: src/virt-viewer-session-spice.c:1019
504 msgid "Serial"
505 msgstr "Soros"
506
507 #: src/virt-viewer-session-spice.c:1021
508 msgid "QEMU human monitor"
509 msgstr "QEMU emberi felügyelet"
510
511 #: src/virt-viewer-session-spice.c:1023
512 msgid "QEMU debug console"
513 msgstr "QEMU hibakereső konzol"
514
515 #: src/virt-viewer-session-vnc.c:158
516 #, c-format
517 msgid "Unsupported authentication type %u"
518 msgstr "Nem támogatott hitelesítési mód: %u"
519
520 #: src/virt-viewer-vm-connection.c:64
512521 msgid "No running virtual machine found"
513 msgstr ""
514
515 #: ../src/virt-viewer-vm-connection.c:93
522 msgstr "Nem található futó virtuális gép"
523
524 #: src/virt-viewer-vm-connection.c:93
516525 msgid "No virtual machine was chosen"
517526 msgstr "Nincs virtuális gép kiválasztva"
518527
519 #: ../src/virt-viewer-window.c:544
528 #: src/virt-viewer-window.c:621
520529 msgid "Ctrl+Alt+_Del"
521530 msgstr "Ctrl+Alt+_Del"
522531
523 #: ../src/virt-viewer-window.c:545
532 #: src/virt-viewer-window.c:622
524533 msgid "Ctrl+Alt+_Backspace"
525534 msgstr "Ctrl+Alt+_Backspace"
526535
527 #: ../src/virt-viewer-window.c:547
536 #: src/virt-viewer-window.c:624
528537 msgid "Ctrl+Alt+F_1"
529538 msgstr "Ctrl+Alt+F_1"
530539
531 #: ../src/virt-viewer-window.c:548
540 #: src/virt-viewer-window.c:625
532541 msgid "Ctrl+Alt+F_2"
533542 msgstr "Ctrl+Alt+F_2"
534543
535 #: ../src/virt-viewer-window.c:549
544 #: src/virt-viewer-window.c:626
536545 msgid "Ctrl+Alt+F_3"
537546 msgstr "Ctrl+Alt+F_3"
538547
539 #: ../src/virt-viewer-window.c:550
548 #: src/virt-viewer-window.c:627
540549 msgid "Ctrl+Alt+F_4"
541550 msgstr "Ctrl+Alt+F_4"
542551
543 #: ../src/virt-viewer-window.c:551
552 #: src/virt-viewer-window.c:628
544553 msgid "Ctrl+Alt+F_5"
545554 msgstr "Ctrl+Alt+F_5"
546555
547 #: ../src/virt-viewer-window.c:552
556 #: src/virt-viewer-window.c:629
548557 msgid "Ctrl+Alt+F_6"
549558 msgstr "Ctrl+Alt+F_6"
550559
551 #: ../src/virt-viewer-window.c:553
560 #: src/virt-viewer-window.c:630
552561 msgid "Ctrl+Alt+F_7"
553562 msgstr "Ctrl+Alt+F_7"
554563
555 #: ../src/virt-viewer-window.c:554
564 #: src/virt-viewer-window.c:631
556565 msgid "Ctrl+Alt+F_8"
557566 msgstr "Ctrl+Alt+F_8"
558567
559 #: ../src/virt-viewer-window.c:555
568 #: src/virt-viewer-window.c:632
560569 msgid "Ctrl+Alt+F_9"
561570 msgstr "Ctrl+Alt+F_9"
562571
563 #: ../src/virt-viewer-window.c:556
572 #: src/virt-viewer-window.c:633
564573 msgid "Ctrl+Alt+F1_0"
565574 msgstr "Ctrl+Alt+F1_0"
566575
567 #: ../src/virt-viewer-window.c:557
576 #: src/virt-viewer-window.c:634
568577 msgid "Ctrl+Alt+F11"
569578 msgstr "Ctrl+Alt+F11"
570579
571 #: ../src/virt-viewer-window.c:558
580 #: src/virt-viewer-window.c:635
572581 msgid "Ctrl+Alt+F12"
573582 msgstr "Ctrl+Alt+F12"
574583
575 #: ../src/virt-viewer-window.c:953
584 #: src/virt-viewer-window.c:637
585 msgid "_PrintScreen"
586 msgstr ""
587
588 #: src/virt-viewer-window.c:1030
576589 #, c-format
577590 msgid "Unable to determine image format for file '%s'"
578 msgstr ""
579
580 #: ../src/virt-viewer-window.c:980
591 msgstr "Nem határozható meg a képfájl formátuma a(z) „%s” fájlnál."
592
593 #: src/virt-viewer-window.c:1053
594 msgid "Save screenshot"
595 msgstr ""
596
597 #: src/virt-viewer-window.c:1057
581598 msgid "_Save"
582 msgstr ""
583
584 #: ../src/virt-viewer-window.c:988
599 msgstr "Menté_s"
600
601 #: src/virt-viewer-window.c:1065
585602 msgid "Screenshot.png"
586 msgstr ""
587
588 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
603 msgstr "Képernyőkép.png"
604
605 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
589606 msgid "Unknown"
590607 msgstr "Ismeretlen"
591608
592 #: ../src/virt-viewer-window.c:1152
609 #: src/virt-viewer-window.c:1237
593610 msgid "Unable to connnect to oVirt"
594 msgstr ""
595
596 #: ../src/virt-viewer-window.c:1175
611 msgstr "Nem lehet kapcsolódni az oVirthez"
612
613 #: src/virt-viewer-window.c:1260
597614 msgid "Disconnect"
598615 msgstr "Leválasztás"
599616
600 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
617 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
601618 msgid "USB device selection"
602619 msgstr "USB eszköz kiválasztása"
603620
604 #: ../src/virt-viewer-window.c:1193
621 #: src/virt-viewer-window.c:1278
605622 msgid "Send key combination"
606623 msgstr "Billentyűkombináció küldése"
607624
608 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
625 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
609626 msgid "Leave fullscreen"
610627 msgstr "Teljes képernyő elhagyása"
611628
612 #: ../src/virt-viewer-window.c:1279
629 #: src/virt-viewer-window.c:1364
613630 msgid "Ctrl+Alt"
614631 msgstr "Ctrl+Alt"
615632
616 #: ../src/virt-viewer-window.c:1282
633 #: src/virt-viewer-window.c:1367
617634 #, c-format
618635 msgid "(Press %s to release pointer)"
619636 msgstr "(Nyomja meg a(z) %s billentyűt a mutató eleresztéséhez)"
620637
621 #. translators:
622 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
623 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
624 #.
625 #: ../src/virt-viewer-window.c:1293
638 #: src/virt-viewer-window.c:1378
626639 #, c-format
627640 msgid "%s%s%s - %s"
628641 msgstr "%s%s%s - %s"
629642
630 #. translators: <space>
631 #: ../src/virt-viewer-window.c:1297
643 #: src/virt-viewer-window.c:1382
632644 msgid " "
633645 msgstr " "
634646
635 #: ../src/virt-viewer-file.c:862
647 #: src/virt-viewer-file.c:875
636648 #, c-format
637649 msgid ""
638650 "At least %s version %s is required to setup this connection, see %s for "
641653 "Legalább a(z) %s %s. verziója szükséges a kapcsolat beállításához, "
642654 "részletekért lásd: %s"
643655
644 #: ../src/virt-viewer-file.c:870
656 #: src/virt-viewer-file.c:883
645657 #, c-format
646658 msgid "At least %s version %s is required to setup this connection"
647659 msgstr "Legalább a(z) %s %s verziója szükséges a kapcsolat beállításához"
648660
649 #: ../src/virt-viewer.c:133
661 #: src/virt-viewer.c:131
650662 msgid "Direct connection with no automatic tunnels"
651663 msgstr "Közvetlen kapcsolat automatikus átjárók nélkül"
652664
653 #: ../src/virt-viewer.c:135
665 #: src/virt-viewer.c:133
654666 msgid "Attach to the local display using libvirt"
655667 msgstr "Csatlakoztatás a helyi kijelzőhöz a libvirt segítségével"
656668
657 #: ../src/virt-viewer.c:137
669 #: src/virt-viewer.c:135
658670 msgid "Connect to hypervisor"
659671 msgstr "Csatlakozás a hypervisorhoz"
660672
661 #: ../src/virt-viewer.c:139
673 #: src/virt-viewer.c:137
662674 msgid "Wait for domain to start"
663675 msgstr "Várakozás a tartomány elindulásáig"
664676
665 #: ../src/virt-viewer.c:141
677 #: src/virt-viewer.c:139
666678 msgid "Reconnect to domain upon restart"
667679 msgstr "Újracsatlakozás a tartományhoz újraindításkor"
668680
669 #: ../src/virt-viewer.c:143
681 #: src/virt-viewer.c:141
670682 msgid "Select the virtual machine only by its name"
671 msgstr ""
672
673 #: ../src/virt-viewer.c:145
683 msgstr "Válassza ki a virtuális gépet csak a neve alapján"
684
685 #: src/virt-viewer.c:143
674686 msgid "Select the virtual machine only by its id"
675 msgstr ""
676
677 #: ../src/virt-viewer.c:147
687 msgstr "Válassza ki a virtuális gépet csak az azonosítója alapján"
688
689 #: src/virt-viewer.c:145
678690 msgid "Select the virtual machine only by its uuid"
679 msgstr ""
680
681 #: ../src/virt-viewer.c:154
691 msgstr "Válassz ki a virtuális gépet csak az UUID-ja alapján"
692
693 #: src/virt-viewer.c:152
682694 msgid "Virtual machine graphical console"
683695 msgstr "Virtuális gép grafikus konzol"
684696
685 #: ../src/virt-viewer.c:173
697 #: src/virt-viewer.c:171
686698 #, c-format
687699 msgid ""
688700 "\n"
689701 "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
690702 "\n"
691703 msgstr ""
692
693 #: ../src/virt-viewer.c:185
704 "\n"
705 "Használat: %s [KAPCSOLÓK] [AZONOSÍTÓ|UUID|DOMAIN-NÉV]\n"
706 "\n"
707
708 #: src/virt-viewer.c:183
694709 #, c-format
695710 msgid ""
696711 "\n"
697712 "No ID|UUID|DOMAIN-NAME was specified for '%s'\n"
698713 "\n"
699714 msgstr ""
700
701 #: ../src/virt-viewer.c:300
715 "\n"
716 "Nincs AZONOSÍTÓ|UUID|DOMAIN-NÉV megadva ehhez: „%s”\n"
717 "\n"
718
719 #: src/virt-viewer.c:296
702720 msgid "Waiting for guest domain to re-start"
703721 msgstr "Várakozás a vendégtartomány újraindulására"
704722
705 #: ../src/virt-viewer.c:554
723 #: src/virt-viewer.c:550
706724 #, c-format
707725 msgid "Cannot determine the graphic type for the guest %s"
708726 msgstr "A(z) %s vendég grafikus mód típusa nem meghatározható"
709727
710 #: ../src/virt-viewer.c:603
728 #: src/virt-viewer.c:599
711729 #, c-format
712730 msgid "Cannot determine the host for the guest %s"
713731 msgstr "A(z) %s vendég gazdagépe nem határozható meg"
714732
715 #: ../src/virt-viewer.c:631
733 #: src/virt-viewer.c:627
716734 #, c-format
717735 msgid "Guest '%s' is not reachable"
718736 msgstr "A(z) '%s' vendég nem elérhető"
719737
720 #: ../src/virt-viewer.c:860
738 #: src/virt-viewer.c:856
721739 #, c-format
722740 msgid "Virtual machine %s is not running"
723741 msgstr "A(z) %s virtuális gép nem fut"
724742
725 #: ../src/virt-viewer.c:884
743 #: src/virt-viewer.c:881
726744 msgid "Waiting for libvirt to start"
727745 msgstr "Várakozás a libvirt elindulásáig"
728746
729 #: ../src/virt-viewer.c:888
747 #: src/virt-viewer.c:885
730748 msgid "Finding guest domain"
731749 msgstr "Vendég tartomány keresése"
732750
733 #: ../src/virt-viewer.c:892
751 #: src/virt-viewer.c:889
734752 msgid "Waiting for guest domain to be created"
735753 msgstr "Várakozás a vendég tartomány létrehozására"
736754
737 #: ../src/virt-viewer.c:918
755 #: src/virt-viewer.c:921
738756 msgid "Checking guest domain status"
739757 msgstr "Vendég tartomány állapotellenőrzése"
740758
741 #: ../src/virt-viewer.c:921
759 #: src/virt-viewer.c:924
742760 msgid "Cannot get guest state"
743761 msgstr "A vendég állapota nem kérdezhető le"
744762
745 #: ../src/virt-viewer.c:927
763 #: src/virt-viewer.c:930
746764 msgid "Waiting for guest domain to start"
747765 msgstr "Várakozás a vendég tartomány indítására"
748766
749 #: ../src/virt-viewer.c:1040
767 #: src/virt-viewer.c:1044
750768 #, c-format
751769 msgid "Unable to connect to libvirt with URI: %s."
752770 msgstr "Nem lehet kapcsolódni a libvirthez az URI-val: %s."
753771
754 #: ../src/virt-viewer.c:1041
772 #: src/virt-viewer.c:1045
755773 msgid "[none]"
756774 msgstr "[nincs]"
757775
758 #: ../src/virt-viewer.c:1048
776 #: src/virt-viewer.c:1052
759777 msgid "Authentication failed."
760778 msgstr "Hitelesítés sikertelen."
761779
762 #: ../src/virt-viewer.c:1108
780 #: src/virt-viewer.c:1112
763781 msgid "Failed to connect: "
764782 msgstr "Kapcsolódás sikertelen:"
765783
766 #.
767 #. * Local variables:
768 #. * c-indent-level: 4
769 #. * c-basic-offset: 4
770 #. * indent-tabs-mode: nil
771 #. * End:
772 #.
773 #: ../src/resources/ui/virt-viewer.ui.h:1
784 #: src/resources/ui/virt-viewer.ui:28
774785 msgid "_File"
775786 msgstr "_Fájl"
776787
777 #: ../src/resources/ui/virt-viewer.ui.h:2
788 #: src/resources/ui/virt-viewer.ui:41
778789 msgid "_Screenshot"
779 msgstr ""
780
781 #: ../src/resources/ui/virt-viewer.ui.h:3
790 msgstr "_Képernyőkép"
791
792 #: src/resources/ui/virt-viewer.ui:52
782793 msgid "_USB device selection"
783 msgstr ""
784
785 #: ../src/resources/ui/virt-viewer.ui.h:4
794 msgstr "_USB eszköz kiválasztása"
795
796 #: src/resources/ui/virt-viewer.ui:62
786797 msgid "Smartcard insertion"
787798 msgstr "Smartcard behelyezése"
788799
789 #: ../src/resources/ui/virt-viewer.ui.h:5
800 #: src/resources/ui/virt-viewer.ui:72
790801 msgid "Smartcard removal"
791802 msgstr "Smartcard eltávolítása"
792803
793 #: ../src/resources/ui/virt-viewer.ui.h:6
804 #: src/resources/ui/virt-viewer.ui:80
794805 msgid "_Change CD"
795806 msgstr "_CD váltás"
796807
797 #: ../src/resources/ui/virt-viewer.ui.h:7
808 #: src/resources/ui/virt-viewer.ui:90
798809 msgid "_Preferences"
799 msgstr ""
800
801 #: ../src/resources/ui/virt-viewer.ui.h:8
810 msgstr "_Beállítások"
811
812 #: src/resources/ui/virt-viewer.ui:103
802813 msgid "_Quit"
803 msgstr ""
804
805 #: ../src/resources/ui/virt-viewer.ui.h:9
814 msgstr "_Kilépés"
815
816 #: src/resources/ui/virt-viewer.ui:119
817 msgid "_Machine"
818 msgstr "_Gép"
819
820 #: src/resources/ui/virt-viewer.ui:129
821 msgid "_Pause"
822 msgstr "_Felfüggesztés"
823
824 #: src/resources/ui/virt-viewer.ui:144
825 msgid "_Reset"
826 msgstr "Új_raindítás"
827
828 #: src/resources/ui/virt-viewer.ui:153
829 msgid "_Power down"
830 msgstr "_Leállítás"
831
832 #: src/resources/ui/virt-viewer.ui:167
806833 msgid "_View"
807834 msgstr "_Nézet"
808835
809 #: ../src/resources/ui/virt-viewer.ui.h:10
836 #: src/resources/ui/virt-viewer.ui:180
810837 msgid "_Full screen"
811 msgstr ""
812
813 #: ../src/resources/ui/virt-viewer.ui.h:11
838 msgstr "_Teljes képernyő"
839
840 #: src/resources/ui/virt-viewer.ui:191
814841 msgid "_Zoom"
815842 msgstr "Nagyí_tás"
816843
817 #: ../src/resources/ui/virt-viewer.ui.h:12
844 #: src/resources/ui/virt-viewer.ui:201
818845 msgid "Zoom _In"
819 msgstr ""
820
821 #: ../src/resources/ui/virt-viewer.ui.h:13
846 msgstr "_Kicsinyítés"
847
848 #: src/resources/ui/virt-viewer.ui:212
822849 msgid "Zoom _Out"
823 msgstr ""
824
825 #: ../src/resources/ui/virt-viewer.ui.h:14
850 msgstr "_Nagyítás"
851
852 #: src/resources/ui/virt-viewer.ui:229
826853 msgid "_Normal Size"
827 msgstr ""
828
829 #: ../src/resources/ui/virt-viewer.ui.h:15
854 msgstr "_Normál méret"
855
856 #: src/resources/ui/virt-viewer.ui:246
830857 msgid "_Displays"
831 msgstr ""
832
833 #: ../src/resources/ui/virt-viewer.ui.h:16
858 msgstr "_Kijelzők"
859
860 #: src/resources/ui/virt-viewer.ui:255
834861 msgid "Release cursor"
835862 msgstr "Kurzor eleresztése"
836863
837 #: ../src/resources/ui/virt-viewer.ui.h:17
864 #: src/resources/ui/virt-viewer.ui:270
838865 msgid "_Send key"
839866 msgstr "_Billentyű leütése"
840867
841 #: ../src/resources/ui/virt-viewer.ui.h:18
868 #: src/resources/ui/virt-viewer.ui:279
842869 msgid "_Help"
843870 msgstr "_Súgó"
844871
845 #: ../src/resources/ui/virt-viewer.ui.h:19
872 #: src/resources/ui/virt-viewer.ui:290
846873 msgid "_Guest Details"
847874 msgstr "_Vendég részletei"
848875
849 #: ../src/resources/ui/virt-viewer.ui.h:20
876 #: src/resources/ui/virt-viewer.ui:297
850877 msgid "_About"
851 msgstr ""
852
853 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
878 msgstr "_Névjegy"
879
880 #: src/resources/ui/virt-viewer-guest-details.ui:7
854881 msgid "Guest Details"
855882 msgstr "Vendég részletei"
856883
857 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
884 #: src/resources/ui/virt-viewer-guest-details.ui:56
858885 msgid "Name:"
859886 msgstr "Név:"
860887
861 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
888 #: src/resources/ui/virt-viewer-guest-details.ui:68
862889 msgid "GUID:"
863890 msgstr "GUID:"
864891
865 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
892 #: src/resources/ui/virt-viewer-vm-connection.ui:7
866893 msgid "Choose a virtual machine"
867894 msgstr "Válasszon egy virtuális gépet"
868895
869 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
896 #: src/resources/ui/virt-viewer-vm-connection.ui:96
870897 msgid "Available virtual machines"
871898 msgstr "Elérhető virtuális gépek"
872899
873 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
900 #: src/resources/ui/virt-viewer-preferences.ui:8
874901 msgid "Preferences"
875902 msgstr "Beállítások"
876903
877 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
904 #: src/resources/ui/virt-viewer-preferences.ui:48
878905 msgid "Folder sharing"
879906 msgstr "Mappamegosztás"
880907
881 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
908 #: src/resources/ui/virt-viewer-preferences.ui:70
882909 msgid "Share folder"
883910 msgstr "Mappa megosztása"
884911
885 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
912 #: src/resources/ui/virt-viewer-preferences.ui:82
886913 msgid "Read-only"
887914 msgstr "Csak olvasható"
888915
889 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
916 #: src/resources/ui/virt-viewer-preferences.ui:96
917 msgid "Share clipboard"
918 msgstr ""
919
920 #: src/resources/ui/virt-viewer-preferences.ui:132
890921 msgid "Spice"
891922 msgstr "Spice"
923
924 #~ msgid "virt-manager.org"
925 #~ msgstr "virt-manager.org"
926
927 #~ msgid "virt-viewer"
928 #~ msgstr "virt-viewer"
Binary diff not shown
+264
-252
po/ia.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Interlingua\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/id.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Indonesian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Iloko\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/is.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Icelandic\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n%10!=1 || n%100==11)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+269
-253
po/it.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1313 # Frediano Ziglio <fziglio@redhat.com>, 2016. #zanata
1414 msgid ""
1515 msgstr ""
16 "Project-Id-Version: PACKAGE VERSION\n"
17 "Report-Msgid-Bugs-To: \n"
18 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
19 "PO-Revision-Date: 2016-09-07 08:52-0400\n"
16 "Project-Id-Version: virt-viewer 9.0\n"
17 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
18 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
19 "PO-Revision-Date: 2016-09-07 08:52+0000\n"
2020 "Last-Translator: Frediano Ziglio <fziglio@redhat.com>\n"
2121 "Language-Team: Italian (http://www.transifex.com/projects/p/virt-viewer/"
2222 "language/it/)\n"
2525 "Content-Type: text/plain; charset=UTF-8\n"
2626 "Content-Transfer-Encoding: 8bit\n"
2727 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
28 "X-Generator: Zanata 3.9.6\n"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:1
31 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
28 "X-Generator: Zanata 4.6.2\n"
29
30 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
31 #: src/remote-viewer-main.c:39
3232 msgid "Remote Viewer"
3333 msgstr "Visualizzatore remoto"
3434
35 #: ../data/remote-viewer.appdata.xml.in.h:2
35 #: data/remote-viewer.appdata.xml.in:7
3636 msgid "Remotely access virtual machines"
3737 msgstr "Accede a macchine virtuali da remoto"
3838
39 #: ../data/remote-viewer.appdata.xml.in.h:3
39 #: data/remote-viewer.appdata.xml.in:9
4040 msgid ""
4141 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
4242 "time it supports guest OS using the VNC or SPICE protocols. Further "
5050 "visualizzatore può connettersi direttamente sia a guest locali che remoti, "
5151 "potendo usare la crittografia SSL/TLS."
5252
53 #: ../data/remote-viewer.desktop.in.h:2
53 #: data/remote-viewer.desktop.in:4
5454 msgid "Access remote desktops"
5555 msgstr "Accedi desktop remoti"
5656
57 #: ../data/virt-viewer-mime.xml.in.h:1
58 msgid "Virt-Viewer connection file"
59 msgstr "File di connessione Virt-Viewer"
60
61 #: ../src/remote-viewer-iso-list-dialog.c:160
57 #: src/remote-viewer-iso-list-dialog.c:156
6258 msgid "Failed to fetch CD names"
6359 msgstr ""
6460
65 #: ../src/remote-viewer-iso-list-dialog.c:212
61 #: src/remote-viewer-iso-list-dialog.c:205
6662 msgid "<b>Loading...</b>"
6763 msgstr ""
6864
69 #: ../src/remote-viewer-iso-list-dialog.c:285
65 #: src/remote-viewer-iso-list-dialog.c:276
7066 msgid "Refresh"
7167 msgstr ""
7268
73 #: ../src/remote-viewer-iso-list-dialog.c:286
69 #: src/remote-viewer-iso-list-dialog.c:277
7470 msgid "Close"
7571 msgstr ""
7672
77 #: ../src/remote-viewer-iso-list-dialog.c:306
73 #: src/remote-viewer-iso-list-dialog.c:297
7874 msgid "Unspecified error"
7975 msgstr ""
8076
81 #: ../src/remote-viewer-iso-list-dialog.c:328
77 #: src/remote-viewer-iso-list-dialog.c:318
8278 msgid "Failed to change CD"
8379 msgstr ""
8480
85 #: ../src/remote-viewer-iso-list-dialog.c:380
81 #: src/remote-viewer-iso-list-dialog.c:370
8682 msgid "Change CD"
8783 msgstr ""
8884
89 #: ../src/remote-viewer.c:118
85 #: src/remote-viewer.c:116
9086 msgid "Set window title"
9187 msgstr "Imposta il titolo della finestra"
9288
93 #: ../src/remote-viewer.c:125
89 #: src/remote-viewer.c:123
9490 msgid "Remote viewer client"
9591 msgstr "Client visualizzatore remoto"
9692
97 #: ../src/remote-viewer.c:150
98 #, c-format
93 #: src/remote-viewer.c:148
9994 msgid ""
10095 "\n"
10196 "Error: can't handle multiple URIs\n"
10499 "\n"
105100 "Errore: non posso gestire URI multipli\n"
106101
107 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
102 #: src/remote-viewer.c:162 src/virt-viewer.c:200
108103 #, c-format
109104 msgid "Run '%s --help' to see a full list of available command line options\n"
110105 msgstr ""
111106 "Eseguire '%s --help' per vedere la lista di opzioni linea di comando "
112107 "disponibili\n"
113108
114 #: ../src/remote-viewer.c:435
109 #: src/remote-viewer.c:429
115110 msgid "failed to parse ovirt uri"
116111 msgstr "impossibile analizzare ovirt uri"
117112
118 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
113 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
119114 msgid "Authentication was cancelled"
120115 msgstr "L'autenticazione è stata cancellata"
121116
122 #: ../src/remote-viewer.c:480
117 #: src/remote-viewer.c:472
123118 #, c-format
124119 msgid "oVirt VM %s is not running"
125120 msgstr "oVirt VM %s non è in esecuzione"
126121
127 #: ../src/remote-viewer.c:494
122 #: src/remote-viewer.c:486
128123 #, c-format
129124 msgid "oVirt VM %s has no display"
130125 msgstr "oVirt VM %s non ha alcun display"
131126
132 #: ../src/remote-viewer.c:520
127 #: src/remote-viewer.c:512
133128 #, c-format
134129 msgid "oVirt VM %s has no host information"
135130 msgstr "oVirt VM %s non ha informazioni sull'host"
136131
137 #: ../src/remote-viewer.c:531
138 #, c-format
139 msgid "oVirt VM %s has unknown display type: %d"
140 msgstr "oVirt VM %s presenta un tipo di display sconosciuto: %d"
141
142 #: ../src/remote-viewer.c:713
132 #: src/remote-viewer.c:523
133 #, c-format
134 msgid "oVirt VM %s has unknown display type: %u"
135 msgstr ""
136
137 #: src/remote-viewer.c:690
138 msgid "Couldn't open oVirt session: "
139 msgstr "impossibile aprire la sessione oVirt:"
140
141 #: src/remote-viewer.c:718
143142 msgid "Failed to initiate connection"
144143 msgstr "Inizializzazione connessione fallita"
145144
146 #: ../src/remote-viewer.c:742
145 #: src/remote-viewer.c:747
147146 msgid "No connection was chosen"
148147 msgstr "Nessuna connessione selezionata"
149148
150 #: ../src/remote-viewer.c:759
149 #: src/remote-viewer.c:764
151150 msgid "Failed to read stdin: "
152151 msgstr ""
153152
154 #: ../src/remote-viewer.c:776
153 #: src/remote-viewer.c:781
155154 #, c-format
156155 msgid "Invalid file %s: "
157156 msgstr "File %s non valido"
158157
159 #: ../src/remote-viewer.c:786
158 #: src/remote-viewer.c:791
160159 msgid "Cannot determine the connection type from URI"
161160 msgstr "Impossibile determinare il tipo di connessione dall'URI"
162161
163 #: ../src/remote-viewer.c:792
164 msgid "Couldn't open oVirt session: "
165 msgstr "impossibile aprire la sessione oVirt:"
166
167 #: ../src/remote-viewer.c:815
162 #: src/remote-viewer.c:810
168163 #, c-format
169164 msgid "Unable to connect: %s"
170165 msgstr ""
171166
172 #.
173 #. * Local variables:
174 #. * c-indent-level: 4
175 #. * c-basic-offset: 4
176 #. * indent-tabs-mode: nil
177 #. * End:
178 #.
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
167 #: src/resources/ui/remote-viewer-connect.ui:6
180168 msgid "Connection details"
181169 msgstr "Dettagli connessione"
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
171 #: src/resources/ui/remote-viewer-connect.ui:24
184172 msgid "Connection _Address"
185173 msgstr "Indirizzo connessione"
186174
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:54
188176 msgid "For example, spice://foo.example.org:5900"
189177 msgstr "Per esempio, spice://foo.example.org:5900"
190178
191 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
179 #: src/resources/ui/remote-viewer-connect.ui:78
192180 msgid "Recent connections"
193181 msgstr "Connessioni recenti"
194182
195 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
196 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
197 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
198 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
183 #: src/resources/ui/remote-viewer-connect.ui:120
184 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
185 #: src/resources/ui/virt-viewer-vm-connection.ui:24
186 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
199187 msgid "_Cancel"
200188 msgstr "_Cancella"
201189
202 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
190 #: src/resources/ui/remote-viewer-connect.ui:134
191 #: src/resources/ui/virt-viewer-vm-connection.ui:38
204192 msgid "C_onnect"
205193 msgstr "C_onnetti"
206194
207 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
195 #: src/resources/ui/remote-viewer-iso-list.ui:28
208196 msgid "Loading..."
209197 msgstr ""
210198
211 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
199 #: src/resources/ui/remote-viewer-iso-list.ui:78
212200 msgid "Select ISO"
213201 msgstr ""
214202
215 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
203 #: src/resources/ui/remote-viewer-iso-list.ui:116
216204 msgid "Selected"
217205 msgstr ""
218206
219 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
220 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
207 #: src/resources/ui/remote-viewer-iso-list.ui:129
208 #: src/resources/ui/virt-viewer-vm-connection.ui:72
221209 msgid "Name"
222210 msgstr "Nome"
223211
224 #: ../src/resources/ui/virt-viewer-about.ui.h:1
212 #: src/resources/ui/virt-viewer-about.ui:7
225213 msgid "About Virt-Viewer"
226214 msgstr "Informazioni su Virt-Viewer"
227215
228 #: ../src/resources/ui/virt-viewer-about.ui.h:2
216 #: src/resources/ui/virt-viewer-about.ui:16
229217 msgid ""
230218 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
231219 "Copyright (C) 2007-2014 Red Hat, Inc."
233221 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
234222 "Copyright (C) 2007-2014 Red Hat, Inc."
235223
236 #: ../src/resources/ui/virt-viewer-about.ui.h:4
224 #: src/resources/ui/virt-viewer-about.ui:18
237225 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
238226 msgstr "Un client desktop remoto creato con GTK-VNC, SPICE-GTK e libvirt"
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:5
241 msgid "virt-manager.org"
242 msgstr "virt-manager.org"
243
244 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228 #: src/resources/ui/virt-viewer-about.ui:20
229 msgid "gitlab.com/virt-viewer/virt-viewer"
230 msgstr ""
231
232 #: src/resources/ui/virt-viewer-about.ui:21
245233 msgid ""
246234 "This program is free software; you can redistribute it and/or modify\n"
247235 "it under the terms of the GNU General Public License as published by\n"
271259 "Public License; in caso contrario scrivere alla Free Software Foundation, "
272260 "Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
273261
274 #: ../src/resources/ui/virt-viewer-about.ui.h:20
262 #: src/resources/ui/virt-viewer-about.ui:38
275263 msgid "The Fedora Translation Team"
276264 msgstr "Il Fedora Translation Team"
277265
278 #: ../src/virt-viewer-app.c:459
266 #: src/virt-viewer-app.c:594
279267 msgid "Do you want to close the session?"
280268 msgstr "Desideri terminare la sessione?"
281269
282 #: ../src/virt-viewer-app.c:461
270 #: src/virt-viewer-app.c:596
283271 msgid "Do not ask me again"
284272 msgstr "Non chiedermelo più"
285273
286 #: ../src/virt-viewer-app.c:655
274 #: src/virt-viewer-app.c:767
287275 #, c-format
288276 msgid "Address is too long for unix socket_path: %s"
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:665
279 #: src/virt-viewer-app.c:777
292280 #, c-format
293281 msgid "Creating unix socket failed: %s"
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:671
284 #: src/virt-viewer-app.c:783
297285 #, c-format
298286 msgid "Connecting to unix socket failed: %s"
299287 msgstr ""
300288
301 #: ../src/virt-viewer-app.c:955
289 #: src/virt-viewer-app.c:1077
302290 #, c-format
303291 msgid "Waiting for display %d..."
304292 msgstr "In attesa del display %d..."
305293
306 #: ../src/virt-viewer-app.c:1062
294 #: src/virt-viewer-app.c:1193
307295 #, c-format
308296 msgid "Unsupported graphic type '%s'"
309297 msgstr "Tipo di grafico '%s' non supportato"
310298
311 #: ../src/virt-viewer-app.c:1146
299 #: src/virt-viewer-app.c:1277
312300 msgid "Connect to ssh failed."
313301 msgstr "Connessione a ssh fallita."
314302
315 #: ../src/virt-viewer-app.c:1161
303 #: src/virt-viewer-app.c:1292
316304 #, c-format
317305 msgid "Can't connect to channel: %s"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1163
308 #: src/virt-viewer-app.c:1294
321309 msgid "only SSH or unix socket connection supported."
322310 msgstr ""
323311
324 #: ../src/virt-viewer-app.c:1176
312 #: src/virt-viewer-app.c:1311
325313 msgid "Connect to channel unsupported."
326314 msgstr "Connessione al canale non supportata."
327315
328 #: ../src/virt-viewer-app.c:1238
316 #: src/virt-viewer-app.c:1376
329317 msgid "Display can only be attached through libvirt with --attach"
330318 msgstr "Il display può essere assegnato solo usando libvirt con --attach"
331319
332 #: ../src/virt-viewer-app.c:1263
320 #: src/virt-viewer-app.c:1401
333321 msgid "Connecting to graphic server"
334322 msgstr "Connessione al server grafico in corso"
335323
336 #: ../src/virt-viewer-app.c:1362
324 #: src/virt-viewer-app.c:1500
337325 msgid "Guest domain has shutdown"
338326 msgstr "Il dominio del guest si è arrestato"
339327
340 #: ../src/virt-viewer-app.c:1423
328 #: src/virt-viewer-app.c:1561
341329 msgid "Connected to graphic server"
342330 msgstr "Connesso al server grafico"
343331
344 #: ../src/virt-viewer-app.c:1452
332 #: src/virt-viewer-app.c:1590
345333 #, c-format
346334 msgid "Unable to connect to the graphic server %s"
347335 msgstr "Impossibile connettersi al server grafico %s"
348336
349 #: ../src/virt-viewer-app.c:1478
337 #: src/virt-viewer-app.c:1616
350338 #, c-format
351339 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
352340 msgstr ""
353341 "Impossibile eseguire l'autenticazione con il server desktop remoto su %s: "
354342 "%s\n"
355343
356 #: ../src/virt-viewer-app.c:1492
344 #: src/virt-viewer-app.c:1630
357345 #, c-format
358346 msgid "Unable to authenticate with remote desktop server: %s"
359347 msgstr ""
360348 "Impossibile eseguire l'autenticazione con il server desktop remoto su: %s"
361349
362 #: ../src/virt-viewer-app.c:1500
350 #: src/virt-viewer-app.c:1638
363351 #, c-format
364352 msgid "USB redirection error: %s"
365353 msgstr "Errore di reindirizzamento USB: %s"
366354
367 #: ../src/virt-viewer-app.c:1834
355 #: src/virt-viewer-app.c:2026
368356 #, c-format
369357 msgid "Zoom level must be within %d-%d\n"
370358 msgstr "Livello di Zoom deve essere tra %d-%d\n"
371359
372 #: ../src/virt-viewer-app.c:1887
360 #: src/virt-viewer-app.c:2081
373361 #, c-format
374362 msgid "%s\n"
375363 msgstr "%s\n"
376364
377 #: ../src/virt-viewer-app.c:1897
365 #: src/virt-viewer-app.c:2091
378366 #, c-format
379367 msgid "%s version %s"
380368 msgstr "%s versione %s"
381369
382 #: ../src/virt-viewer-app.c:2321
370 #: src/virt-viewer-app.c:2545
383371 #, c-format
384372 msgid "Display _%d"
385373 msgstr "Schermo _%d"
386374
387 #: ../src/virt-viewer-app.c:2577
375 #: src/virt-viewer-app.c:2829
388376 #, c-format
389377 msgid "Invalid kiosk-quit argument: %s"
390378 msgstr "Argomento kiosk-quit invalido: %s"
391379
392 #: ../src/virt-viewer-app.c:2588
380 #: src/virt-viewer-app.c:2840
393381 msgid "Display version information"
394382 msgstr "Mostra informazioni sulla versione"
395383
396 #: ../src/virt-viewer-app.c:2590
384 #: src/virt-viewer-app.c:2842
397385 msgid "Zoom level of window, in percentage"
398386 msgstr "Livello di zoom della finestra, in percentuale"
399387
400 #: ../src/virt-viewer-app.c:2592
388 #: src/virt-viewer-app.c:2844
401389 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
402390 msgstr ""
403391 "Apri in modalità schermo intero (modificare la risoluzione del guest per "
404392 "adattarla al client)"
405393
406 #: ../src/virt-viewer-app.c:2594
394 #: src/virt-viewer-app.c:2846
407395 msgid "Customise hotkeys"
408396 msgstr "Personalizza i tasti di scelta rapida"
409397
410 #: ../src/virt-viewer-app.c:2596
398 #: src/virt-viewer-app.c:2848
411399 msgid "Enable kiosk mode"
412400 msgstr "Abilita modalità Kiosk"
413401
414 #: ../src/virt-viewer-app.c:2598
402 #: src/virt-viewer-app.c:2850
415403 msgid "Quit on given condition in kiosk mode"
416404 msgstr "Esci dalla modalità kiosk in una data condizione"
417405
418 #: ../src/virt-viewer-app.c:2598
406 #: src/virt-viewer-app.c:2850
419407 msgid "<never|on-disconnect>"
420408 msgstr "<never|on-disconnect>"
421409
422 #: ../src/virt-viewer-app.c:2600
410 #: src/virt-viewer-app.c:2852
423411 msgid "Display verbose information"
424412 msgstr "Mostra informazioni dettagliate"
425413
426 #: ../src/virt-viewer-app.c:2602
414 #: src/virt-viewer-app.c:2854
427415 msgid "Display debugging information"
428416 msgstr "Mostra le informazioni di debug"
429417
430 #: ../src/virt-viewer-auth.c:89
418 #: src/virt-viewer-auth.c:89
431419 #, c-format
432420 msgid ""
433421 "Authentication is required for the %s connection to:\n"
440428 "<b>%s</b>\n"
441429 "\n"
442430
443 #: ../src/virt-viewer-auth.c:93
431 #: src/virt-viewer-auth.c:93
444432 #, c-format
445433 msgid "Authentication is required for the %s connection:\n"
446434 msgstr "Autenticazione necessaria per la connessione %s:\n"
447435
448 #.
449 #. * Local variables:
450 #. * c-indent-level: 4
451 #. * c-basic-offset: 4
452 #. * indent-tabs-mode: nil
453 #. * End:
454 #.
455 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
436 #: src/resources/ui/virt-viewer-auth.ui:7
456437 msgid "Authentication required"
457438 msgstr "Autenticazione necessaria"
458439
459 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
440 #: src/resources/ui/virt-viewer-auth.ui:42
460441 msgid "_OK"
461442 msgstr "_OK"
462443
463 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
464 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
465 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
444 #: src/resources/ui/virt-viewer-auth.ui:71
445 #: src/resources/ui/virt-viewer-guest-details.ui:82
446 #: src/resources/ui/virt-viewer-guest-details.ui:96
447 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
466448 msgid "label"
467449 msgstr "etichetta"
468450
469 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
451 #: src/resources/ui/virt-viewer-auth.ui:93
470452 msgid "Password:"
471453 msgstr "Password:"
472454
473 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
455 #: src/resources/ui/virt-viewer-auth.ui:105
474456 msgid "Username:"
475457 msgstr "Nome utente:"
476458
477 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
459 #: src/resources/ui/virt-viewer-auth.ui:137
478460 msgid "Show password"
479461 msgstr "Mostra password"
480462
481 #: ../src/virt-viewer-display-vnc.c:134
463 #: src/virt-viewer-display-vnc.c:130
482464 msgid "VNC does not provide GUID"
483465 msgstr "VNC non fornisce il GUID"
484466
485 #: ../src/virt-viewer-file-transfer-dialog.c:128
467 #: src/virt-viewer-display-vte.c:181
468 msgid "Console support is compiled out!"
469 msgstr ""
470
471 #: src/virt-viewer-file-transfer-dialog.c:124
486472 msgid "File Transfers"
487473 msgstr "Trasferimenti file"
488474
489 #: ../src/virt-viewer-file-transfer-dialog.c:154
475 #: src/virt-viewer-file-transfer-dialog.c:150
490476 msgid "Transferring 1 file..."
491477 msgstr ""
492478
493 #: ../src/virt-viewer-file-transfer-dialog.c:156
494 #, c-format
495 msgid "Transferring %d file of %d..."
496 msgid_plural "Transferring %d files of %d..."
479 #: src/virt-viewer-file-transfer-dialog.c:152
480 #, c-format
481 msgid "Transferring %u file of %u..."
482 msgid_plural "Transferring %u files of %u..."
497483 msgstr[0] ""
498
499 #: ../src/virt-viewer-file-transfer-dialog.c:228
500 #, c-format
501 msgid "An error caused the following file transfers to fail:%s"
502 msgstr ""
503
504 #: ../src/virt-viewer-main.c:38
484 msgstr[1] ""
485
486 #: src/virt-viewer-file-transfer-dialog.c:225
487 msgid "An error caused the following file transfers to fail:"
488 msgstr ""
489
490 #: src/virt-viewer-main.c:38
505491 msgid "Virt Viewer"
506492 msgstr "Virt Viewer"
507493
508 #: ../src/virt-viewer-session-spice.c:704
494 #: src/virt-viewer-session-spice.c:731
509495 msgid "Invalid password"
510496 msgstr "Passoword non valida"
511497
512 #. Create the widgets
513 #: ../src/virt-viewer-session-spice.c:802
498 #: src/virt-viewer-session-spice.c:829
514499 msgid "Select USB devices for redirection"
515500 msgstr "Seleziona i dispositivi USB per il reindirizzamento"
516501
517 #: ../src/virt-viewer-session-spice.c:804
518 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
502 #: src/virt-viewer-session-spice.c:831
503 #: src/resources/ui/virt-viewer-guest-details.ui:23
519504 msgid "_Close"
520505 msgstr "_Chiudi"
521506
522 #: ../src/virt-viewer-session-vnc.c:162
523 #, c-format
524 msgid "Unsupported authentication type %d"
525 msgstr "Tipo di autenticazione %d non supportata"
526
527 #: ../src/virt-viewer-vm-connection.c:64
507 #: src/virt-viewer-session-spice.c:1019
508 msgid "Serial"
509 msgstr ""
510
511 #: src/virt-viewer-session-spice.c:1021
512 msgid "QEMU human monitor"
513 msgstr ""
514
515 #: src/virt-viewer-session-spice.c:1023
516 msgid "QEMU debug console"
517 msgstr ""
518
519 #: src/virt-viewer-session-vnc.c:158
520 #, c-format
521 msgid "Unsupported authentication type %u"
522 msgstr ""
523
524 #: src/virt-viewer-vm-connection.c:64
528525 msgid "No running virtual machine found"
529526 msgstr ""
530527
531 #: ../src/virt-viewer-vm-connection.c:93
528 #: src/virt-viewer-vm-connection.c:93
532529 msgid "No virtual machine was chosen"
533530 msgstr "Nessuna macchina virtuale selezionata"
534531
535 #: ../src/virt-viewer-window.c:544
532 #: src/virt-viewer-window.c:621
536533 msgid "Ctrl+Alt+_Del"
537534 msgstr "Ctrl+Alt+_Del"
538535
539 #: ../src/virt-viewer-window.c:545
536 #: src/virt-viewer-window.c:622
540537 msgid "Ctrl+Alt+_Backspace"
541538 msgstr "Ctrl+Alt+_Backspace"
542539
543 #: ../src/virt-viewer-window.c:547
540 #: src/virt-viewer-window.c:624
544541 msgid "Ctrl+Alt+F_1"
545542 msgstr "Ctrl+Alt+F_1"
546543
547 #: ../src/virt-viewer-window.c:548
544 #: src/virt-viewer-window.c:625
548545 msgid "Ctrl+Alt+F_2"
549546 msgstr "Ctrl+Alt+F_2"
550547
551 #: ../src/virt-viewer-window.c:549
548 #: src/virt-viewer-window.c:626
552549 msgid "Ctrl+Alt+F_3"
553550 msgstr "Ctrl+Alt+F_3"
554551
555 #: ../src/virt-viewer-window.c:550
552 #: src/virt-viewer-window.c:627
556553 msgid "Ctrl+Alt+F_4"
557554 msgstr "Ctrl+Alt+F_4"
558555
559 #: ../src/virt-viewer-window.c:551
556 #: src/virt-viewer-window.c:628
560557 msgid "Ctrl+Alt+F_5"
561558 msgstr "Ctrl+Alt+F_5"
562559
563 #: ../src/virt-viewer-window.c:552
560 #: src/virt-viewer-window.c:629
564561 msgid "Ctrl+Alt+F_6"
565562 msgstr "Ctrl+Alt+F_6"
566563
567 #: ../src/virt-viewer-window.c:553
564 #: src/virt-viewer-window.c:630
568565 msgid "Ctrl+Alt+F_7"
569566 msgstr "Ctrl+Alt+F_7"
570567
571 #: ../src/virt-viewer-window.c:554
568 #: src/virt-viewer-window.c:631
572569 msgid "Ctrl+Alt+F_8"
573570 msgstr "Ctrl+Alt+F_8"
574571
575 #: ../src/virt-viewer-window.c:555
572 #: src/virt-viewer-window.c:632
576573 msgid "Ctrl+Alt+F_9"
577574 msgstr "Ctrl+Alt+F_9"
578575
579 #: ../src/virt-viewer-window.c:556
576 #: src/virt-viewer-window.c:633
580577 msgid "Ctrl+Alt+F1_0"
581578 msgstr "Ctrl+Alt+F1_0"
582579
583 #: ../src/virt-viewer-window.c:557
580 #: src/virt-viewer-window.c:634
584581 msgid "Ctrl+Alt+F11"
585582 msgstr "Ctrl+Alt+F11"
586583
587 #: ../src/virt-viewer-window.c:558
584 #: src/virt-viewer-window.c:635
588585 msgid "Ctrl+Alt+F12"
589586 msgstr "Ctrl+Alt+F12"
590587
591 #: ../src/virt-viewer-window.c:953
588 #: src/virt-viewer-window.c:637
589 msgid "_PrintScreen"
590 msgstr ""
591
592 #: src/virt-viewer-window.c:1030
592593 #, c-format
593594 msgid "Unable to determine image format for file '%s'"
594595 msgstr ""
595596
596 #: ../src/virt-viewer-window.c:980
597 #: src/virt-viewer-window.c:1053
598 msgid "Save screenshot"
599 msgstr ""
600
601 #: src/virt-viewer-window.c:1057
597602 msgid "_Save"
598603 msgstr "_Salva"
599604
600 #: ../src/virt-viewer-window.c:988
605 #: src/virt-viewer-window.c:1065
601606 msgid "Screenshot.png"
602607 msgstr ""
603608
604 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
609 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
605610 msgid "Unknown"
606611 msgstr "Sconosciuto"
607612
608 #: ../src/virt-viewer-window.c:1152
613 #: src/virt-viewer-window.c:1237
609614 msgid "Unable to connnect to oVirt"
610615 msgstr ""
611616
612 #: ../src/virt-viewer-window.c:1175
617 #: src/virt-viewer-window.c:1260
613618 msgid "Disconnect"
614619 msgstr "Scollega"
615620
616 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
621 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
617622 msgid "USB device selection"
618623 msgstr "Selezione dispositivo USB"
619624
620 #: ../src/virt-viewer-window.c:1193
625 #: src/virt-viewer-window.c:1278
621626 msgid "Send key combination"
622627 msgstr "Invia combinazione di tasti"
623628
624 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
629 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
625630 msgid "Leave fullscreen"
626631 msgstr "Lascia a schermo intero"
627632
628 #: ../src/virt-viewer-window.c:1279
633 #: src/virt-viewer-window.c:1364
629634 msgid "Ctrl+Alt"
630635 msgstr "Ctrl+Alt"
631636
632 #: ../src/virt-viewer-window.c:1282
637 #: src/virt-viewer-window.c:1367
633638 #, c-format
634639 msgid "(Press %s to release pointer)"
635640 msgstr "(Premere %s per rilasciare il puntatore)"
636641
637 #. translators:
638 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
639 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
640 #.
641 #: ../src/virt-viewer-window.c:1293
642 #: src/virt-viewer-window.c:1378
642643 #, c-format
643644 msgid "%s%s%s - %s"
644645 msgstr "%s%s%s - %s"
645646
646 #. translators: <space>
647 #: ../src/virt-viewer-window.c:1297
647 #: src/virt-viewer-window.c:1382
648648 msgid " "
649649 msgstr " "
650650
651 #: ../src/virt-viewer-file.c:862
651 #: src/virt-viewer-file.c:875
652652 #, c-format
653653 msgid ""
654654 "At least %s version %s is required to setup this connection, see %s for "
657657 "Per impostare questa connessione è necessario almeno %s versione %s, per "
658658 "informazioni consultare %s"
659659
660 #: ../src/virt-viewer-file.c:870
660 #: src/virt-viewer-file.c:883
661661 #, c-format
662662 msgid "At least %s version %s is required to setup this connection"
663663 msgstr "%s versione %s è requisito minimo per configurare questa connessione"
664664
665 #: ../src/virt-viewer.c:133
665 #: src/virt-viewer.c:131
666666 msgid "Direct connection with no automatic tunnels"
667667 msgstr "Connessione diretta con nessun tunnel automatico"
668668
669 #: ../src/virt-viewer.c:135
669 #: src/virt-viewer.c:133
670670 msgid "Attach to the local display using libvirt"
671671 msgstr "Allega al display locale usando libvirt"
672672
673 #: ../src/virt-viewer.c:137
673 #: src/virt-viewer.c:135
674674 msgid "Connect to hypervisor"
675675 msgstr "Connetti con l'hypervisor"
676676
677 #: ../src/virt-viewer.c:139
677 #: src/virt-viewer.c:137
678678 msgid "Wait for domain to start"
679679 msgstr "Attendi l'avvio del dominio"
680680
681 #: ../src/virt-viewer.c:141
681 #: src/virt-viewer.c:139
682682 msgid "Reconnect to domain upon restart"
683683 msgstr "Riconnetti con il dominio previo riavvio"
684684
685 #: ../src/virt-viewer.c:143
685 #: src/virt-viewer.c:141
686686 msgid "Select the virtual machine only by its name"
687687 msgstr ""
688688
689 #: ../src/virt-viewer.c:145
689 #: src/virt-viewer.c:143
690690 msgid "Select the virtual machine only by its id"
691691 msgstr ""
692692
693 #: ../src/virt-viewer.c:147
693 #: src/virt-viewer.c:145
694694 msgid "Select the virtual machine only by its uuid"
695695 msgstr ""
696696
697 #: ../src/virt-viewer.c:154
697 #: src/virt-viewer.c:152
698698 msgid "Virtual machine graphical console"
699699 msgstr "Console grafica della macchina virtuale"
700700
701 #: ../src/virt-viewer.c:173
701 #: src/virt-viewer.c:171
702702 #, c-format
703703 msgid ""
704704 "\n"
706706 "\n"
707707 msgstr ""
708708
709 #: ../src/virt-viewer.c:185
709 #: src/virt-viewer.c:183
710710 #, c-format
711711 msgid ""
712712 "\n"
714714 "\n"
715715 msgstr ""
716716
717 #: ../src/virt-viewer.c:300
717 #: src/virt-viewer.c:296
718718 msgid "Waiting for guest domain to re-start"
719719 msgstr "In attesa del riavvio del dominio guest"
720720
721 #: ../src/virt-viewer.c:554
721 #: src/virt-viewer.c:550
722722 #, c-format
723723 msgid "Cannot determine the graphic type for the guest %s"
724724 msgstr "Impossibile determinare il tipo grafico per il guest %s"
725725
726 #: ../src/virt-viewer.c:603
726 #: src/virt-viewer.c:599
727727 #, c-format
728728 msgid "Cannot determine the host for the guest %s"
729729 msgstr "Impossibile determinare l'host per il guest %s"
730730
731 #: ../src/virt-viewer.c:631
731 #: src/virt-viewer.c:627
732732 #, c-format
733733 msgid "Guest '%s' is not reachable"
734734 msgstr "Il guest '%s' non è raggiungibile"
735735
736 #: ../src/virt-viewer.c:860
736 #: src/virt-viewer.c:856
737737 #, c-format
738738 msgid "Virtual machine %s is not running"
739739 msgstr "La macchina virtuale %s non è in esecuzione"
740740
741 #: ../src/virt-viewer.c:884
741 #: src/virt-viewer.c:881
742742 msgid "Waiting for libvirt to start"
743743 msgstr "In attesa dell'avvio di libvirt"
744744
745 #: ../src/virt-viewer.c:888
745 #: src/virt-viewer.c:885
746746 msgid "Finding guest domain"
747747 msgstr "Ricerca dominio guest in corso"
748748
749 #: ../src/virt-viewer.c:892
749 #: src/virt-viewer.c:889
750750 msgid "Waiting for guest domain to be created"
751751 msgstr "In attesa di creazione del dominio guest"
752752
753 #: ../src/virt-viewer.c:918
753 #: src/virt-viewer.c:921
754754 msgid "Checking guest domain status"
755755 msgstr "Controllo stato del dominio guest in corso"
756756
757 #: ../src/virt-viewer.c:921
757 #: src/virt-viewer.c:924
758758 msgid "Cannot get guest state"
759759 msgstr "Impossibile ottenere lo stato del guest"
760760
761 #: ../src/virt-viewer.c:927
761 #: src/virt-viewer.c:930
762762 msgid "Waiting for guest domain to start"
763763 msgstr "In attesa dell'avvio del dominio guest"
764764
765 #: ../src/virt-viewer.c:1040
765 #: src/virt-viewer.c:1044
766766 #, c-format
767767 msgid "Unable to connect to libvirt with URI: %s."
768768 msgstr "Impossibile connettersi a libvirt con URI: %s."
769769
770 #: ../src/virt-viewer.c:1041
770 #: src/virt-viewer.c:1045
771771 msgid "[none]"
772772 msgstr "[nessuno]"
773773
774 #: ../src/virt-viewer.c:1048
774 #: src/virt-viewer.c:1052
775775 msgid "Authentication failed."
776776 msgstr "Autenticazione fallita."
777777
778 #: ../src/virt-viewer.c:1108
778 #: src/virt-viewer.c:1112
779779 msgid "Failed to connect: "
780780 msgstr "Impossibile collegarsi:"
781781
782 #.
783 #. * Local variables:
784 #. * c-indent-level: 4
785 #. * c-basic-offset: 4
786 #. * indent-tabs-mode: nil
787 #. * End:
788 #.
789 #: ../src/resources/ui/virt-viewer.ui.h:1
782 #: src/resources/ui/virt-viewer.ui:28
790783 msgid "_File"
791784 msgstr "_File"
792785
793 #: ../src/resources/ui/virt-viewer.ui.h:2
786 #: src/resources/ui/virt-viewer.ui:41
794787 msgid "_Screenshot"
795788 msgstr "Cattura _schermata"
796789
797 #: ../src/resources/ui/virt-viewer.ui.h:3
790 #: src/resources/ui/virt-viewer.ui:52
798791 msgid "_USB device selection"
799792 msgstr "Seleziona dispositivo _USB"
800793
801 #: ../src/resources/ui/virt-viewer.ui.h:4
794 #: src/resources/ui/virt-viewer.ui:62
802795 msgid "Smartcard insertion"
803796 msgstr "Inserimento Smartcard"
804797
805 #: ../src/resources/ui/virt-viewer.ui.h:5
798 #: src/resources/ui/virt-viewer.ui:72
806799 msgid "Smartcard removal"
807800 msgstr "Rimozione Smartcard"
808801
809 #: ../src/resources/ui/virt-viewer.ui.h:6
802 #: src/resources/ui/virt-viewer.ui:80
810803 msgid "_Change CD"
811804 msgstr "_Cambia CD"
812805
813 #: ../src/resources/ui/virt-viewer.ui.h:7
806 #: src/resources/ui/virt-viewer.ui:90
814807 msgid "_Preferences"
815808 msgstr "_Preferenze"
816809
817 #: ../src/resources/ui/virt-viewer.ui.h:8
810 #: src/resources/ui/virt-viewer.ui:103
818811 msgid "_Quit"
819812 msgstr "_Esci"
820813
821 #: ../src/resources/ui/virt-viewer.ui.h:9
814 #: src/resources/ui/virt-viewer.ui:119
815 msgid "_Machine"
816 msgstr ""
817
818 #: src/resources/ui/virt-viewer.ui:129
819 msgid "_Pause"
820 msgstr ""
821
822 #: src/resources/ui/virt-viewer.ui:144
823 msgid "_Reset"
824 msgstr ""
825
826 #: src/resources/ui/virt-viewer.ui:153
827 msgid "_Power down"
828 msgstr ""
829
830 #: src/resources/ui/virt-viewer.ui:167
822831 msgid "_View"
823832 msgstr "_Visualizza"
824833
825 #: ../src/resources/ui/virt-viewer.ui.h:10
834 #: src/resources/ui/virt-viewer.ui:180
826835 msgid "_Full screen"
827836 msgstr "Schermo intero"
828837
829 #: ../src/resources/ui/virt-viewer.ui.h:11
838 #: src/resources/ui/virt-viewer.ui:191
830839 msgid "_Zoom"
831840 msgstr "_Zoom"
832841
833 #: ../src/resources/ui/virt-viewer.ui.h:12
842 #: src/resources/ui/virt-viewer.ui:201
834843 msgid "Zoom _In"
835844 msgstr ""
836845
837 #: ../src/resources/ui/virt-viewer.ui.h:13
846 #: src/resources/ui/virt-viewer.ui:212
838847 msgid "Zoom _Out"
839848 msgstr ""
840849
841 #: ../src/resources/ui/virt-viewer.ui.h:14
850 #: src/resources/ui/virt-viewer.ui:229
842851 msgid "_Normal Size"
843852 msgstr "Dimensione _normale"
844853
845 #: ../src/resources/ui/virt-viewer.ui.h:15
854 #: src/resources/ui/virt-viewer.ui:246
846855 msgid "_Displays"
847856 msgstr "_Schermi"
848857
849 #: ../src/resources/ui/virt-viewer.ui.h:16
858 #: src/resources/ui/virt-viewer.ui:255
850859 msgid "Release cursor"
851860 msgstr "Rilascia il cursore"
852861
853 #: ../src/resources/ui/virt-viewer.ui.h:17
862 #: src/resources/ui/virt-viewer.ui:270
854863 msgid "_Send key"
855864 msgstr "_Invia combinazione tasti"
856865
857 #: ../src/resources/ui/virt-viewer.ui.h:18
866 #: src/resources/ui/virt-viewer.ui:279
858867 msgid "_Help"
859868 msgstr "_Aiuto"
860869
861 #: ../src/resources/ui/virt-viewer.ui.h:19
870 #: src/resources/ui/virt-viewer.ui:290
862871 msgid "_Guest Details"
863872 msgstr "Dettagli del _Guest"
864873
865 #: ../src/resources/ui/virt-viewer.ui.h:20
874 #: src/resources/ui/virt-viewer.ui:297
866875 msgid "_About"
867876 msgstr "Informazioni"
868877
869 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
878 #: src/resources/ui/virt-viewer-guest-details.ui:7
870879 msgid "Guest Details"
871880 msgstr "Dettagli del guest"
872881
873 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
882 #: src/resources/ui/virt-viewer-guest-details.ui:56
874883 msgid "Name:"
875884 msgstr "Nome:"
876885
877 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
886 #: src/resources/ui/virt-viewer-guest-details.ui:68
878887 msgid "GUID:"
879888 msgstr "GUID:"
880889
881 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
890 #: src/resources/ui/virt-viewer-vm-connection.ui:7
882891 msgid "Choose a virtual machine"
883892 msgstr "Seleziona una macchina virtuale"
884893
885 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
894 #: src/resources/ui/virt-viewer-vm-connection.ui:96
886895 msgid "Available virtual machines"
887896 msgstr "Macchina virtuale disponibile"
888897
889 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
898 #: src/resources/ui/virt-viewer-preferences.ui:8
890899 msgid "Preferences"
891900 msgstr "Preferenze"
892901
893 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
902 #: src/resources/ui/virt-viewer-preferences.ui:48
894903 msgid "Folder sharing"
895904 msgstr "Condivisione cartella"
896905
897 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
906 #: src/resources/ui/virt-viewer-preferences.ui:70
898907 msgid "Share folder"
899908 msgstr "Condividi cartella"
900909
901 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
910 #: src/resources/ui/virt-viewer-preferences.ui:82
902911 msgid "Read-only"
903912 msgstr "Sola-lettura"
904913
905 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
914 #: src/resources/ui/virt-viewer-preferences.ui:96
915 msgid "Share clipboard"
916 msgstr ""
917
918 #: src/resources/ui/virt-viewer-preferences.ui:132
906919 msgid "Spice"
907920 msgstr "Spice"
921
922 #~ msgid "virt-manager.org"
923 #~ msgstr "virt-manager.org"
Binary diff not shown
+320
-298
po/ja.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
88 # Tomoyuki KATO <tomo@dream.daynight.jp>, 2012-2013
99 # Hajime Taira <htaira@fedoraproject.org>, 2015. #zanata
1010 # Hajime Taira <htaira@fedoraproject.org>, 2017. #zanata
11 # Casey Jones <nahareport@live.com>, 2018. #zanata
12 # Hajime Taira <htaira@fedoraproject.org>, 2018. #zanata
1113 msgid ""
1214 msgstr ""
13 "Project-Id-Version: PACKAGE VERSION\n"
14 "Report-Msgid-Bugs-To: \n"
15 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
16 "PO-Revision-Date: 2017-02-25 02:16-0500\n"
15 "Project-Id-Version: virt-viewer 9.0\n"
16 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
17 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
18 "PO-Revision-Date: 2018-02-26 12:49+0000\n"
1719 "Last-Translator: Hajime Taira <htaira@fedoraproject.org>\n"
1820 "Language-Team: Japanese (http://www.transifex.com/projects/p/virt-viewer/"
1921 "language/ja/)\n"
2224 "Content-Type: text/plain; charset=UTF-8\n"
2325 "Content-Transfer-Encoding: 8bit\n"
2426 "Plural-Forms: nplurals=1; plural=0;\n"
25 "X-Generator: Zanata 3.9.6\n"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:1
28 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
27 "X-Generator: Zanata 4.6.2\n"
28
29 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
30 #: src/remote-viewer-main.c:39
2931 msgid "Remote Viewer"
3032 msgstr "リモートビューアー"
3133
32 #: ../data/remote-viewer.appdata.xml.in.h:2
34 #: data/remote-viewer.appdata.xml.in:7
3335 msgid "Remotely access virtual machines"
3436 msgstr "仮想マシンへリモートアクセス"
3537
36 #: ../data/remote-viewer.appdata.xml.in.h:3
38 #: data/remote-viewer.appdata.xml.in:9
3739 msgid ""
3840 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3941 "time it supports guest OS using the VNC or SPICE protocols. Further "
4850 "ローカルもしくはリモートでホストされたゲストOSの両方に直接接続する事ができま"
4951 "す。"
5052
51 #: ../data/remote-viewer.desktop.in.h:2
53 #: data/remote-viewer.desktop.in:4
5254 msgid "Access remote desktops"
5355 msgstr "リモートデスクトップにアクセスする"
5456
55 #: ../data/virt-viewer-mime.xml.in.h:1
56 msgid "Virt-Viewer connection file"
57 msgstr "Virt-Viewer 接続ファイル"
58
59 #: ../src/remote-viewer-iso-list-dialog.c:160
57 #: src/remote-viewer-iso-list-dialog.c:156
6058 msgid "Failed to fetch CD names"
61 msgstr ""
62
63 #: ../src/remote-viewer-iso-list-dialog.c:212
59 msgstr "CDイメージ名の取得に失敗しました"
60
61 #: src/remote-viewer-iso-list-dialog.c:205
6462 msgid "<b>Loading...</b>"
65 msgstr ""
66
67 #: ../src/remote-viewer-iso-list-dialog.c:285
63 msgstr "<b>読み込み中...</b>"
64
65 #: src/remote-viewer-iso-list-dialog.c:276
6866 msgid "Refresh"
69 msgstr ""
70
71 #: ../src/remote-viewer-iso-list-dialog.c:286
67 msgstr "更新"
68
69 #: src/remote-viewer-iso-list-dialog.c:277
7270 msgid "Close"
73 msgstr ""
74
75 #: ../src/remote-viewer-iso-list-dialog.c:306
71 msgstr "閉じる"
72
73 #: src/remote-viewer-iso-list-dialog.c:297
7674 msgid "Unspecified error"
77 msgstr ""
78
79 #: ../src/remote-viewer-iso-list-dialog.c:328
75 msgstr "原因不明のエラー"
76
77 #: src/remote-viewer-iso-list-dialog.c:318
8078 msgid "Failed to change CD"
81 msgstr ""
82
83 #: ../src/remote-viewer-iso-list-dialog.c:380
79 msgstr "CDの変更に失敗しました"
80
81 #: src/remote-viewer-iso-list-dialog.c:370
8482 msgid "Change CD"
85 msgstr ""
86
87 #: ../src/remote-viewer.c:118
83 msgstr "CDの変更"
84
85 #: src/remote-viewer.c:116
8886 msgid "Set window title"
8987 msgstr "ウィンドウタイトルの設定"
9088
91 #: ../src/remote-viewer.c:125
89 #: src/remote-viewer.c:123
9290 msgid "Remote viewer client"
9391 msgstr "リモートビューアークライアント"
9492
95 #: ../src/remote-viewer.c:150
96 #, c-format
93 #: src/remote-viewer.c:148
9794 msgid ""
9895 "\n"
9996 "Error: can't handle multiple URIs\n"
10299 "\n"
103100 "エラー: 複数のURIを処理できません\n"
104101
105 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
102 #: src/remote-viewer.c:162 src/virt-viewer.c:200
106103 #, c-format
107104 msgid "Run '%s --help' to see a full list of available command line options\n"
108105 msgstr ""
109106 "利用可能なコマンドラインオプションの完全な一覧を確認するには '%s --help' を実"
110107 "行してください\n"
111108
112 #: ../src/remote-viewer.c:435
109 #: src/remote-viewer.c:429
113110 msgid "failed to parse ovirt uri"
114111 msgstr "oVirt URI の構文解析に失敗しました"
115112
116 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
113 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
117114 msgid "Authentication was cancelled"
118115 msgstr "認証が取り消されました"
119116
120 #: ../src/remote-viewer.c:480
117 #: src/remote-viewer.c:472
121118 #, c-format
122119 msgid "oVirt VM %s is not running"
123120 msgstr "oVirt上の仮想マシン %s は稼働していません"
124121
125 #: ../src/remote-viewer.c:494
122 #: src/remote-viewer.c:486
126123 #, c-format
127124 msgid "oVirt VM %s has no display"
128125 msgstr "oVirt上の仮想マシン %s にはディスプレイがありません"
129126
130 #: ../src/remote-viewer.c:520
127 #: src/remote-viewer.c:512
131128 #, c-format
132129 msgid "oVirt VM %s has no host information"
133130 msgstr "oVirt 上の仮想マシン %s はホストの情報がありません"
134131
135 #: ../src/remote-viewer.c:531
136 #, c-format
137 msgid "oVirt VM %s has unknown display type: %d"
138 msgstr "oVirt上の仮想マシン %s は不明なディスプレイタイプ: %d を搭載しています"
139
140 #: ../src/remote-viewer.c:713
132 #: src/remote-viewer.c:523
133 #, c-format
134 msgid "oVirt VM %s has unknown display type: %u"
135 msgstr ""
136
137 #: src/remote-viewer.c:690
138 msgid "Couldn't open oVirt session: "
139 msgstr "oVirt セッションを開けません:"
140
141 #: src/remote-viewer.c:718
141142 msgid "Failed to initiate connection"
142143 msgstr "接続の初期化に失敗しました"
143144
144 #: ../src/remote-viewer.c:742
145 #: src/remote-viewer.c:747
145146 msgid "No connection was chosen"
146147 msgstr "接続が選択されていません"
147148
148 #: ../src/remote-viewer.c:759
149 #: src/remote-viewer.c:764
149150 msgid "Failed to read stdin: "
150 msgstr ""
151
152 #: ../src/remote-viewer.c:776
151 msgstr "stdinの読み込みに失敗しました"
152
153 #: src/remote-viewer.c:781
153154 #, c-format
154155 msgid "Invalid file %s: "
155156 msgstr "無効なファイル %s:"
156157
157 #: ../src/remote-viewer.c:786
158 #: src/remote-viewer.c:791
158159 msgid "Cannot determine the connection type from URI"
159160 msgstr "URI から接続の種類を決定できません"
160161
161 #: ../src/remote-viewer.c:792
162 msgid "Couldn't open oVirt session: "
163 msgstr "oVirt セッションを開けません:"
164
165 #: ../src/remote-viewer.c:815
162 #: src/remote-viewer.c:810
166163 #, c-format
167164 msgid "Unable to connect: %s"
168 msgstr ""
169
170 #.
171 #. * Local variables:
172 #. * c-indent-level: 4
173 #. * c-basic-offset: 4
174 #. * indent-tabs-mode: nil
175 #. * End:
176 #.
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
165 msgstr "接続できません: %s"
166
167 #: src/resources/ui/remote-viewer-connect.ui:6
178168 msgid "Connection details"
179169 msgstr "接続の詳細"
180170
181 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
171 #: src/resources/ui/remote-viewer-connect.ui:24
182172 msgid "Connection _Address"
183173 msgstr "接続先アドレス(_A)"
184174
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:54
186176 msgid "For example, spice://foo.example.org:5900"
187177 msgstr "例: spice://foo.example.org:5900"
188178
189 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
179 #: src/resources/ui/remote-viewer-connect.ui:78
190180 msgid "Recent connections"
191181 msgstr "最近の接続"
192182
193 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
194 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
195 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
196 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
183 #: src/resources/ui/remote-viewer-connect.ui:120
184 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
185 #: src/resources/ui/virt-viewer-vm-connection.ui:24
186 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
197187 msgid "_Cancel"
198188 msgstr "取り消し(_C)"
199189
200 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
190 #: src/resources/ui/remote-viewer-connect.ui:134
191 #: src/resources/ui/virt-viewer-vm-connection.ui:38
202192 msgid "C_onnect"
203193 msgstr "接続(_O)"
204194
205 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
195 #: src/resources/ui/remote-viewer-iso-list.ui:28
206196 msgid "Loading..."
207 msgstr ""
208
209 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
197 msgstr "読み込み中..."
198
199 #: src/resources/ui/remote-viewer-iso-list.ui:78
210200 msgid "Select ISO"
211 msgstr ""
212
213 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
201 msgstr "ISO を選択する"
202
203 #: src/resources/ui/remote-viewer-iso-list.ui:116
214204 msgid "Selected"
215 msgstr ""
216
217 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
218 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
205 msgstr "選択済み"
206
207 #: src/resources/ui/remote-viewer-iso-list.ui:129
208 #: src/resources/ui/virt-viewer-vm-connection.ui:72
219209 msgid "Name"
220210 msgstr "名前"
221211
222 #: ../src/resources/ui/virt-viewer-about.ui.h:1
212 #: src/resources/ui/virt-viewer-about.ui:7
223213 msgid "About Virt-Viewer"
224214 msgstr "Virt-Viewerについて"
225215
226 #: ../src/resources/ui/virt-viewer-about.ui.h:2
216 #: src/resources/ui/virt-viewer-about.ui:16
227217 msgid ""
228218 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
229219 "Copyright (C) 2007-2014 Red Hat, Inc."
231221 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
232222 "Copyright (C) 2007-2014 Red Hat, Inc."
233223
234 #: ../src/resources/ui/virt-viewer-about.ui.h:4
224 #: src/resources/ui/virt-viewer-about.ui:18
235225 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
236226 msgstr ""
237227 "GTK-VNC, SPICE-GTK および libvirt でビルドされたリモートデスクトップクライア"
238228 "ント"
239229
240 #: ../src/resources/ui/virt-viewer-about.ui.h:5
241 msgid "virt-manager.org"
242 msgstr "virt-manager.org"
243
244 #: ../src/resources/ui/virt-viewer-about.ui.h:6
230 #: src/resources/ui/virt-viewer-about.ui:20
231 msgid "gitlab.com/virt-viewer/virt-viewer"
232 msgstr ""
233
234 #: src/resources/ui/virt-viewer-about.ui:21
245235 msgid ""
246236 "This program is free software; you can redistribute it and/or modify\n"
247237 "it under the terms of the GNU General Public License as published by\n"
271261 "along with this program; if not, write to the Free Software\n"
272262 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
273263
274 #: ../src/resources/ui/virt-viewer-about.ui.h:20
264 #: src/resources/ui/virt-viewer-about.ui:38
275265 msgid "The Fedora Translation Team"
276266 msgstr "The Fedora Translation Team"
277267
278 #: ../src/virt-viewer-app.c:459
268 #: src/virt-viewer-app.c:594
279269 msgid "Do you want to close the session?"
280270 msgstr "セッションを閉じますか?"
281271
282 #: ../src/virt-viewer-app.c:461
272 #: src/virt-viewer-app.c:596
283273 msgid "Do not ask me again"
284274 msgstr "二度と確認しない"
285275
286 #: ../src/virt-viewer-app.c:655
276 #: src/virt-viewer-app.c:767
287277 #, c-format
288278 msgid "Address is too long for unix socket_path: %s"
289279 msgstr "アドレスはUNIX ソケットパスに対して長すぎます: %s"
290280
291 #: ../src/virt-viewer-app.c:665
281 #: src/virt-viewer-app.c:777
292282 #, c-format
293283 msgid "Creating unix socket failed: %s"
294284 msgstr "UNIXソケットの作成に失敗しました: %s"
295285
296 #: ../src/virt-viewer-app.c:671
286 #: src/virt-viewer-app.c:783
297287 #, c-format
298288 msgid "Connecting to unix socket failed: %s"
299289 msgstr "UNIXソケットの接続に失敗しました: %s"
300290
301 #: ../src/virt-viewer-app.c:955
291 #: src/virt-viewer-app.c:1077
302292 #, c-format
303293 msgid "Waiting for display %d..."
304294 msgstr "ディスプレイ %d を待機中..."
305295
306 #: ../src/virt-viewer-app.c:1062
296 #: src/virt-viewer-app.c:1193
307297 #, c-format
308298 msgid "Unsupported graphic type '%s'"
309299 msgstr "サポートされないグラフィックス形式 '%s' です"
310300
311 #: ../src/virt-viewer-app.c:1146
301 #: src/virt-viewer-app.c:1277
312302 msgid "Connect to ssh failed."
313303 msgstr "SSH への接続に失敗しました。"
314304
315 #: ../src/virt-viewer-app.c:1161
305 #: src/virt-viewer-app.c:1292
316306 #, c-format
317307 msgid "Can't connect to channel: %s"
318 msgstr ""
319
320 #: ../src/virt-viewer-app.c:1163
308 msgstr "接続できませんチャンネル: %s"
309
310 #: src/virt-viewer-app.c:1294
321311 msgid "only SSH or unix socket connection supported."
322 msgstr ""
323
324 #: ../src/virt-viewer-app.c:1176
312 msgstr "SSHまたはunixソケット接続のみがサポートされています。"
313
314 #: src/virt-viewer-app.c:1311
325315 msgid "Connect to channel unsupported."
326316 msgstr "サポートされないチャネルに接続します。"
327317
328 #: ../src/virt-viewer-app.c:1238
318 #: src/virt-viewer-app.c:1376
329319 msgid "Display can only be attached through libvirt with --attach"
330320 msgstr "ディスプレイは libvirt にて --attach を指定する場合にのみ付与できます"
331321
332 #: ../src/virt-viewer-app.c:1263
322 #: src/virt-viewer-app.c:1401
333323 msgid "Connecting to graphic server"
334324 msgstr "グラフィックサーバーに接続中"
335325
336 #: ../src/virt-viewer-app.c:1362
326 #: src/virt-viewer-app.c:1500
337327 msgid "Guest domain has shutdown"
338328 msgstr "仮想マシンがシャットダウンしました"
339329
340 #: ../src/virt-viewer-app.c:1423
330 #: src/virt-viewer-app.c:1561
341331 msgid "Connected to graphic server"
342332 msgstr "グラフィックサーバーに接続"
343333
344 #: ../src/virt-viewer-app.c:1452
334 #: src/virt-viewer-app.c:1590
345335 #, c-format
346336 msgid "Unable to connect to the graphic server %s"
347337 msgstr "グラフィックサーバー %s に接続できません"
348338
349 #: ../src/virt-viewer-app.c:1478
339 #: src/virt-viewer-app.c:1616
350340 #, c-format
351341 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
352342 msgstr "%s 上のリモートデスクトップサーバーの認証で失敗しました: %s\n"
353343
354 #: ../src/virt-viewer-app.c:1492
344 #: src/virt-viewer-app.c:1630
355345 #, c-format
356346 msgid "Unable to authenticate with remote desktop server: %s"
357347 msgstr "リモートデスクトップサーバーの認証で失敗しました: %s"
358348
359 #: ../src/virt-viewer-app.c:1500
349 #: src/virt-viewer-app.c:1638
360350 #, c-format
361351 msgid "USB redirection error: %s"
362352 msgstr "USB リダイレクトエラー: %s"
363353
364 #: ../src/virt-viewer-app.c:1834
354 #: src/virt-viewer-app.c:2026
365355 #, c-format
366356 msgid "Zoom level must be within %d-%d\n"
367357 msgstr "ズームレベルは %d-%d の範囲内でなければいけません\n"
368358
369 #: ../src/virt-viewer-app.c:1887
359 #: src/virt-viewer-app.c:2081
370360 #, c-format
371361 msgid "%s\n"
372362 msgstr "%s\n"
373363
374 #: ../src/virt-viewer-app.c:1897
364 #: src/virt-viewer-app.c:2091
375365 #, c-format
376366 msgid "%s version %s"
377367 msgstr "%s バージョン %s"
378368
379 #: ../src/virt-viewer-app.c:2321
369 #: src/virt-viewer-app.c:2545
380370 #, c-format
381371 msgid "Display _%d"
382372 msgstr "ディスプレイ _%d"
383373
384 #: ../src/virt-viewer-app.c:2577
374 #: src/virt-viewer-app.c:2829
385375 #, c-format
386376 msgid "Invalid kiosk-quit argument: %s"
387377 msgstr "無効な kiosk-quit の引数: %s"
388378
389 #: ../src/virt-viewer-app.c:2588
379 #: src/virt-viewer-app.c:2840
390380 msgid "Display version information"
391381 msgstr "バージョン情報を表示します"
392382
393 #: ../src/virt-viewer-app.c:2590
383 #: src/virt-viewer-app.c:2842
394384 msgid "Zoom level of window, in percentage"
395385 msgstr "ウィンドウのズームレベル(パーセント単位)"
396386
397 #: ../src/virt-viewer-app.c:2592
387 #: src/virt-viewer-app.c:2844
398388 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
399389 msgstr ""
400390 "フルスクリーンモードで開きます (クライアントに適するよう、仮想マシンを自動調"
401391 "整します)"
402392
403 #: ../src/virt-viewer-app.c:2594
393 #: src/virt-viewer-app.c:2846
404394 msgid "Customise hotkeys"
405395 msgstr "ホットキーのカスタマイズ"
406396
407 #: ../src/virt-viewer-app.c:2596
397 #: src/virt-viewer-app.c:2848
408398 msgid "Enable kiosk mode"
409399 msgstr "Kiosk モードを有効化"
410400
411 #: ../src/virt-viewer-app.c:2598
401 #: src/virt-viewer-app.c:2850
412402 msgid "Quit on given condition in kiosk mode"
413403 msgstr "Kiosk モードを与えられた条件で終了します"
414404
415 #: ../src/virt-viewer-app.c:2598
405 #: src/virt-viewer-app.c:2850
416406 msgid "<never|on-disconnect>"
417407 msgstr "<never|on-disconnect>"
418408
419 #: ../src/virt-viewer-app.c:2600
409 #: src/virt-viewer-app.c:2852
420410 msgid "Display verbose information"
421411 msgstr "詳細情報を表示します"
422412
423 #: ../src/virt-viewer-app.c:2602
413 #: src/virt-viewer-app.c:2854
424414 msgid "Display debugging information"
425415 msgstr "デバッグ情報を表示します"
426416
427 #: ../src/virt-viewer-auth.c:89
417 #: src/virt-viewer-auth.c:89
428418 #, c-format
429419 msgid ""
430420 "Authentication is required for the %s connection to:\n"
437427 "<b>%s</b>\n"
438428 "\n"
439429
440 #: ../src/virt-viewer-auth.c:93
430 #: src/virt-viewer-auth.c:93
441431 #, c-format
442432 msgid "Authentication is required for the %s connection:\n"
443433 msgstr "%s 接続のために認証が必要です:\n"
444434
445 #.
446 #. * Local variables:
447 #. * c-indent-level: 4
448 #. * c-basic-offset: 4
449 #. * indent-tabs-mode: nil
450 #. * End:
451 #.
452 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
435 #: src/resources/ui/virt-viewer-auth.ui:7
453436 msgid "Authentication required"
454437 msgstr "認証が必要です"
455438
456 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
439 #: src/resources/ui/virt-viewer-auth.ui:42
457440 msgid "_OK"
458441 msgstr "_OK"
459442
460 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
461 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
462 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
443 #: src/resources/ui/virt-viewer-auth.ui:71
444 #: src/resources/ui/virt-viewer-guest-details.ui:82
445 #: src/resources/ui/virt-viewer-guest-details.ui:96
446 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
463447 msgid "label"
464448 msgstr "ラベル"
465449
466 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
450 #: src/resources/ui/virt-viewer-auth.ui:93
467451 msgid "Password:"
468452 msgstr "パスワード:"
469453
470 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
454 #: src/resources/ui/virt-viewer-auth.ui:105
471455 msgid "Username:"
472456 msgstr "ユーザー名:"
473457
474 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
458 #: src/resources/ui/virt-viewer-auth.ui:137
475459 msgid "Show password"
476460 msgstr "パスワードの表示"
477461
478 #: ../src/virt-viewer-display-vnc.c:134
462 #: src/virt-viewer-display-vnc.c:130
479463 msgid "VNC does not provide GUID"
480464 msgstr "VNC が GUID を提供していません"
481465
482 #: ../src/virt-viewer-file-transfer-dialog.c:128
466 #: src/virt-viewer-display-vte.c:181
467 msgid "Console support is compiled out!"
468 msgstr ""
469
470 #: src/virt-viewer-file-transfer-dialog.c:124
483471 msgid "File Transfers"
484472 msgstr "ファイル転送"
485473
486 #: ../src/virt-viewer-file-transfer-dialog.c:154
474 #: src/virt-viewer-file-transfer-dialog.c:150
487475 msgid "Transferring 1 file..."
488 msgstr ""
489
490 #: ../src/virt-viewer-file-transfer-dialog.c:156
491 #, c-format
492 msgid "Transferring %d file of %d..."
493 msgid_plural "Transferring %d files of %d..."
476 msgstr "1 個のファイルを転送中..."
477
478 #: src/virt-viewer-file-transfer-dialog.c:152
479 #, c-format
480 msgid "Transferring %u file of %u..."
481 msgid_plural "Transferring %u files of %u..."
494482 msgstr[0] ""
495483
496 #: ../src/virt-viewer-file-transfer-dialog.c:228
497 #, c-format
498 msgid "An error caused the following file transfers to fail:%s"
499 msgstr "次のファイル転送中にエラーが発生しました: %s"
500
501 #: ../src/virt-viewer-main.c:38
484 #: src/virt-viewer-file-transfer-dialog.c:225
485 msgid "An error caused the following file transfers to fail:"
486 msgstr ""
487
488 #: src/virt-viewer-main.c:38
502489 msgid "Virt Viewer"
503490 msgstr "仮想マシンビューアー"
504491
505 #: ../src/virt-viewer-session-spice.c:704
492 #: src/virt-viewer-session-spice.c:731
506493 msgid "Invalid password"
507494 msgstr "無効なパスワード"
508495
509 #. Create the widgets
510 #: ../src/virt-viewer-session-spice.c:802
496 #: src/virt-viewer-session-spice.c:829
511497 msgid "Select USB devices for redirection"
512498 msgstr "リダイレクトする USB デバイスを選択"
513499
514 #: ../src/virt-viewer-session-spice.c:804
515 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
500 #: src/virt-viewer-session-spice.c:831
501 #: src/resources/ui/virt-viewer-guest-details.ui:23
516502 msgid "_Close"
517503 msgstr "閉じる(_C)"
518504
519 #: ../src/virt-viewer-session-vnc.c:162
520 #, c-format
521 msgid "Unsupported authentication type %d"
522 msgstr "サポートしていない認証の種類 %d"
523
524 #: ../src/virt-viewer-vm-connection.c:64
505 #: src/virt-viewer-session-spice.c:1019
506 msgid "Serial"
507 msgstr ""
508
509 #: src/virt-viewer-session-spice.c:1021
510 msgid "QEMU human monitor"
511 msgstr ""
512
513 #: src/virt-viewer-session-spice.c:1023
514 msgid "QEMU debug console"
515 msgstr ""
516
517 #: src/virt-viewer-session-vnc.c:158
518 #, c-format
519 msgid "Unsupported authentication type %u"
520 msgstr ""
521
522 #: src/virt-viewer-vm-connection.c:64
525523 msgid "No running virtual machine found"
526 msgstr ""
527
528 #: ../src/virt-viewer-vm-connection.c:93
524 msgstr "実行中の仮想マシンが見つかりません"
525
526 #: src/virt-viewer-vm-connection.c:93
529527 msgid "No virtual machine was chosen"
530528 msgstr "仮想マシンが何も選択されていません"
531529
532 #: ../src/virt-viewer-window.c:544
530 #: src/virt-viewer-window.c:621
533531 msgid "Ctrl+Alt+_Del"
534532 msgstr "Ctrl+Alt+Del(_D)"
535533
536 #: ../src/virt-viewer-window.c:545
534 #: src/virt-viewer-window.c:622
537535 msgid "Ctrl+Alt+_Backspace"
538536 msgstr "Ctrl+Alt+Backspace(_B)"
539537
540 #: ../src/virt-viewer-window.c:547
538 #: src/virt-viewer-window.c:624
541539 msgid "Ctrl+Alt+F_1"
542540 msgstr "Ctrl+Alt+F1(_1)"
543541
544 #: ../src/virt-viewer-window.c:548
542 #: src/virt-viewer-window.c:625
545543 msgid "Ctrl+Alt+F_2"
546544 msgstr "Ctrl+Alt+F2(_2)"
547545
548 #: ../src/virt-viewer-window.c:549
546 #: src/virt-viewer-window.c:626
549547 msgid "Ctrl+Alt+F_3"
550548 msgstr "Ctrl+Alt+F3(_3)"
551549
552 #: ../src/virt-viewer-window.c:550
550 #: src/virt-viewer-window.c:627
553551 msgid "Ctrl+Alt+F_4"
554552 msgstr "Ctrl+Alt+F4(_4)"
555553
556 #: ../src/virt-viewer-window.c:551
554 #: src/virt-viewer-window.c:628
557555 msgid "Ctrl+Alt+F_5"
558556 msgstr "Ctrl+Alt+F5(_5)"
559557
560 #: ../src/virt-viewer-window.c:552
558 #: src/virt-viewer-window.c:629
561559 msgid "Ctrl+Alt+F_6"
562560 msgstr "Ctrl+Alt+F6(_6)"
563561
564 #: ../src/virt-viewer-window.c:553
562 #: src/virt-viewer-window.c:630
565563 msgid "Ctrl+Alt+F_7"
566564 msgstr "Ctrl+Alt+F7(_7)"
567565
568 #: ../src/virt-viewer-window.c:554
566 #: src/virt-viewer-window.c:631
569567 msgid "Ctrl+Alt+F_8"
570568 msgstr "Ctrl+Alt+F8(_8)"
571569
572 #: ../src/virt-viewer-window.c:555
570 #: src/virt-viewer-window.c:632
573571 msgid "Ctrl+Alt+F_9"
574572 msgstr "Ctrl+Alt+F9(_9)"
575573
576 #: ../src/virt-viewer-window.c:556
574 #: src/virt-viewer-window.c:633
577575 msgid "Ctrl+Alt+F1_0"
578576 msgstr "Ctrl+Alt+F10(_0)"
579577
580 #: ../src/virt-viewer-window.c:557
578 #: src/virt-viewer-window.c:634
581579 msgid "Ctrl+Alt+F11"
582580 msgstr "Ctrl+Alt+F11"
583581
584 #: ../src/virt-viewer-window.c:558
582 #: src/virt-viewer-window.c:635
585583 msgid "Ctrl+Alt+F12"
586584 msgstr "Ctrl+Alt+F12"
587585
588 #: ../src/virt-viewer-window.c:953
586 #: src/virt-viewer-window.c:637
587 msgid "_PrintScreen"
588 msgstr ""
589
590 #: src/virt-viewer-window.c:1030
589591 #, c-format
590592 msgid "Unable to determine image format for file '%s'"
591 msgstr ""
592
593 #: ../src/virt-viewer-window.c:980
593 msgstr "ファイル '%s' のイメージフォーマットを決めることができません。"
594
595 #: src/virt-viewer-window.c:1053
596 msgid "Save screenshot"
597 msgstr ""
598
599 #: src/virt-viewer-window.c:1057
594600 msgid "_Save"
595601 msgstr "保存(_S)"
596602
597 #: ../src/virt-viewer-window.c:988
603 #: src/virt-viewer-window.c:1065
598604 msgid "Screenshot.png"
599 msgstr ""
600
601 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
605 msgstr "Screenshot.png"
606
607 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
602608 msgid "Unknown"
603609 msgstr "不明"
604610
605 #: ../src/virt-viewer-window.c:1152
611 #: src/virt-viewer-window.c:1237
606612 msgid "Unable to connnect to oVirt"
607 msgstr ""
608
609 #: ../src/virt-viewer-window.c:1175
613 msgstr "oVirtに接続できません"
614
615 #: src/virt-viewer-window.c:1260
610616 msgid "Disconnect"
611617 msgstr "切断"
612618
613 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
619 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
614620 msgid "USB device selection"
615621 msgstr "USB デバイスの選択"
616622
617 #: ../src/virt-viewer-window.c:1193
623 #: src/virt-viewer-window.c:1278
618624 msgid "Send key combination"
619625 msgstr "組み合わせキーの送信"
620626
621 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
627 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
622628 msgid "Leave fullscreen"
623629 msgstr "フルスクリーンの解除"
624630
625 #: ../src/virt-viewer-window.c:1279
631 #: src/virt-viewer-window.c:1364
626632 msgid "Ctrl+Alt"
627633 msgstr "Ctrl+Alt"
628634
629 #: ../src/virt-viewer-window.c:1282
635 #: src/virt-viewer-window.c:1367
630636 #, c-format
631637 msgid "(Press %s to release pointer)"
632638 msgstr "(ポインターを開放するには %s を押します)"
633639
634 #. translators:
635 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
636 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
637 #.
638 #: ../src/virt-viewer-window.c:1293
640 #: src/virt-viewer-window.c:1378
639641 #, c-format
640642 msgid "%s%s%s - %s"
641643 msgstr "%s%s%s - %s"
642644
643 #. translators: <space>
644 #: ../src/virt-viewer-window.c:1297
645 #: src/virt-viewer-window.c:1382
645646 msgid " "
646647 msgstr " "
647648
648 #: ../src/virt-viewer-file.c:862
649 #: src/virt-viewer-file.c:875
649650 #, c-format
650651 msgid ""
651652 "At least %s version %s is required to setup this connection, see %s for "
654655 "この接続を確立するために少なくとも %s バージョン %s が必要です。詳しくは %s "
655656 "をご確認下さい。"
656657
657 #: ../src/virt-viewer-file.c:870
658 #: src/virt-viewer-file.c:883
658659 #, c-format
659660 msgid "At least %s version %s is required to setup this connection"
660661 msgstr "この接続を確立するために少なくとも %s バージョン %s が必要です。"
661662
662 #: ../src/virt-viewer.c:133
663 #: src/virt-viewer.c:131
663664 msgid "Direct connection with no automatic tunnels"
664665 msgstr "自動的にトンネリングせず直接接続する"
665666
666 #: ../src/virt-viewer.c:135
667 #: src/virt-viewer.c:133
667668 msgid "Attach to the local display using libvirt"
668669 msgstr "libvirt を使用してローカルディスプレイに接続"
669670
670 #: ../src/virt-viewer.c:137
671 #: src/virt-viewer.c:135
671672 msgid "Connect to hypervisor"
672673 msgstr "ハイパーバイザーに接続"
673674
674 #: ../src/virt-viewer.c:139
675 #: src/virt-viewer.c:137
675676 msgid "Wait for domain to start"
676677 msgstr "仮想マシンの起動を待つ"
677678
678 #: ../src/virt-viewer.c:141
679 #: src/virt-viewer.c:139
679680 msgid "Reconnect to domain upon restart"
680681 msgstr "再起動時に仮想マシンに再接続"
681682
682 #: ../src/virt-viewer.c:143
683 #: src/virt-viewer.c:141
683684 msgid "Select the virtual machine only by its name"
684 msgstr ""
685
686 #: ../src/virt-viewer.c:145
685 msgstr "名前のみから仮想マシンを選択"
686
687 #: src/virt-viewer.c:143
687688 msgid "Select the virtual machine only by its id"
688 msgstr ""
689
690 #: ../src/virt-viewer.c:147
689 msgstr "IDのみから仮想マシンを選択"
690
691 #: src/virt-viewer.c:145
691692 msgid "Select the virtual machine only by its uuid"
692 msgstr ""
693
694 #: ../src/virt-viewer.c:154
693 msgstr "uuidのみから仮想マシンを選択"
694
695 #: src/virt-viewer.c:152
695696 msgid "Virtual machine graphical console"
696697 msgstr "仮想マシングラフィカルコンソール"
697698
698 #: ../src/virt-viewer.c:173
699 #: src/virt-viewer.c:171
699700 #, c-format
700701 msgid ""
701702 "\n"
702703 "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
703704 "\n"
704705 msgstr ""
705
706 #: ../src/virt-viewer.c:185
706 "\n"
707 "使い方: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
708 "\n"
709
710 #: src/virt-viewer.c:183
707711 #, c-format
708712 msgid ""
709713 "\n"
710714 "No ID|UUID|DOMAIN-NAME was specified for '%s'\n"
711715 "\n"
712716 msgstr ""
713
714 #: ../src/virt-viewer.c:300
717 "\n"
718 "'%s' に対して ID|UUID|ドメイン名 が指定されていません\n"
719
720 #: src/virt-viewer.c:296
715721 msgid "Waiting for guest domain to re-start"
716722 msgstr "仮想マシンが再起動するのを待機中"
717723
718 #: ../src/virt-viewer.c:554
724 #: src/virt-viewer.c:550
719725 #, c-format
720726 msgid "Cannot determine the graphic type for the guest %s"
721727 msgstr "仮想マシン %s のグラフィックの種類を決定できません"
722728
723 #: ../src/virt-viewer.c:603
729 #: src/virt-viewer.c:599
724730 #, c-format
725731 msgid "Cannot determine the host for the guest %s"
726732 msgstr "仮想マシン %s のホストを決定できません"
727733
728 #: ../src/virt-viewer.c:631
734 #: src/virt-viewer.c:627
729735 #, c-format
730736 msgid "Guest '%s' is not reachable"
731737 msgstr "ゲスト '%s' が応答しません"
732738
733 #: ../src/virt-viewer.c:860
739 #: src/virt-viewer.c:856
734740 #, c-format
735741 msgid "Virtual machine %s is not running"
736742 msgstr "仮想マシン %s は稼働していません"
737743
738 #: ../src/virt-viewer.c:884
744 #: src/virt-viewer.c:881
739745 msgid "Waiting for libvirt to start"
740746 msgstr "libvirt の起動を待つ"
741747
742 #: ../src/virt-viewer.c:888
748 #: src/virt-viewer.c:885
743749 msgid "Finding guest domain"
744750 msgstr "仮想マシンを検索中"
745751
746 #: ../src/virt-viewer.c:892
752 #: src/virt-viewer.c:889
747753 msgid "Waiting for guest domain to be created"
748754 msgstr "仮想マシンが作成されるのを待機中"
749755
750 #: ../src/virt-viewer.c:918
756 #: src/virt-viewer.c:921
751757 msgid "Checking guest domain status"
752758 msgstr "仮想マシンの状態を確認中"
753759
754 #: ../src/virt-viewer.c:921
760 #: src/virt-viewer.c:924
755761 msgid "Cannot get guest state"
756762 msgstr "ゲストの状態を取得できませんでした"
757763
758 #: ../src/virt-viewer.c:927
764 #: src/virt-viewer.c:930
759765 msgid "Waiting for guest domain to start"
760766 msgstr "仮想マシンが開始するのを待機中"
761767
762 #: ../src/virt-viewer.c:1040
768 #: src/virt-viewer.c:1044
763769 #, c-format
764770 msgid "Unable to connect to libvirt with URI: %s."
765771 msgstr "libvirt URI に接続できません: %s"
766772
767 #: ../src/virt-viewer.c:1041
773 #: src/virt-viewer.c:1045
768774 msgid "[none]"
769775 msgstr "[なし]"
770776
771 #: ../src/virt-viewer.c:1048
777 #: src/virt-viewer.c:1052
772778 msgid "Authentication failed."
773779 msgstr "認証に失敗しました。"
774780
775 #: ../src/virt-viewer.c:1108
781 #: src/virt-viewer.c:1112
776782 msgid "Failed to connect: "
777783 msgstr "接続に失敗しました:"
778784
779 #.
780 #. * Local variables:
781 #. * c-indent-level: 4
782 #. * c-basic-offset: 4
783 #. * indent-tabs-mode: nil
784 #. * End:
785 #.
786 #: ../src/resources/ui/virt-viewer.ui.h:1
785 #: src/resources/ui/virt-viewer.ui:28
787786 msgid "_File"
788787 msgstr "ファイル(_F)"
789788
790 #: ../src/resources/ui/virt-viewer.ui.h:2
789 #: src/resources/ui/virt-viewer.ui:41
791790 msgid "_Screenshot"
792791 msgstr "スクリーンショット(_S)"
793792
794 #: ../src/resources/ui/virt-viewer.ui.h:3
793 #: src/resources/ui/virt-viewer.ui:52
795794 msgid "_USB device selection"
796795 msgstr "USBデバイスの選択(_U)"
797796
798 #: ../src/resources/ui/virt-viewer.ui.h:4
797 #: src/resources/ui/virt-viewer.ui:62
799798 msgid "Smartcard insertion"
800799 msgstr "スマートカードの挿入"
801800
802 #: ../src/resources/ui/virt-viewer.ui.h:5
801 #: src/resources/ui/virt-viewer.ui:72
803802 msgid "Smartcard removal"
804803 msgstr "スマートカードの抜き取り"
805804
806 #: ../src/resources/ui/virt-viewer.ui.h:6
805 #: src/resources/ui/virt-viewer.ui:80
807806 msgid "_Change CD"
808807 msgstr "CDの変更(_C)"
809808
810 #: ../src/resources/ui/virt-viewer.ui.h:7
809 #: src/resources/ui/virt-viewer.ui:90
811810 msgid "_Preferences"
812811 msgstr "設定(_P)"
813812
814 #: ../src/resources/ui/virt-viewer.ui.h:8
813 #: src/resources/ui/virt-viewer.ui:103
815814 msgid "_Quit"
816815 msgstr "終了 (_Q)"
817816
818 #: ../src/resources/ui/virt-viewer.ui.h:9
817 #: src/resources/ui/virt-viewer.ui:119
818 msgid "_Machine"
819 msgstr ""
820
821 #: src/resources/ui/virt-viewer.ui:129
822 msgid "_Pause"
823 msgstr ""
824
825 #: src/resources/ui/virt-viewer.ui:144
826 msgid "_Reset"
827 msgstr ""
828
829 #: src/resources/ui/virt-viewer.ui:153
830 msgid "_Power down"
831 msgstr ""
832
833 #: src/resources/ui/virt-viewer.ui:167
819834 msgid "_View"
820835 msgstr "表示(_V)"
821836
822 #: ../src/resources/ui/virt-viewer.ui.h:10
837 #: src/resources/ui/virt-viewer.ui:180
823838 msgid "_Full screen"
824839 msgstr "フルスクリーン(_F)"
825840
826 #: ../src/resources/ui/virt-viewer.ui.h:11
841 #: src/resources/ui/virt-viewer.ui:191
827842 msgid "_Zoom"
828843 msgstr "ズーム(_Z)"
829844
830 #: ../src/resources/ui/virt-viewer.ui.h:12
845 #: src/resources/ui/virt-viewer.ui:201
831846 msgid "Zoom _In"
832847 msgstr "ズームイン(_I)"
833848
834 #: ../src/resources/ui/virt-viewer.ui.h:13
849 #: src/resources/ui/virt-viewer.ui:212
835850 msgid "Zoom _Out"
836851 msgstr "ズームアウト(_O)"
837852
838 #: ../src/resources/ui/virt-viewer.ui.h:14
853 #: src/resources/ui/virt-viewer.ui:229
839854 msgid "_Normal Size"
840855 msgstr "元のサイズ(_N)"
841856
842 #: ../src/resources/ui/virt-viewer.ui.h:15
857 #: src/resources/ui/virt-viewer.ui:246
843858 msgid "_Displays"
844859 msgstr "ディスプレイ(_D)"
845860
846 #: ../src/resources/ui/virt-viewer.ui.h:16
861 #: src/resources/ui/virt-viewer.ui:255
847862 msgid "Release cursor"
848863 msgstr "カーソルの開放"
849864
850 #: ../src/resources/ui/virt-viewer.ui.h:17
865 #: src/resources/ui/virt-viewer.ui:270
851866 msgid "_Send key"
852867 msgstr "キーを送信(_S)"
853868
854 #: ../src/resources/ui/virt-viewer.ui.h:18
869 #: src/resources/ui/virt-viewer.ui:279
855870 msgid "_Help"
856871 msgstr "ヘルプ(_H)"
857872
858 #: ../src/resources/ui/virt-viewer.ui.h:19
873 #: src/resources/ui/virt-viewer.ui:290
859874 msgid "_Guest Details"
860875 msgstr "仮想マシンの詳細(_G)"
861876
862 #: ../src/resources/ui/virt-viewer.ui.h:20
877 #: src/resources/ui/virt-viewer.ui:297
863878 msgid "_About"
864879 msgstr "このアプリケーションについて(_A)"
865880
866 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
881 #: src/resources/ui/virt-viewer-guest-details.ui:7
867882 msgid "Guest Details"
868883 msgstr "仮想マシンの詳細"
869884
870 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
885 #: src/resources/ui/virt-viewer-guest-details.ui:56
871886 msgid "Name:"
872887 msgstr "名前:"
873888
874 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
889 #: src/resources/ui/virt-viewer-guest-details.ui:68
875890 msgid "GUID:"
876891 msgstr "GUID:"
877892
878 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
893 #: src/resources/ui/virt-viewer-vm-connection.ui:7
879894 msgid "Choose a virtual machine"
880895 msgstr "仮想マシンの選択"
881896
882 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
897 #: src/resources/ui/virt-viewer-vm-connection.ui:96
883898 msgid "Available virtual machines"
884899 msgstr "利用可能な仮想マシン"
885900
886 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
901 #: src/resources/ui/virt-viewer-preferences.ui:8
887902 msgid "Preferences"
888903 msgstr "個人設定"
889904
890 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
905 #: src/resources/ui/virt-viewer-preferences.ui:48
891906 msgid "Folder sharing"
892907 msgstr "フォルダー共有"
893908
894 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
909 #: src/resources/ui/virt-viewer-preferences.ui:70
895910 msgid "Share folder"
896911 msgstr "共有フォルダー"
897912
898 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
913 #: src/resources/ui/virt-viewer-preferences.ui:82
899914 msgid "Read-only"
900915 msgstr "読み込み専用"
901916
902 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
917 #: src/resources/ui/virt-viewer-preferences.ui:96
918 msgid "Share clipboard"
919 msgstr ""
920
921 #: src/resources/ui/virt-viewer-preferences.ui:132
903922 msgid "Spice"
904923 msgstr "Spice"
924
925 #~ msgid "virt-manager.org"
926 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/ka.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Georgian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/kk.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Kazakh\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/km.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Khmer\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+267
-252
po/kn.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
99 # shanky <prasad.mvs@gmail.com>, 2012-2013
1010 msgid ""
1111 msgstr ""
12 "Project-Id-Version: PACKAGE VERSION\n"
13 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
15 "PO-Revision-Date: 2015-02-20 08:09-0500\n"
12 "Project-Id-Version: virt-viewer 9.0\n"
13 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
14 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
15 "PO-Revision-Date: 2015-02-20 08:09+0000\n"
1616 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1717 "Language-Team: Kannada (http://www.transifex.com/projects/p/virt-viewer/"
1818 "language/kn/)\n"
2121 "Content-Type: text/plain; charset=UTF-8\n"
2222 "Content-Transfer-Encoding: 8bit\n"
2323 "Plural-Forms: nplurals=1; plural=0;\n"
24 "X-Generator: Zanata 3.9.6\n"
25
26 #: ../data/remote-viewer.appdata.xml.in.h:1
27 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
24 "X-Generator: Zanata 4.6.2\n"
25
26 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
27 #: src/remote-viewer-main.c:39
2828 msgid "Remote Viewer"
2929 msgstr "ದೂರಸ್ಥ ವೀಕ್ಷಕ"
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:2
31 #: data/remote-viewer.appdata.xml.in:7
3232 msgid "Remotely access virtual machines"
3333 msgstr ""
3434
35 #: ../data/remote-viewer.appdata.xml.in.h:3
35 #: data/remote-viewer.appdata.xml.in:9
3636 msgid ""
3737 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3838 "time it supports guest OS using the VNC or SPICE protocols. Further "
4141 "using SSL/TLS encryption."
4242 msgstr ""
4343
44 #: ../data/remote-viewer.desktop.in.h:2
44 #: data/remote-viewer.desktop.in:4
4545 msgid "Access remote desktops"
4646 msgstr "ದೂರದ ಗಣಕತೆರೆಗಳನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಿ"
4747
48 #: ../data/virt-viewer-mime.xml.in.h:1
49 msgid "Virt-Viewer connection file"
50 msgstr "Virt-Viewer ಸಂಪರ್ಕ ಕಡತ"
51
52 #: ../src/remote-viewer-iso-list-dialog.c:160
48 #: src/remote-viewer-iso-list-dialog.c:156
5349 msgid "Failed to fetch CD names"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:212
52 #: src/remote-viewer-iso-list-dialog.c:205
5753 msgid "<b>Loading...</b>"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:285
56 #: src/remote-viewer-iso-list-dialog.c:276
6157 msgid "Refresh"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:286
60 #: src/remote-viewer-iso-list-dialog.c:277
6561 msgid "Close"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:306
64 #: src/remote-viewer-iso-list-dialog.c:297
6965 msgid "Unspecified error"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:328
68 #: src/remote-viewer-iso-list-dialog.c:318
7369 msgid "Failed to change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer-iso-list-dialog.c:380
72 #: src/remote-viewer-iso-list-dialog.c:370
7773 msgid "Change CD"
7874 msgstr ""
7975
80 #: ../src/remote-viewer.c:118
76 #: src/remote-viewer.c:116
8177 msgid "Set window title"
8278 msgstr "ಕಿಟಕಿಯ ಶೀರ್ಷಿಕೆಯನ್ನು ಹೊಂದಿಸು"
8379
84 #: ../src/remote-viewer.c:125
80 #: src/remote-viewer.c:123
8581 msgid "Remote viewer client"
8682 msgstr "- ದೂರದ ವೀಕ್ಷಕದ ಕ್ಲೈಂಟ್"
8783
88 #: ../src/remote-viewer.c:150
89 #, c-format
84 #: src/remote-viewer.c:148
9085 msgid ""
9186 "\n"
9287 "Error: can't handle multiple URIs\n"
9388 "\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
91 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9792 #, c-format
9893 msgid "Run '%s --help' to see a full list of available command line options\n"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:435
96 #: src/remote-viewer.c:429
10297 msgid "failed to parse ovirt uri"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
100 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
106101 msgid "Authentication was cancelled"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:480
104 #: src/remote-viewer.c:472
110105 #, c-format
111106 msgid "oVirt VM %s is not running"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:494
109 #: src/remote-viewer.c:486
115110 #, c-format
116111 msgid "oVirt VM %s has no display"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:520
114 #: src/remote-viewer.c:512
120115 #, c-format
121116 msgid "oVirt VM %s has no host information"
122117 msgstr ""
123118
124 #: ../src/remote-viewer.c:531
125 #, c-format
126 msgid "oVirt VM %s has unknown display type: %d"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:713
119 #: src/remote-viewer.c:523
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %u"
122 msgstr ""
123
124 #: src/remote-viewer.c:690
125 msgid "Couldn't open oVirt session: "
126 msgstr ""
127
128 #: src/remote-viewer.c:718
130129 msgid "Failed to initiate connection"
131130 msgstr "ಸಂಪರ್ಕವನ್ನು ಆರಂಭಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ"
132131
133 #: ../src/remote-viewer.c:742
132 #: src/remote-viewer.c:747
134133 msgid "No connection was chosen"
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:759
136 #: src/remote-viewer.c:764
138137 msgid "Failed to read stdin: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:776
140 #: src/remote-viewer.c:781
142141 #, c-format
143142 msgid "Invalid file %s: "
144143 msgstr ""
145144
146 #: ../src/remote-viewer.c:786
145 #: src/remote-viewer.c:791
147146 msgid "Cannot determine the connection type from URI"
148147 msgstr "URI ಇಂದ ಸಂಪರ್ಕದ ಬಗೆಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
149148
150 #: ../src/remote-viewer.c:792
151 msgid "Couldn't open oVirt session: "
152 msgstr ""
153
154 #: ../src/remote-viewer.c:815
149 #: src/remote-viewer.c:810
155150 #, c-format
156151 msgid "Unable to connect: %s"
157152 msgstr ""
158153
159 #.
160 #. * Local variables:
161 #. * c-indent-level: 4
162 #. * c-basic-offset: 4
163 #. * indent-tabs-mode: nil
164 #. * End:
165 #.
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
154 #: src/resources/ui/remote-viewer-connect.ui:6
167155 msgid "Connection details"
168156 msgstr "ಸಂಪರ್ಕ ವಿವರಗಳು"
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
158 #: src/resources/ui/remote-viewer-connect.ui:24
171159 msgid "Connection _Address"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
162 #: src/resources/ui/remote-viewer-connect.ui:54
175163 msgid "For example, spice://foo.example.org:5900"
176164 msgstr "ಉದಾಹರಣೆಗೆ, spice://foo.example.org:5900"
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
166 #: src/resources/ui/remote-viewer-connect.ui:78
179167 msgid "Recent connections"
180168 msgstr ""
181169
182 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
183 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
185 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
170 #: src/resources/ui/remote-viewer-connect.ui:120
171 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
172 #: src/resources/ui/virt-viewer-vm-connection.ui:24
173 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
186174 msgid "_Cancel"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
190 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
177 #: src/resources/ui/remote-viewer-connect.ui:134
178 #: src/resources/ui/virt-viewer-vm-connection.ui:38
191179 msgid "C_onnect"
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
182 #: src/resources/ui/remote-viewer-iso-list.ui:28
195183 msgid "Loading..."
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
186 #: src/resources/ui/remote-viewer-iso-list.ui:78
199187 msgid "Select ISO"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
190 #: src/resources/ui/remote-viewer-iso-list.ui:116
203191 msgid "Selected"
204192 msgstr ""
205193
206 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
207 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
194 #: src/resources/ui/remote-viewer-iso-list.ui:129
195 #: src/resources/ui/virt-viewer-vm-connection.ui:72
208196 msgid "Name"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:1
199 #: src/resources/ui/virt-viewer-about.ui:7
212200 msgid "About Virt-Viewer"
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:2
203 #: src/resources/ui/virt-viewer-about.ui:16
216204 msgid ""
217205 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
218206 "Copyright (C) 2007-2014 Red Hat, Inc."
220208 "ಹಕ್ಕು (C) 2007-2012 Daniel P. Berrange\n"
221209 "ಹಕ್ಕು (C) 2007-2014 Red Hat, Inc."
222210
223 #: ../src/resources/ui/virt-viewer-about.ui.h:4
211 #: src/resources/ui/virt-viewer-about.ui:18
224212 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
225213 msgstr "GTK-VNC, SPICE-GTK ಮತ್ತು libvirt ನೊಂದಿಗೆ ನಿರ್ಮಿಸಲಾದ ದೂರಸ್ಥ ಗಣಕತೆರೆ ಕ್ಲೈಂಟ್"
226214
227 #: ../src/resources/ui/virt-viewer-about.ui.h:5
228 msgid "virt-manager.org"
229 msgstr "virt-manager.org"
230
231 #: ../src/resources/ui/virt-viewer-about.ui.h:6
215 #: src/resources/ui/virt-viewer-about.ui:20
216 msgid "gitlab.com/virt-viewer/virt-viewer"
217 msgstr ""
218
219 #: src/resources/ui/virt-viewer-about.ui:21
232220 msgid ""
233221 "This program is free software; you can redistribute it and/or modify\n"
234222 "it under the terms of the GNU General Public License as published by\n"
258246 "along with this program; if not, write to the Free Software\n"
259247 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
260248
261 #: ../src/resources/ui/virt-viewer-about.ui.h:20
249 #: src/resources/ui/virt-viewer-about.ui:38
262250 msgid "The Fedora Translation Team"
263251 msgstr "ಫೆಡೋರ ಟ್ರಾನ್ಸಲೇಶನ್ ಟೀಮ್"
264252
265 #: ../src/virt-viewer-app.c:459
253 #: src/virt-viewer-app.c:594
266254 msgid "Do you want to close the session?"
267255 msgstr "ನೀವು ಈ ಅಧಿವೇಶನವನ್ನು ಮುಚ್ಚಲು ಬಯಸುವಿರಾ?"
268256
269 #: ../src/virt-viewer-app.c:461
257 #: src/virt-viewer-app.c:596
270258 msgid "Do not ask me again"
271259 msgstr "ಪುನಃ ನನ್ನನ್ನು ಕೇಳಬೇಡ"
272260
273 #: ../src/virt-viewer-app.c:655
261 #: src/virt-viewer-app.c:767
274262 #, c-format
275263 msgid "Address is too long for unix socket_path: %s"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:665
266 #: src/virt-viewer-app.c:777
279267 #, c-format
280268 msgid "Creating unix socket failed: %s"
281269 msgstr ""
282270
283 #: ../src/virt-viewer-app.c:671
271 #: src/virt-viewer-app.c:783
284272 #, c-format
285273 msgid "Connecting to unix socket failed: %s"
286274 msgstr ""
287275
288 #: ../src/virt-viewer-app.c:955
276 #: src/virt-viewer-app.c:1077
289277 #, c-format
290278 msgid "Waiting for display %d..."
291279 msgstr "%d ಪ್ರದರ್ಶಕಕ್ಕಾಗಿ ಕಾಯಲಾಗುತ್ತಿದೆ..."
292280
293 #: ../src/virt-viewer-app.c:1062
281 #: src/virt-viewer-app.c:1193
294282 #, c-format
295283 msgid "Unsupported graphic type '%s'"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1146
286 #: src/virt-viewer-app.c:1277
299287 msgid "Connect to ssh failed."
300288 msgstr "ssh ಗೆ ಸಂಪರ್ಕವು ವಿಫಲಗೊಂಡಿದೆ."
301289
302 #: ../src/virt-viewer-app.c:1161
290 #: src/virt-viewer-app.c:1292
303291 #, c-format
304292 msgid "Can't connect to channel: %s"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1163
295 #: src/virt-viewer-app.c:1294
308296 msgid "only SSH or unix socket connection supported."
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1176
299 #: src/virt-viewer-app.c:1311
312300 msgid "Connect to channel unsupported."
313301 msgstr "ಚಾನಲ್‌ನೊಂದಿಗೆ ಸಂಪರ್ಕಸಾಧಿಸುವುದನ್ನು ಬೆಂಬಲಿಸಲಾಗುತ್ತದೆ."
314302
315 #: ../src/virt-viewer-app.c:1238
303 #: src/virt-viewer-app.c:1376
316304 msgid "Display can only be attached through libvirt with --attach"
317305 msgstr ""
318306
319 #: ../src/virt-viewer-app.c:1263
307 #: src/virt-viewer-app.c:1401
320308 msgid "Connecting to graphic server"
321309 msgstr "ಗ್ರಾಫಿಕ್ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ಸಂಪರ್ಕಸಾಧಿಸಲಾಗುತ್ತಿದೆ"
322310
323 #: ../src/virt-viewer-app.c:1362
311 #: src/virt-viewer-app.c:1500
324312 msgid "Guest domain has shutdown"
325313 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಅನ್ನು ಸ್ಥಗಿತಗೊಳಿಸಲಾಗಿದೆ"
326314
327 #: ../src/virt-viewer-app.c:1423
315 #: src/virt-viewer-app.c:1561
328316 msgid "Connected to graphic server"
329317 msgstr "ಗ್ರಾಫಿಕ್ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ಸಂಪರ್ಕಿತಗೊಂಡಿದೆ"
330318
331 #: ../src/virt-viewer-app.c:1452
319 #: src/virt-viewer-app.c:1590
332320 #, c-format
333321 msgid "Unable to connect to the graphic server %s"
334322 msgstr "%s ಎಂಬ ಗ್ರಾಫಿಕ್ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ಸಂಪರ್ಕಿತಗೊಂಡಿದೆ"
335323
336 #: ../src/virt-viewer-app.c:1478
324 #: src/virt-viewer-app.c:1616
337325 #, c-format
338326 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1492
329 #: src/virt-viewer-app.c:1630
342330 #, c-format
343331 msgid "Unable to authenticate with remote desktop server: %s"
344332 msgstr "ದೂರದ ಗಣಕತೆರೆ ಪೂರೈಕೆಗಣಕದೊಂದಿಗೆ ದೃಢೀಕರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s"
345333
346 #: ../src/virt-viewer-app.c:1500
334 #: src/virt-viewer-app.c:1638
347335 #, c-format
348336 msgid "USB redirection error: %s"
349337 msgstr "USB ಮರುನಿರ್ದೇಶನ ದೋಷ: %s"
350338
351 #: ../src/virt-viewer-app.c:1834
339 #: src/virt-viewer-app.c:2026
352340 #, c-format
353341 msgid "Zoom level must be within %d-%d\n"
354342 msgstr "ಗಾತ್ರ ಬದಲಾವಣೆ ಮಟ್ಟವು %d-%d ರ ನಡುವೆ ಇರಬೇಕು\n"
355343
356 #: ../src/virt-viewer-app.c:1887
344 #: src/virt-viewer-app.c:2081
357345 #, c-format
358346 msgid "%s\n"
359347 msgstr ""
360348
361 #: ../src/virt-viewer-app.c:1897
349 #: src/virt-viewer-app.c:2091
362350 #, c-format
363351 msgid "%s version %s"
364352 msgstr ""
365353
366 #: ../src/virt-viewer-app.c:2321
354 #: src/virt-viewer-app.c:2545
367355 #, c-format
368356 msgid "Display _%d"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2577
359 #: src/virt-viewer-app.c:2829
372360 #, c-format
373361 msgid "Invalid kiosk-quit argument: %s"
374362 msgstr "ಅಮಾನ್ಯವಾದ ಕಿಯೋಸ್ಕ್-ನಿರ್ಗಮನದ ಆರ್ಗ್ಯುಮೆಂಟ್: %s"
375363
376 #: ../src/virt-viewer-app.c:2588
364 #: src/virt-viewer-app.c:2840
377365 msgid "Display version information"
378366 msgstr "ಪ್ರದರ್ಶನ ಆವೃತ್ತಿ ಮಾಹಿತಿ"
379367
380 #: ../src/virt-viewer-app.c:2590
368 #: src/virt-viewer-app.c:2842
381369 msgid "Zoom level of window, in percentage"
382370 msgstr "ಕಿಟಕಿಯ ಗಾತ್ರ ಬದಲಾವಣೆ, ಪ್ರತಿಶತದಲ್ಲಿ"
383371
384 #: ../src/virt-viewer-app.c:2592
372 #: src/virt-viewer-app.c:2844
385373 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
386374 msgstr ""
387375 "ಪೂರ್ಣತೆರೆ ಕ್ರಮದಲ್ಲಿ ತೆರೆ (ಕ್ಲೈಂಟ್‌ನ ರೆಸಲ್ಯೂಶನ್‌ಗೆ ಹೊಂದಿಕೆಯಾಗುವಂತೆ ಅತಿಥಿಯನ್ನು "
388376 "ಸರಿಹೊಂದಿಸುತ್ತದೆ)."
389377
390 #: ../src/virt-viewer-app.c:2594
378 #: src/virt-viewer-app.c:2846
391379 msgid "Customise hotkeys"
392380 msgstr "ಹಾಟ್‌ಕೀಲಿಗಳನ್ನು ಅಗತ್ಯಾನುಗುಣಗೊಳಿಸು"
393381
394 #: ../src/virt-viewer-app.c:2596
382 #: src/virt-viewer-app.c:2848
395383 msgid "Enable kiosk mode"
396384 msgstr "ಕಿಯೋಸ್ಕ್ ಕ್ರಮವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು"
397385
398 #: ../src/virt-viewer-app.c:2598
386 #: src/virt-viewer-app.c:2850
399387 msgid "Quit on given condition in kiosk mode"
400388 msgstr "ಕಿಯೋಸ್ಕ್ ಕ್ರಮದಲ್ಲಿ ಒದಗಿಸಲಾದ ಸ್ಥಿತಿಯಲ್ಲಿ ನಿರ್ಗಮಿಸು"
401389
402 #: ../src/virt-viewer-app.c:2598
390 #: src/virt-viewer-app.c:2850
403391 msgid "<never|on-disconnect>"
404392 msgstr "<never|on-disconnect>"
405393
406 #: ../src/virt-viewer-app.c:2600
394 #: src/virt-viewer-app.c:2852
407395 msgid "Display verbose information"
408396 msgstr "ವರ್ಬೋಸ್ ಮಾಹಿತಿಯನ್ನು ತೋರಿಸು"
409397
410 #: ../src/virt-viewer-app.c:2602
398 #: src/virt-viewer-app.c:2854
411399 msgid "Display debugging information"
412400 msgstr "ದೋಷನಿದಾನ ಮಾಹಿತಿಯನ್ನು ತೋರಿಸು"
413401
414 #: ../src/virt-viewer-auth.c:89
402 #: src/virt-viewer-auth.c:89
415403 #, c-format
416404 msgid ""
417405 "Authentication is required for the %s connection to:\n"
420408 "\n"
421409 msgstr ""
422410
423 #: ../src/virt-viewer-auth.c:93
411 #: src/virt-viewer-auth.c:93
424412 #, c-format
425413 msgid "Authentication is required for the %s connection:\n"
426414 msgstr ""
427415
428 #.
429 #. * Local variables:
430 #. * c-indent-level: 4
431 #. * c-basic-offset: 4
432 #. * indent-tabs-mode: nil
433 #. * End:
434 #.
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
416 #: src/resources/ui/virt-viewer-auth.ui:7
436417 msgid "Authentication required"
437418 msgstr "ದೃಢೀಕರಣದ ಅಗತ್ಯವಿದೆ"
438419
439 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
420 #: src/resources/ui/virt-viewer-auth.ui:42
440421 msgid "_OK"
441422 msgstr ""
442423
443 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
444 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
445 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
424 #: src/resources/ui/virt-viewer-auth.ui:71
425 #: src/resources/ui/virt-viewer-guest-details.ui:82
426 #: src/resources/ui/virt-viewer-guest-details.ui:96
427 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
446428 msgid "label"
447429 msgstr "ಲೇಬಲ್"
448430
449 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
431 #: src/resources/ui/virt-viewer-auth.ui:93
450432 msgid "Password:"
451433 msgstr "ಗುಪ್ತಪದ:"
452434
453 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
435 #: src/resources/ui/virt-viewer-auth.ui:105
454436 msgid "Username:"
455437 msgstr "ಬಳಕೆದಾರ ಹೆಸರು:"
456438
457 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
439 #: src/resources/ui/virt-viewer-auth.ui:137
458440 msgid "Show password"
459441 msgstr ""
460442
461 #: ../src/virt-viewer-display-vnc.c:134
443 #: src/virt-viewer-display-vnc.c:130
462444 msgid "VNC does not provide GUID"
463445 msgstr ""
464446
465 #: ../src/virt-viewer-file-transfer-dialog.c:128
447 #: src/virt-viewer-display-vte.c:181
448 msgid "Console support is compiled out!"
449 msgstr ""
450
451 #: src/virt-viewer-file-transfer-dialog.c:124
466452 msgid "File Transfers"
467453 msgstr ""
468454
469 #: ../src/virt-viewer-file-transfer-dialog.c:154
455 #: src/virt-viewer-file-transfer-dialog.c:150
470456 msgid "Transferring 1 file..."
471457 msgstr ""
472458
473 #: ../src/virt-viewer-file-transfer-dialog.c:156
474 #, c-format
475 msgid "Transferring %d file of %d..."
476 msgid_plural "Transferring %d files of %d..."
459 #: src/virt-viewer-file-transfer-dialog.c:152
460 #, c-format
461 msgid "Transferring %u file of %u..."
462 msgid_plural "Transferring %u files of %u..."
477463 msgstr[0] ""
478464
479 #: ../src/virt-viewer-file-transfer-dialog.c:228
480 #, c-format
481 msgid "An error caused the following file transfers to fail:%s"
482 msgstr ""
483
484 #: ../src/virt-viewer-main.c:38
465 #: src/virt-viewer-file-transfer-dialog.c:225
466 msgid "An error caused the following file transfers to fail:"
467 msgstr ""
468
469 #: src/virt-viewer-main.c:38
485470 msgid "Virt Viewer"
486471 msgstr "Virt Viewer"
487472
488 #: ../src/virt-viewer-session-spice.c:704
473 #: src/virt-viewer-session-spice.c:731
489474 msgid "Invalid password"
490475 msgstr ""
491476
492 #. Create the widgets
493 #: ../src/virt-viewer-session-spice.c:802
477 #: src/virt-viewer-session-spice.c:829
494478 msgid "Select USB devices for redirection"
495479 msgstr "ಮರುನಿರ್ದೇಶನಕ್ಕಾಗಿ USB ಸಾಧನಗಳನ್ನು ಆರಿಸಿ"
496480
497 #: ../src/virt-viewer-session-spice.c:804
498 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
481 #: src/virt-viewer-session-spice.c:831
482 #: src/resources/ui/virt-viewer-guest-details.ui:23
499483 msgid "_Close"
500484 msgstr ""
501485
502 #: ../src/virt-viewer-session-vnc.c:162
503 #, c-format
504 msgid "Unsupported authentication type %d"
505 msgstr "ಬೆಂಬಲವಿರದ ದೃಢೀಕರಣದ ಬಗೆ %d"
506
507 #: ../src/virt-viewer-vm-connection.c:64
486 #: src/virt-viewer-session-spice.c:1019
487 msgid "Serial"
488 msgstr ""
489
490 #: src/virt-viewer-session-spice.c:1021
491 msgid "QEMU human monitor"
492 msgstr ""
493
494 #: src/virt-viewer-session-spice.c:1023
495 msgid "QEMU debug console"
496 msgstr ""
497
498 #: src/virt-viewer-session-vnc.c:158
499 #, c-format
500 msgid "Unsupported authentication type %u"
501 msgstr ""
502
503 #: src/virt-viewer-vm-connection.c:64
508504 msgid "No running virtual machine found"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-vm-connection.c:93
507 #: src/virt-viewer-vm-connection.c:93
512508 msgid "No virtual machine was chosen"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:544
511 #: src/virt-viewer-window.c:621
516512 msgid "Ctrl+Alt+_Del"
517513 msgstr "Ctrl+Alt+_Del"
518514
519 #: ../src/virt-viewer-window.c:545
515 #: src/virt-viewer-window.c:622
520516 msgid "Ctrl+Alt+_Backspace"
521517 msgstr "Ctrl+Alt+_Backspace"
522518
523 #: ../src/virt-viewer-window.c:547
519 #: src/virt-viewer-window.c:624
524520 msgid "Ctrl+Alt+F_1"
525521 msgstr "Ctrl+Alt+F_1"
526522
527 #: ../src/virt-viewer-window.c:548
523 #: src/virt-viewer-window.c:625
528524 msgid "Ctrl+Alt+F_2"
529525 msgstr "Ctrl+Alt+F_2"
530526
531 #: ../src/virt-viewer-window.c:549
527 #: src/virt-viewer-window.c:626
532528 msgid "Ctrl+Alt+F_3"
533529 msgstr "Ctrl+Alt+F_3"
534530
535 #: ../src/virt-viewer-window.c:550
531 #: src/virt-viewer-window.c:627
536532 msgid "Ctrl+Alt+F_4"
537533 msgstr "Ctrl+Alt+F_4"
538534
539 #: ../src/virt-viewer-window.c:551
535 #: src/virt-viewer-window.c:628
540536 msgid "Ctrl+Alt+F_5"
541537 msgstr "Ctrl+Alt+F_5"
542538
543 #: ../src/virt-viewer-window.c:552
539 #: src/virt-viewer-window.c:629
544540 msgid "Ctrl+Alt+F_6"
545541 msgstr "Ctrl+Alt+F_6"
546542
547 #: ../src/virt-viewer-window.c:553
543 #: src/virt-viewer-window.c:630
548544 msgid "Ctrl+Alt+F_7"
549545 msgstr "Ctrl+Alt+F_7"
550546
551 #: ../src/virt-viewer-window.c:554
547 #: src/virt-viewer-window.c:631
552548 msgid "Ctrl+Alt+F_8"
553549 msgstr "Ctrl+Alt+F_8"
554550
555 #: ../src/virt-viewer-window.c:555
551 #: src/virt-viewer-window.c:632
556552 msgid "Ctrl+Alt+F_9"
557553 msgstr "Ctrl+Alt+F_9"
558554
559 #: ../src/virt-viewer-window.c:556
555 #: src/virt-viewer-window.c:633
560556 msgid "Ctrl+Alt+F1_0"
561557 msgstr "Ctrl+Alt+F1_0"
562558
563 #: ../src/virt-viewer-window.c:557
559 #: src/virt-viewer-window.c:634
564560 msgid "Ctrl+Alt+F11"
565561 msgstr "Ctrl+Alt+F11"
566562
567 #: ../src/virt-viewer-window.c:558
563 #: src/virt-viewer-window.c:635
568564 msgid "Ctrl+Alt+F12"
569565 msgstr "Ctrl+Alt+F12"
570566
571 #: ../src/virt-viewer-window.c:953
567 #: src/virt-viewer-window.c:637
568 msgid "_PrintScreen"
569 msgstr ""
570
571 #: src/virt-viewer-window.c:1030
572572 #, c-format
573573 msgid "Unable to determine image format for file '%s'"
574574 msgstr ""
575575
576 #: ../src/virt-viewer-window.c:980
576 #: src/virt-viewer-window.c:1053
577 msgid "Save screenshot"
578 msgstr ""
579
580 #: src/virt-viewer-window.c:1057
577581 msgid "_Save"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:988
584 #: src/virt-viewer-window.c:1065
581585 msgid "Screenshot.png"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
588 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
585589 msgid "Unknown"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1152
592 #: src/virt-viewer-window.c:1237
589593 msgid "Unable to connnect to oVirt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1175
596 #: src/virt-viewer-window.c:1260
593597 msgid "Disconnect"
594598 msgstr "ಸಂಪರ್ಕ ಕಡಿದುಹಾಕು"
595599
596 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
600 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
597601 msgid "USB device selection"
598602 msgstr "USB ಸಾಧನವನ್ನು ಆರಿಸುವಿಕೆ"
599603
600 #: ../src/virt-viewer-window.c:1193
604 #: src/virt-viewer-window.c:1278
601605 msgid "Send key combination"
602606 msgstr "ಕೀಲಿಯ ಸಂಯೋಜನೆಯನ್ನು ಕಳುಹಿಸು"
603607
604 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
608 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
605609 msgid "Leave fullscreen"
606610 msgstr "ಪೂರ್ಣತೆರೆಯಿಂದ ನಿರ್ಗಮಿಸು"
607611
608 #: ../src/virt-viewer-window.c:1279
612 #: src/virt-viewer-window.c:1364
609613 msgid "Ctrl+Alt"
610614 msgstr "Ctrl+Alt"
611615
612 #: ../src/virt-viewer-window.c:1282
616 #: src/virt-viewer-window.c:1367
613617 #, c-format
614618 msgid "(Press %s to release pointer)"
615619 msgstr "(ಸೂಚಕವನ್ನು ಮುಕ್ತಗೊಳಿಸಲು %s ಅನ್ನು ಒತ್ತಿ)"
616620
617 #. translators:
618 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
619 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
620 #.
621 #: ../src/virt-viewer-window.c:1293
621 #: src/virt-viewer-window.c:1378
622622 #, c-format
623623 msgid "%s%s%s - %s"
624624 msgstr "%s%s%s - %s"
625625
626 #. translators: <space>
627 #: ../src/virt-viewer-window.c:1297
626 #: src/virt-viewer-window.c:1382
628627 msgid " "
629628 msgstr " "
630629
631 #: ../src/virt-viewer-file.c:862
630 #: src/virt-viewer-file.c:875
632631 #, c-format
633632 msgid ""
634633 "At least %s version %s is required to setup this connection, see %s for "
635634 "details"
636635 msgstr ""
637636
638 #: ../src/virt-viewer-file.c:870
637 #: src/virt-viewer-file.c:883
639638 #, c-format
640639 msgid "At least %s version %s is required to setup this connection"
641640 msgstr "ಈ ಸಂಪರ್ಕವನ್ನು ಸಿದ್ಧಗೊಳಿಸಲು ಕನಿಷ್ಟ %s ಆವೃತ್ತಿ %s ಅಗತ್ಯವಿದೆ"
642641
643 #: ../src/virt-viewer.c:133
642 #: src/virt-viewer.c:131
644643 msgid "Direct connection with no automatic tunnels"
645644 msgstr "ಯಾವುದೆ ಸ್ವಯಂಚಾಲಿತ ಟನಲ್‌ಗಳ ನೇರವಾದ ಸಂಪರ್ಕ "
646645
647 #: ../src/virt-viewer.c:135
646 #: src/virt-viewer.c:133
648647 msgid "Attach to the local display using libvirt"
649648 msgstr "libvirt ಅನ್ನು ಬಳಸಿಕೊಂಡು ಸ್ಥಳೀಯ ಪ್ರದರ್ಶಕಕ್ಕೆ ಲಗತ್ತಿಸು"
650649
651 #: ../src/virt-viewer.c:137
650 #: src/virt-viewer.c:135
652651 msgid "Connect to hypervisor"
653652 msgstr "ಹೈಪರ್ವೈಸರಿನೊಂದಿಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸು"
654653
655 #: ../src/virt-viewer.c:139
654 #: src/virt-viewer.c:137
656655 msgid "Wait for domain to start"
657656 msgstr "ಡೊಮೈನ್ ಆರಂಭಗೊಳ್ಳುವವರೆಗೆ ನಿರೀಕ್ಷಿಸು"
658657
659 #: ../src/virt-viewer.c:141
658 #: src/virt-viewer.c:139
660659 msgid "Reconnect to domain upon restart"
661660 msgstr "ಮರಳಿ ಆರಂಭಗೊಂಡ ನಂತರ ಮರಳಿ ಸಂಪರ್ಕ ಜೋಡಿಸು"
662661
663 #: ../src/virt-viewer.c:143
662 #: src/virt-viewer.c:141
664663 msgid "Select the virtual machine only by its name"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:145
666 #: src/virt-viewer.c:143
668667 msgid "Select the virtual machine only by its id"
669668 msgstr ""
670669
671 #: ../src/virt-viewer.c:147
670 #: src/virt-viewer.c:145
672671 msgid "Select the virtual machine only by its uuid"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:154
674 #: src/virt-viewer.c:152
676675 msgid "Virtual machine graphical console"
677676 msgstr "- ವರ್ಚುವಲ್ ಗಣಕದ ಗ್ರಾಫಿಕಲ್‌ ಕನ್ಸೋಲ್"
678677
679 #: ../src/virt-viewer.c:173
678 #: src/virt-viewer.c:171
680679 #, c-format
681680 msgid ""
682681 "\n"
684683 "\n"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:185
686 #: src/virt-viewer.c:183
688687 #, c-format
689688 msgid ""
690689 "\n"
692691 "\n"
693692 msgstr ""
694693
695 #: ../src/virt-viewer.c:300
694 #: src/virt-viewer.c:296
696695 msgid "Waiting for guest domain to re-start"
697696 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಮರಳಿ-ಆರಂಭಗೊಳ್ಳಲು ಕಾಯಲಾಗುತ್ತಿದೆ"
698697
699 #: ../src/virt-viewer.c:554
698 #: src/virt-viewer.c:550
700699 #, c-format
701700 msgid "Cannot determine the graphic type for the guest %s"
702701 msgstr "%s ಎಂಬ ಅತಿಥಿಗಾಗಿ ಗ್ರಾಫಿಕ್‌ನ ಬಗೆಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
703702
704 #: ../src/virt-viewer.c:603
703 #: src/virt-viewer.c:599
705704 #, c-format
706705 msgid "Cannot determine the host for the guest %s"
707706 msgstr "%s ಎಂಬ ಅತಿಥಿಗಾಗಿ ಆತಿಥೇಯವನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
708707
709 #: ../src/virt-viewer.c:631
708 #: src/virt-viewer.c:627
710709 #, c-format
711710 msgid "Guest '%s' is not reachable"
712711 msgstr ""
713712
714 #: ../src/virt-viewer.c:860
713 #: src/virt-viewer.c:856
715714 #, c-format
716715 msgid "Virtual machine %s is not running"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:884
718 #: src/virt-viewer.c:881
720719 msgid "Waiting for libvirt to start"
721720 msgstr "libvirt ಆರಂಭಗೊಳ್ಳುವವರೆಗೆ ಕಾಯಲಾಗುತ್ತಿದೆ"
722721
723 #: ../src/virt-viewer.c:888
722 #: src/virt-viewer.c:885
724723 msgid "Finding guest domain"
725724 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಅನ್ನು ಪತ್ತೆ ಮಾಡಲಾಗುತ್ತಿದೆ"
726725
727 #: ../src/virt-viewer.c:892
726 #: src/virt-viewer.c:889
728727 msgid "Waiting for guest domain to be created"
729728 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ನಿರ್ಮಾಣಗೊಳ್ಳಲು ಕಾಯಲಾಗುತ್ತಿದೆ"
730729
731 #: ../src/virt-viewer.c:918
730 #: src/virt-viewer.c:921
732731 msgid "Checking guest domain status"
733732 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಸ್ಥಿತಿಯನ್ನು ಪರಿಶೀಲಿಸಲಾಗುತ್ತಿದೆ"
734733
735 #: ../src/virt-viewer.c:921
734 #: src/virt-viewer.c:924
736735 msgid "Cannot get guest state"
737736 msgstr ""
738737
739 #: ../src/virt-viewer.c:927
738 #: src/virt-viewer.c:930
740739 msgid "Waiting for guest domain to start"
741740 msgstr "ಅತಿಥಿ ಡೊಮೈನ್ ಮರಳಿ-ಆರಂಭಗೊಳ್ಳಲು ಕಾಯಲಾಗುತ್ತಿದೆ"
742741
743 #: ../src/virt-viewer.c:1040
742 #: src/virt-viewer.c:1044
744743 #, c-format
745744 msgid "Unable to connect to libvirt with URI: %s."
746745 msgstr ""
747746
748 #: ../src/virt-viewer.c:1041
747 #: src/virt-viewer.c:1045
749748 msgid "[none]"
750749 msgstr "[ಯಾವುದೂ ಇಲ್ಲ]"
751750
752 #: ../src/virt-viewer.c:1048
751 #: src/virt-viewer.c:1052
753752 msgid "Authentication failed."
754753 msgstr ""
755754
756 #: ../src/virt-viewer.c:1108
755 #: src/virt-viewer.c:1112
757756 msgid "Failed to connect: "
758757 msgstr ""
759758
760 #.
761 #. * Local variables:
762 #. * c-indent-level: 4
763 #. * c-basic-offset: 4
764 #. * indent-tabs-mode: nil
765 #. * End:
766 #.
767 #: ../src/resources/ui/virt-viewer.ui.h:1
759 #: src/resources/ui/virt-viewer.ui:28
768760 msgid "_File"
769761 msgstr "ಕಡತ (_F)"
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:2
763 #: src/resources/ui/virt-viewer.ui:41
772764 msgid "_Screenshot"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:3
767 #: src/resources/ui/virt-viewer.ui:52
776768 msgid "_USB device selection"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:4
771 #: src/resources/ui/virt-viewer.ui:62
780772 msgid "Smartcard insertion"
781773 msgstr "ಸ್ಮಾರ್ಟ್ ಕಾರ್ಡ್ ಸೇರಿಸುವಿಕೆ"
782774
783 #: ../src/resources/ui/virt-viewer.ui.h:5
775 #: src/resources/ui/virt-viewer.ui:72
784776 msgid "Smartcard removal"
785777 msgstr "ಸ್ಮಾರ್ಟ್ ಕಾರ್ಡ್ ತೆಗೆದುಹಾಕುವಿಕೆ"
786778
787 #: ../src/resources/ui/virt-viewer.ui.h:6
779 #: src/resources/ui/virt-viewer.ui:80
788780 msgid "_Change CD"
789781 msgstr ""
790782
791 #: ../src/resources/ui/virt-viewer.ui.h:7
783 #: src/resources/ui/virt-viewer.ui:90
792784 msgid "_Preferences"
793785 msgstr ""
794786
795 #: ../src/resources/ui/virt-viewer.ui.h:8
787 #: src/resources/ui/virt-viewer.ui:103
796788 msgid "_Quit"
797789 msgstr ""
798790
799 #: ../src/resources/ui/virt-viewer.ui.h:9
791 #: src/resources/ui/virt-viewer.ui:119
792 msgid "_Machine"
793 msgstr ""
794
795 #: src/resources/ui/virt-viewer.ui:129
796 msgid "_Pause"
797 msgstr ""
798
799 #: src/resources/ui/virt-viewer.ui:144
800 msgid "_Reset"
801 msgstr ""
802
803 #: src/resources/ui/virt-viewer.ui:153
804 msgid "_Power down"
805 msgstr ""
806
807 #: src/resources/ui/virt-viewer.ui:167
800808 msgid "_View"
801809 msgstr "ನೋಟ (_V)"
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:10
811 #: src/resources/ui/virt-viewer.ui:180
804812 msgid "_Full screen"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:11
815 #: src/resources/ui/virt-viewer.ui:191
808816 msgid "_Zoom"
809817 msgstr "ಹಿಗ್ಗಿಸು/ಕುಗ್ಗಿಸು (_Z)"
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:12
819 #: src/resources/ui/virt-viewer.ui:201
812820 msgid "Zoom _In"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:13
823 #: src/resources/ui/virt-viewer.ui:212
816824 msgid "Zoom _Out"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:14
827 #: src/resources/ui/virt-viewer.ui:229
820828 msgid "_Normal Size"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:15
831 #: src/resources/ui/virt-viewer.ui:246
824832 msgid "_Displays"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer.ui.h:16
835 #: src/resources/ui/virt-viewer.ui:255
828836 msgid "Release cursor"
829837 msgstr "ತೆರೆಸೂಚಕವನ್ನು ಮುಕ್ತಗೊಳಿಸು"
830838
831 #: ../src/resources/ui/virt-viewer.ui.h:17
839 #: src/resources/ui/virt-viewer.ui:270
832840 msgid "_Send key"
833841 msgstr "ಕಳುಹಿಸುವ ಕೀಲಿ (_S)"
834842
835 #: ../src/resources/ui/virt-viewer.ui.h:18
843 #: src/resources/ui/virt-viewer.ui:279
836844 msgid "_Help"
837845 msgstr "ನೆರವು (_H)"
838846
839 #: ../src/resources/ui/virt-viewer.ui.h:19
847 #: src/resources/ui/virt-viewer.ui:290
840848 msgid "_Guest Details"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer.ui.h:20
851 #: src/resources/ui/virt-viewer.ui:297
844852 msgid "_About"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
855 #: src/resources/ui/virt-viewer-guest-details.ui:7
848856 msgid "Guest Details"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
859 #: src/resources/ui/virt-viewer-guest-details.ui:56
852860 msgid "Name:"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
863 #: src/resources/ui/virt-viewer-guest-details.ui:68
856864 msgid "GUID:"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
867 #: src/resources/ui/virt-viewer-vm-connection.ui:7
860868 msgid "Choose a virtual machine"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
871 #: src/resources/ui/virt-viewer-vm-connection.ui:96
864872 msgid "Available virtual machines"
865873 msgstr ""
866874
867 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
875 #: src/resources/ui/virt-viewer-preferences.ui:8
868876 msgid "Preferences"
869877 msgstr ""
870878
871 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
879 #: src/resources/ui/virt-viewer-preferences.ui:48
872880 msgid "Folder sharing"
873881 msgstr ""
874882
875 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
883 #: src/resources/ui/virt-viewer-preferences.ui:70
876884 msgid "Share folder"
877885 msgstr ""
878886
879 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
887 #: src/resources/ui/virt-viewer-preferences.ui:82
880888 msgid "Read-only"
881889 msgstr ""
882890
883 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
891 #: src/resources/ui/virt-viewer-preferences.ui:96
892 msgid "Share clipboard"
893 msgstr ""
894
895 #: src/resources/ui/virt-viewer-preferences.ui:132
884896 msgid "Spice"
885897 msgstr ""
898
899 #~ msgid "virt-manager.org"
900 #~ msgstr "virt-manager.org"
Binary diff not shown
+267
-252
po/ko.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
99 # Hyunsok Oh <hoh@redhat.com>, 2010
1010 msgid ""
1111 msgstr ""
12 "Project-Id-Version: PACKAGE VERSION\n"
13 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
15 "PO-Revision-Date: 2015-02-20 08:09-0500\n"
12 "Project-Id-Version: virt-viewer 9.0\n"
13 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
14 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
15 "PO-Revision-Date: 2015-02-20 08:09+0000\n"
1616 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1717 "Language-Team: Korean (http://www.transifex.com/projects/p/virt-viewer/"
1818 "language/ko/)\n"
2121 "Content-Type: text/plain; charset=UTF-8\n"
2222 "Content-Transfer-Encoding: 8bit\n"
2323 "Plural-Forms: nplurals=1; plural=0;\n"
24 "X-Generator: Zanata 3.9.6\n"
25
26 #: ../data/remote-viewer.appdata.xml.in.h:1
27 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
24 "X-Generator: Zanata 4.6.2\n"
25
26 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
27 #: src/remote-viewer-main.c:39
2828 msgid "Remote Viewer"
2929 msgstr "원격 뷰어"
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:2
31 #: data/remote-viewer.appdata.xml.in:7
3232 msgid "Remotely access virtual machines"
3333 msgstr ""
3434
35 #: ../data/remote-viewer.appdata.xml.in.h:3
35 #: data/remote-viewer.appdata.xml.in:9
3636 msgid ""
3737 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3838 "time it supports guest OS using the VNC or SPICE protocols. Further "
4141 "using SSL/TLS encryption."
4242 msgstr ""
4343
44 #: ../data/remote-viewer.desktop.in.h:2
44 #: data/remote-viewer.desktop.in:4
4545 msgid "Access remote desktops"
4646 msgstr "원격 데스크톱 액세스 "
4747
48 #: ../data/virt-viewer-mime.xml.in.h:1
49 msgid "Virt-Viewer connection file"
50 msgstr "Virt-Viewer 연결 파일 "
51
52 #: ../src/remote-viewer-iso-list-dialog.c:160
48 #: src/remote-viewer-iso-list-dialog.c:156
5349 msgid "Failed to fetch CD names"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:212
52 #: src/remote-viewer-iso-list-dialog.c:205
5753 msgid "<b>Loading...</b>"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:285
56 #: src/remote-viewer-iso-list-dialog.c:276
6157 msgid "Refresh"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:286
60 #: src/remote-viewer-iso-list-dialog.c:277
6561 msgid "Close"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:306
64 #: src/remote-viewer-iso-list-dialog.c:297
6965 msgid "Unspecified error"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:328
68 #: src/remote-viewer-iso-list-dialog.c:318
7369 msgid "Failed to change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer-iso-list-dialog.c:380
72 #: src/remote-viewer-iso-list-dialog.c:370
7773 msgid "Change CD"
7874 msgstr ""
7975
80 #: ../src/remote-viewer.c:118
76 #: src/remote-viewer.c:116
8177 msgid "Set window title"
8278 msgstr "창 제목 설정 "
8379
84 #: ../src/remote-viewer.c:125
80 #: src/remote-viewer.c:123
8581 msgid "Remote viewer client"
8682 msgstr ""
8783
88 #: ../src/remote-viewer.c:150
89 #, c-format
84 #: src/remote-viewer.c:148
9085 msgid ""
9186 "\n"
9287 "Error: can't handle multiple URIs\n"
9388 "\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
91 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9792 #, c-format
9893 msgid "Run '%s --help' to see a full list of available command line options\n"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:435
96 #: src/remote-viewer.c:429
10297 msgid "failed to parse ovirt uri"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
100 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
106101 msgid "Authentication was cancelled"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:480
104 #: src/remote-viewer.c:472
110105 #, c-format
111106 msgid "oVirt VM %s is not running"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:494
109 #: src/remote-viewer.c:486
115110 #, c-format
116111 msgid "oVirt VM %s has no display"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:520
114 #: src/remote-viewer.c:512
120115 #, c-format
121116 msgid "oVirt VM %s has no host information"
122117 msgstr ""
123118
124 #: ../src/remote-viewer.c:531
125 #, c-format
126 msgid "oVirt VM %s has unknown display type: %d"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:713
119 #: src/remote-viewer.c:523
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %u"
122 msgstr ""
123
124 #: src/remote-viewer.c:690
125 msgid "Couldn't open oVirt session: "
126 msgstr ""
127
128 #: src/remote-viewer.c:718
130129 msgid "Failed to initiate connection"
131130 msgstr "연결 초기화 실패 "
132131
133 #: ../src/remote-viewer.c:742
132 #: src/remote-viewer.c:747
134133 msgid "No connection was chosen"
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:759
136 #: src/remote-viewer.c:764
138137 msgid "Failed to read stdin: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:776
140 #: src/remote-viewer.c:781
142141 #, c-format
143142 msgid "Invalid file %s: "
144143 msgstr ""
145144
146 #: ../src/remote-viewer.c:786
145 #: src/remote-viewer.c:791
147146 msgid "Cannot determine the connection type from URI"
148147 msgstr "URI에서 연결 유형을 지정할 수 없음 "
149148
150 #: ../src/remote-viewer.c:792
151 msgid "Couldn't open oVirt session: "
152 msgstr ""
153
154 #: ../src/remote-viewer.c:815
149 #: src/remote-viewer.c:810
155150 #, c-format
156151 msgid "Unable to connect: %s"
157152 msgstr ""
158153
159 #.
160 #. * Local variables:
161 #. * c-indent-level: 4
162 #. * c-basic-offset: 4
163 #. * indent-tabs-mode: nil
164 #. * End:
165 #.
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
154 #: src/resources/ui/remote-viewer-connect.ui:6
167155 msgid "Connection details"
168156 msgstr "상세 연결 정보"
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
158 #: src/resources/ui/remote-viewer-connect.ui:24
171159 msgid "Connection _Address"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
162 #: src/resources/ui/remote-viewer-connect.ui:54
175163 msgid "For example, spice://foo.example.org:5900"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
166 #: src/resources/ui/remote-viewer-connect.ui:78
179167 msgid "Recent connections"
180168 msgstr ""
181169
182 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
183 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
185 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
170 #: src/resources/ui/remote-viewer-connect.ui:120
171 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
172 #: src/resources/ui/virt-viewer-vm-connection.ui:24
173 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
186174 msgid "_Cancel"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
190 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
177 #: src/resources/ui/remote-viewer-connect.ui:134
178 #: src/resources/ui/virt-viewer-vm-connection.ui:38
191179 msgid "C_onnect"
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
182 #: src/resources/ui/remote-viewer-iso-list.ui:28
195183 msgid "Loading..."
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
186 #: src/resources/ui/remote-viewer-iso-list.ui:78
199187 msgid "Select ISO"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
190 #: src/resources/ui/remote-viewer-iso-list.ui:116
203191 msgid "Selected"
204192 msgstr ""
205193
206 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
207 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
194 #: src/resources/ui/remote-viewer-iso-list.ui:129
195 #: src/resources/ui/virt-viewer-vm-connection.ui:72
208196 msgid "Name"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:1
199 #: src/resources/ui/virt-viewer-about.ui:7
212200 msgid "About Virt-Viewer"
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:2
203 #: src/resources/ui/virt-viewer-about.ui:16
216204 msgid ""
217205 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
218206 "Copyright (C) 2007-2014 Red Hat, Inc."
219207 msgstr ""
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:4
209 #: src/resources/ui/virt-viewer-about.ui:18
222210 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
223211 msgstr "GTK-VNC, SPICE-GTK, libvirt로 빌드된 원격 데스크톱 클라이언트 "
224212
225 #: ../src/resources/ui/virt-viewer-about.ui.h:5
226 msgid "virt-manager.org"
227 msgstr "virt-manager.org"
228
229 #: ../src/resources/ui/virt-viewer-about.ui.h:6
213 #: src/resources/ui/virt-viewer-about.ui:20
214 msgid "gitlab.com/virt-viewer/virt-viewer"
215 msgstr ""
216
217 #: src/resources/ui/virt-viewer-about.ui:21
230218 msgid ""
231219 "This program is free software; you can redistribute it and/or modify\n"
232220 "it under the terms of the GNU General Public License as published by\n"
256244 "along with this program; if not, write to the Free Software\n"
257245 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
258246
259 #: ../src/resources/ui/virt-viewer-about.ui.h:20
247 #: src/resources/ui/virt-viewer-about.ui:38
260248 msgid "The Fedora Translation Team"
261249 msgstr "Fedora 번역팀 "
262250
263 #: ../src/virt-viewer-app.c:459
251 #: src/virt-viewer-app.c:594
264252 msgid "Do you want to close the session?"
265253 msgstr "세션을 종료하시겠습니까?"
266254
267 #: ../src/virt-viewer-app.c:461
255 #: src/virt-viewer-app.c:596
268256 msgid "Do not ask me again"
269257 msgstr "다시 묻지 않습니다 "
270258
271 #: ../src/virt-viewer-app.c:655
259 #: src/virt-viewer-app.c:767
272260 #, c-format
273261 msgid "Address is too long for unix socket_path: %s"
274262 msgstr ""
275263
276 #: ../src/virt-viewer-app.c:665
264 #: src/virt-viewer-app.c:777
277265 #, c-format
278266 msgid "Creating unix socket failed: %s"
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:671
269 #: src/virt-viewer-app.c:783
282270 #, c-format
283271 msgid "Connecting to unix socket failed: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:955
274 #: src/virt-viewer-app.c:1077
287275 #, c-format
288276 msgid "Waiting for display %d..."
289277 msgstr "디스플레이 %d를 기다리는 중..."
290278
291 #: ../src/virt-viewer-app.c:1062
279 #: src/virt-viewer-app.c:1193
292280 #, c-format
293281 msgid "Unsupported graphic type '%s'"
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:1146
284 #: src/virt-viewer-app.c:1277
297285 msgid "Connect to ssh failed."
298286 msgstr "ssh 연결을 실패했습니다. "
299287
300 #: ../src/virt-viewer-app.c:1161
288 #: src/virt-viewer-app.c:1292
301289 #, c-format
302290 msgid "Can't connect to channel: %s"
303291 msgstr ""
304292
305 #: ../src/virt-viewer-app.c:1163
293 #: src/virt-viewer-app.c:1294
306294 msgid "only SSH or unix socket connection supported."
307295 msgstr ""
308296
309 #: ../src/virt-viewer-app.c:1176
297 #: src/virt-viewer-app.c:1311
310298 msgid "Connect to channel unsupported."
311299 msgstr "지원되지 않는 채널에 연결합니다. "
312300
313 #: ../src/virt-viewer-app.c:1238
301 #: src/virt-viewer-app.c:1376
314302 msgid "Display can only be attached through libvirt with --attach"
315303 msgstr ""
316304
317 #: ../src/virt-viewer-app.c:1263
305 #: src/virt-viewer-app.c:1401
318306 msgid "Connecting to graphic server"
319307 msgstr "그래픽 서버에 연결 중 "
320308
321 #: ../src/virt-viewer-app.c:1362
309 #: src/virt-viewer-app.c:1500
322310 msgid "Guest domain has shutdown"
323311 msgstr "게스트 도메인이 종료되었습니다 "
324312
325 #: ../src/virt-viewer-app.c:1423
313 #: src/virt-viewer-app.c:1561
326314 msgid "Connected to graphic server"
327315 msgstr "그래픽 서버에 연결 "
328316
329 #: ../src/virt-viewer-app.c:1452
317 #: src/virt-viewer-app.c:1590
330318 #, c-format
331319 msgid "Unable to connect to the graphic server %s"
332320 msgstr "그래픽 서버 %s에 연결할 수 없음 "
333321
334 #: ../src/virt-viewer-app.c:1478
322 #: src/virt-viewer-app.c:1616
335323 #, c-format
336324 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
337325 msgstr ""
338326
339 #: ../src/virt-viewer-app.c:1492
327 #: src/virt-viewer-app.c:1630
340328 #, c-format
341329 msgid "Unable to authenticate with remote desktop server: %s"
342330 msgstr "원격 데스크탑 서버로 인증할 수 없음: %s"
343331
344 #: ../src/virt-viewer-app.c:1500
332 #: src/virt-viewer-app.c:1638
345333 #, c-format
346334 msgid "USB redirection error: %s"
347335 msgstr "USB 리디렉션 오류: %s"
348336
349 #: ../src/virt-viewer-app.c:1834
337 #: src/virt-viewer-app.c:2026
350338 #, c-format
351339 msgid "Zoom level must be within %d-%d\n"
352340 msgstr ""
353341
354 #: ../src/virt-viewer-app.c:1887
342 #: src/virt-viewer-app.c:2081
355343 #, c-format
356344 msgid "%s\n"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:1897
347 #: src/virt-viewer-app.c:2091
360348 #, c-format
361349 msgid "%s version %s"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2321
352 #: src/virt-viewer-app.c:2545
365353 #, c-format
366354 msgid "Display _%d"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2577
357 #: src/virt-viewer-app.c:2829
370358 #, c-format
371359 msgid "Invalid kiosk-quit argument: %s"
372360 msgstr ""
373361
374 #: ../src/virt-viewer-app.c:2588
362 #: src/virt-viewer-app.c:2840
375363 msgid "Display version information"
376364 msgstr "버전 정보 보기 "
377365
378 #: ../src/virt-viewer-app.c:2590
366 #: src/virt-viewer-app.c:2842
379367 msgid "Zoom level of window, in percentage"
380368 msgstr "윈도우의 줌 레벨 (백분율) "
381369
382 #: ../src/virt-viewer-app.c:2592
370 #: src/virt-viewer-app.c:2844
383371 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
384372 msgstr ""
385373
386 #: ../src/virt-viewer-app.c:2594
374 #: src/virt-viewer-app.c:2846
387375 msgid "Customise hotkeys"
388376 msgstr "핫키 사용자 정의 "
389377
390 #: ../src/virt-viewer-app.c:2596
378 #: src/virt-viewer-app.c:2848
391379 msgid "Enable kiosk mode"
392380 msgstr ""
393381
394 #: ../src/virt-viewer-app.c:2598
382 #: src/virt-viewer-app.c:2850
395383 msgid "Quit on given condition in kiosk mode"
396384 msgstr ""
397385
398 #: ../src/virt-viewer-app.c:2598
386 #: src/virt-viewer-app.c:2850
399387 msgid "<never|on-disconnect>"
400388 msgstr ""
401389
402 #: ../src/virt-viewer-app.c:2600
390 #: src/virt-viewer-app.c:2852
403391 msgid "Display verbose information"
404392 msgstr "상세 정보 보기 "
405393
406 #: ../src/virt-viewer-app.c:2602
394 #: src/virt-viewer-app.c:2854
407395 msgid "Display debugging information"
408396 msgstr "디버그 정보 보기 "
409397
410 #: ../src/virt-viewer-auth.c:89
398 #: src/virt-viewer-auth.c:89
411399 #, c-format
412400 msgid ""
413401 "Authentication is required for the %s connection to:\n"
416404 "\n"
417405 msgstr ""
418406
419 #: ../src/virt-viewer-auth.c:93
407 #: src/virt-viewer-auth.c:93
420408 #, c-format
421409 msgid "Authentication is required for the %s connection:\n"
422410 msgstr ""
423411
424 #.
425 #. * Local variables:
426 #. * c-indent-level: 4
427 #. * c-basic-offset: 4
428 #. * indent-tabs-mode: nil
429 #. * End:
430 #.
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
412 #: src/resources/ui/virt-viewer-auth.ui:7
432413 msgid "Authentication required"
433414 msgstr "인증이 필요함 "
434415
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
416 #: src/resources/ui/virt-viewer-auth.ui:42
436417 msgid "_OK"
437418 msgstr ""
438419
439 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
440 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
441 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
420 #: src/resources/ui/virt-viewer-auth.ui:71
421 #: src/resources/ui/virt-viewer-guest-details.ui:82
422 #: src/resources/ui/virt-viewer-guest-details.ui:96
423 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
442424 msgid "label"
443425 msgstr "레이블 "
444426
445 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
427 #: src/resources/ui/virt-viewer-auth.ui:93
446428 msgid "Password:"
447429 msgstr "암호: "
448430
449 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
431 #: src/resources/ui/virt-viewer-auth.ui:105
450432 msgid "Username:"
451433 msgstr "사용자 이름 "
452434
453 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
435 #: src/resources/ui/virt-viewer-auth.ui:137
454436 msgid "Show password"
455437 msgstr ""
456438
457 #: ../src/virt-viewer-display-vnc.c:134
439 #: src/virt-viewer-display-vnc.c:130
458440 msgid "VNC does not provide GUID"
459441 msgstr ""
460442
461 #: ../src/virt-viewer-file-transfer-dialog.c:128
443 #: src/virt-viewer-display-vte.c:181
444 msgid "Console support is compiled out!"
445 msgstr ""
446
447 #: src/virt-viewer-file-transfer-dialog.c:124
462448 msgid "File Transfers"
463449 msgstr ""
464450
465 #: ../src/virt-viewer-file-transfer-dialog.c:154
451 #: src/virt-viewer-file-transfer-dialog.c:150
466452 msgid "Transferring 1 file..."
467453 msgstr ""
468454
469 #: ../src/virt-viewer-file-transfer-dialog.c:156
470 #, c-format
471 msgid "Transferring %d file of %d..."
472 msgid_plural "Transferring %d files of %d..."
455 #: src/virt-viewer-file-transfer-dialog.c:152
456 #, c-format
457 msgid "Transferring %u file of %u..."
458 msgid_plural "Transferring %u files of %u..."
473459 msgstr[0] ""
474460
475 #: ../src/virt-viewer-file-transfer-dialog.c:228
476 #, c-format
477 msgid "An error caused the following file transfers to fail:%s"
478 msgstr ""
479
480 #: ../src/virt-viewer-main.c:38
461 #: src/virt-viewer-file-transfer-dialog.c:225
462 msgid "An error caused the following file transfers to fail:"
463 msgstr ""
464
465 #: src/virt-viewer-main.c:38
481466 msgid "Virt Viewer"
482467 msgstr "가상 머신 뷰어 "
483468
484 #: ../src/virt-viewer-session-spice.c:704
469 #: src/virt-viewer-session-spice.c:731
485470 msgid "Invalid password"
486471 msgstr ""
487472
488 #. Create the widgets
489 #: ../src/virt-viewer-session-spice.c:802
473 #: src/virt-viewer-session-spice.c:829
490474 msgid "Select USB devices for redirection"
491475 msgstr "리디렉션을 위한 USB 장치 선택 "
492476
493 #: ../src/virt-viewer-session-spice.c:804
494 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
477 #: src/virt-viewer-session-spice.c:831
478 #: src/resources/ui/virt-viewer-guest-details.ui:23
495479 msgid "_Close"
496480 msgstr ""
497481
498 #: ../src/virt-viewer-session-vnc.c:162
499 #, c-format
500 msgid "Unsupported authentication type %d"
501 msgstr "지원되지 않는 인증 유형 %d"
502
503 #: ../src/virt-viewer-vm-connection.c:64
482 #: src/virt-viewer-session-spice.c:1019
483 msgid "Serial"
484 msgstr ""
485
486 #: src/virt-viewer-session-spice.c:1021
487 msgid "QEMU human monitor"
488 msgstr ""
489
490 #: src/virt-viewer-session-spice.c:1023
491 msgid "QEMU debug console"
492 msgstr ""
493
494 #: src/virt-viewer-session-vnc.c:158
495 #, c-format
496 msgid "Unsupported authentication type %u"
497 msgstr ""
498
499 #: src/virt-viewer-vm-connection.c:64
504500 msgid "No running virtual machine found"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-vm-connection.c:93
503 #: src/virt-viewer-vm-connection.c:93
508504 msgid "No virtual machine was chosen"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:544
507 #: src/virt-viewer-window.c:621
512508 msgid "Ctrl+Alt+_Del"
513509 msgstr "Ctrl+Alt+Del(_D) "
514510
515 #: ../src/virt-viewer-window.c:545
511 #: src/virt-viewer-window.c:622
516512 msgid "Ctrl+Alt+_Backspace"
517513 msgstr "Ctrl+Alt+Backspace(_B)"
518514
519 #: ../src/virt-viewer-window.c:547
515 #: src/virt-viewer-window.c:624
520516 msgid "Ctrl+Alt+F_1"
521517 msgstr "Ctrl+Alt+F_1"
522518
523 #: ../src/virt-viewer-window.c:548
519 #: src/virt-viewer-window.c:625
524520 msgid "Ctrl+Alt+F_2"
525521 msgstr "Ctrl+Alt+F_2"
526522
527 #: ../src/virt-viewer-window.c:549
523 #: src/virt-viewer-window.c:626
528524 msgid "Ctrl+Alt+F_3"
529525 msgstr "Ctrl+Alt+F_3"
530526
531 #: ../src/virt-viewer-window.c:550
527 #: src/virt-viewer-window.c:627
532528 msgid "Ctrl+Alt+F_4"
533529 msgstr "Ctrl+Alt+F_4"
534530
535 #: ../src/virt-viewer-window.c:551
531 #: src/virt-viewer-window.c:628
536532 msgid "Ctrl+Alt+F_5"
537533 msgstr "Ctrl+Alt+F_5"
538534
539 #: ../src/virt-viewer-window.c:552
535 #: src/virt-viewer-window.c:629
540536 msgid "Ctrl+Alt+F_6"
541537 msgstr "Ctrl+Alt+F_6"
542538
543 #: ../src/virt-viewer-window.c:553
539 #: src/virt-viewer-window.c:630
544540 msgid "Ctrl+Alt+F_7"
545541 msgstr "Ctrl+Alt+F_7"
546542
547 #: ../src/virt-viewer-window.c:554
543 #: src/virt-viewer-window.c:631
548544 msgid "Ctrl+Alt+F_8"
549545 msgstr "Ctrl+Alt+F_8"
550546
551 #: ../src/virt-viewer-window.c:555
547 #: src/virt-viewer-window.c:632
552548 msgid "Ctrl+Alt+F_9"
553549 msgstr "Ctrl+Alt+F_9"
554550
555 #: ../src/virt-viewer-window.c:556
551 #: src/virt-viewer-window.c:633
556552 msgid "Ctrl+Alt+F1_0"
557553 msgstr "Ctrl+Alt+F1_0"
558554
559 #: ../src/virt-viewer-window.c:557
555 #: src/virt-viewer-window.c:634
560556 msgid "Ctrl+Alt+F11"
561557 msgstr "Ctrl+Alt+F11"
562558
563 #: ../src/virt-viewer-window.c:558
559 #: src/virt-viewer-window.c:635
564560 msgid "Ctrl+Alt+F12"
565561 msgstr "Ctrl+Alt+F12"
566562
567 #: ../src/virt-viewer-window.c:953
563 #: src/virt-viewer-window.c:637
564 msgid "_PrintScreen"
565 msgstr ""
566
567 #: src/virt-viewer-window.c:1030
568568 #, c-format
569569 msgid "Unable to determine image format for file '%s'"
570570 msgstr ""
571571
572 #: ../src/virt-viewer-window.c:980
572 #: src/virt-viewer-window.c:1053
573 msgid "Save screenshot"
574 msgstr ""
575
576 #: src/virt-viewer-window.c:1057
573577 msgid "_Save"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:988
580 #: src/virt-viewer-window.c:1065
577581 msgid "Screenshot.png"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
584 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
581585 msgid "Unknown"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1152
588 #: src/virt-viewer-window.c:1237
585589 msgid "Unable to connnect to oVirt"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1175
592 #: src/virt-viewer-window.c:1260
589593 msgid "Disconnect"
590594 msgstr "연결 해제 "
591595
592 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
596 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
593597 msgid "USB device selection"
594598 msgstr "USB 장치 선택 "
595599
596 #: ../src/virt-viewer-window.c:1193
600 #: src/virt-viewer-window.c:1278
597601 msgid "Send key combination"
598602 msgstr "조합 키 전송"
599603
600 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
604 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
601605 msgid "Leave fullscreen"
602606 msgstr "전체 화면 해제 "
603607
604 #: ../src/virt-viewer-window.c:1279
608 #: src/virt-viewer-window.c:1364
605609 msgid "Ctrl+Alt"
606610 msgstr "Ctrl+Alt"
607611
608 #: ../src/virt-viewer-window.c:1282
612 #: src/virt-viewer-window.c:1367
609613 #, c-format
610614 msgid "(Press %s to release pointer)"
611615 msgstr "(포인터를 개방하려면 %s를 누르십시오)"
612616
613 #. translators:
614 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
615 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
616 #.
617 #: ../src/virt-viewer-window.c:1293
617 #: src/virt-viewer-window.c:1378
618618 #, c-format
619619 msgid "%s%s%s - %s"
620620 msgstr "%s%s%s - %s"
621621
622 #. translators: <space>
623 #: ../src/virt-viewer-window.c:1297
622 #: src/virt-viewer-window.c:1382
624623 msgid " "
625624 msgstr " "
626625
627 #: ../src/virt-viewer-file.c:862
626 #: src/virt-viewer-file.c:875
628627 #, c-format
629628 msgid ""
630629 "At least %s version %s is required to setup this connection, see %s for "
631630 "details"
632631 msgstr ""
633632
634 #: ../src/virt-viewer-file.c:870
633 #: src/virt-viewer-file.c:883
635634 #, c-format
636635 msgid "At least %s version %s is required to setup this connection"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:133
638 #: src/virt-viewer.c:131
640639 msgid "Direct connection with no automatic tunnels"
641640 msgstr "자동으로 터널링하지 않고 직접 연결 "
642641
643 #: ../src/virt-viewer.c:135
642 #: src/virt-viewer.c:133
644643 msgid "Attach to the local display using libvirt"
645644 msgstr "libvirt를 사용하여 로컬 디스플레이에 연결 "
646645
647 #: ../src/virt-viewer.c:137
646 #: src/virt-viewer.c:135
648647 msgid "Connect to hypervisor"
649648 msgstr "하이퍼바이저에 연결 "
650649
651 #: ../src/virt-viewer.c:139
650 #: src/virt-viewer.c:137
652651 msgid "Wait for domain to start"
653652 msgstr "도메인 시작을 기다립니다 "
654653
655 #: ../src/virt-viewer.c:141
654 #: src/virt-viewer.c:139
656655 msgid "Reconnect to domain upon restart"
657656 msgstr "다시 시작시 도메인에 다시 연결 "
658657
659 #: ../src/virt-viewer.c:143
658 #: src/virt-viewer.c:141
660659 msgid "Select the virtual machine only by its name"
661660 msgstr ""
662661
663 #: ../src/virt-viewer.c:145
662 #: src/virt-viewer.c:143
664663 msgid "Select the virtual machine only by its id"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:147
666 #: src/virt-viewer.c:145
668667 msgid "Select the virtual machine only by its uuid"
669668 msgstr ""
670669
671 #: ../src/virt-viewer.c:154
670 #: src/virt-viewer.c:152
672671 msgid "Virtual machine graphical console"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:173
674 #: src/virt-viewer.c:171
676675 #, c-format
677676 msgid ""
678677 "\n"
680679 "\n"
681680 msgstr ""
682681
683 #: ../src/virt-viewer.c:185
682 #: src/virt-viewer.c:183
684683 #, c-format
685684 msgid ""
686685 "\n"
688687 "\n"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:300
690 #: src/virt-viewer.c:296
692691 msgid "Waiting for guest domain to re-start"
693692 msgstr "다시 시작할 게스트 도메인을 기다리는 중 "
694693
695 #: ../src/virt-viewer.c:554
694 #: src/virt-viewer.c:550
696695 #, c-format
697696 msgid "Cannot determine the graphic type for the guest %s"
698697 msgstr "게스트 %s의 그래픽 유형을 지정할 수 없음 "
699698
700 #: ../src/virt-viewer.c:603
699 #: src/virt-viewer.c:599
701700 #, c-format
702701 msgid "Cannot determine the host for the guest %s"
703702 msgstr "게스트 %s의 호스트를 지정할 수 없음 "
704703
705 #: ../src/virt-viewer.c:631
704 #: src/virt-viewer.c:627
706705 #, c-format
707706 msgid "Guest '%s' is not reachable"
708707 msgstr ""
709708
710 #: ../src/virt-viewer.c:860
709 #: src/virt-viewer.c:856
711710 #, c-format
712711 msgid "Virtual machine %s is not running"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:884
714 #: src/virt-viewer.c:881
716715 msgid "Waiting for libvirt to start"
717716 msgstr "libvirt 시작을 기다리는 중 "
718717
719 #: ../src/virt-viewer.c:888
718 #: src/virt-viewer.c:885
720719 msgid "Finding guest domain"
721720 msgstr "게스트 도메인 검색 중 "
722721
723 #: ../src/virt-viewer.c:892
722 #: src/virt-viewer.c:889
724723 msgid "Waiting for guest domain to be created"
725724 msgstr "게스트 도메인이 생성되기를 기다리는 중 "
726725
727 #: ../src/virt-viewer.c:918
726 #: src/virt-viewer.c:921
728727 msgid "Checking guest domain status"
729728 msgstr "게스트 도메인 상태 확인 중 "
730729
731 #: ../src/virt-viewer.c:921
730 #: src/virt-viewer.c:924
732731 msgid "Cannot get guest state"
733732 msgstr ""
734733
735 #: ../src/virt-viewer.c:927
734 #: src/virt-viewer.c:930
736735 msgid "Waiting for guest domain to start"
737736 msgstr "시작할 게스트 도메인을 기다리는 중 "
738737
739 #: ../src/virt-viewer.c:1040
738 #: src/virt-viewer.c:1044
740739 #, c-format
741740 msgid "Unable to connect to libvirt with URI: %s."
742741 msgstr ""
743742
744 #: ../src/virt-viewer.c:1041
743 #: src/virt-viewer.c:1045
745744 msgid "[none]"
746745 msgstr "[없음]"
747746
748 #: ../src/virt-viewer.c:1048
747 #: src/virt-viewer.c:1052
749748 msgid "Authentication failed."
750749 msgstr ""
751750
752 #: ../src/virt-viewer.c:1108
751 #: src/virt-viewer.c:1112
753752 msgid "Failed to connect: "
754753 msgstr ""
755754
756 #.
757 #. * Local variables:
758 #. * c-indent-level: 4
759 #. * c-basic-offset: 4
760 #. * indent-tabs-mode: nil
761 #. * End:
762 #.
763 #: ../src/resources/ui/virt-viewer.ui.h:1
755 #: src/resources/ui/virt-viewer.ui:28
764756 msgid "_File"
765757 msgstr "파일(_F)"
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:2
759 #: src/resources/ui/virt-viewer.ui:41
768760 msgid "_Screenshot"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:3
763 #: src/resources/ui/virt-viewer.ui:52
772764 msgid "_USB device selection"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:4
767 #: src/resources/ui/virt-viewer.ui:62
776768 msgid "Smartcard insertion"
777769 msgstr "스마트카드 삽입 "
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:5
771 #: src/resources/ui/virt-viewer.ui:72
780772 msgid "Smartcard removal"
781773 msgstr "스마트카드 제거 "
782774
783 #: ../src/resources/ui/virt-viewer.ui.h:6
775 #: src/resources/ui/virt-viewer.ui:80
784776 msgid "_Change CD"
785777 msgstr ""
786778
787 #: ../src/resources/ui/virt-viewer.ui.h:7
779 #: src/resources/ui/virt-viewer.ui:90
788780 msgid "_Preferences"
789781 msgstr ""
790782
791 #: ../src/resources/ui/virt-viewer.ui.h:8
783 #: src/resources/ui/virt-viewer.ui:103
792784 msgid "_Quit"
793785 msgstr ""
794786
795 #: ../src/resources/ui/virt-viewer.ui.h:9
787 #: src/resources/ui/virt-viewer.ui:119
788 msgid "_Machine"
789 msgstr ""
790
791 #: src/resources/ui/virt-viewer.ui:129
792 msgid "_Pause"
793 msgstr ""
794
795 #: src/resources/ui/virt-viewer.ui:144
796 msgid "_Reset"
797 msgstr ""
798
799 #: src/resources/ui/virt-viewer.ui:153
800 msgid "_Power down"
801 msgstr ""
802
803 #: src/resources/ui/virt-viewer.ui:167
796804 msgid "_View"
797805 msgstr "보기(_V)"
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:10
807 #: src/resources/ui/virt-viewer.ui:180
800808 msgid "_Full screen"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:11
811 #: src/resources/ui/virt-viewer.ui:191
804812 msgid "_Zoom"
805813 msgstr "줌(_Z) "
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:12
815 #: src/resources/ui/virt-viewer.ui:201
808816 msgid "Zoom _In"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:13
819 #: src/resources/ui/virt-viewer.ui:212
812820 msgid "Zoom _Out"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:14
823 #: src/resources/ui/virt-viewer.ui:229
816824 msgid "_Normal Size"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:15
827 #: src/resources/ui/virt-viewer.ui:246
820828 msgid "_Displays"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:16
831 #: src/resources/ui/virt-viewer.ui:255
824832 msgid "Release cursor"
825833 msgstr "커서 개방 "
826834
827 #: ../src/resources/ui/virt-viewer.ui.h:17
835 #: src/resources/ui/virt-viewer.ui:270
828836 msgid "_Send key"
829837 msgstr "키 전송(_S)"
830838
831 #: ../src/resources/ui/virt-viewer.ui.h:18
839 #: src/resources/ui/virt-viewer.ui:279
832840 msgid "_Help"
833841 msgstr "도움말(_H) "
834842
835 #: ../src/resources/ui/virt-viewer.ui.h:19
843 #: src/resources/ui/virt-viewer.ui:290
836844 msgid "_Guest Details"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer.ui.h:20
847 #: src/resources/ui/virt-viewer.ui:297
840848 msgid "_About"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
851 #: src/resources/ui/virt-viewer-guest-details.ui:7
844852 msgid "Guest Details"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
855 #: src/resources/ui/virt-viewer-guest-details.ui:56
848856 msgid "Name:"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
859 #: src/resources/ui/virt-viewer-guest-details.ui:68
852860 msgid "GUID:"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
863 #: src/resources/ui/virt-viewer-vm-connection.ui:7
856864 msgid "Choose a virtual machine"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
867 #: src/resources/ui/virt-viewer-vm-connection.ui:96
860868 msgid "Available virtual machines"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
871 #: src/resources/ui/virt-viewer-preferences.ui:8
864872 msgid "Preferences"
865873 msgstr ""
866874
867 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
875 #: src/resources/ui/virt-viewer-preferences.ui:48
868876 msgid "Folder sharing"
869877 msgstr ""
870878
871 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
879 #: src/resources/ui/virt-viewer-preferences.ui:70
872880 msgid "Share folder"
873881 msgstr ""
874882
875 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
883 #: src/resources/ui/virt-viewer-preferences.ui:82
876884 msgid "Read-only"
877885 msgstr ""
878886
879 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
887 #: src/resources/ui/virt-viewer-preferences.ui:96
888 msgid "Share clipboard"
889 msgstr ""
890
891 #: src/resources/ui/virt-viewer-preferences.ui:132
880892 msgid "Spice"
881893 msgstr ""
894
895 #~ msgid "virt-manager.org"
896 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/kw.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444 msgstr[3] ""
459445
460 #: ../src/virt-viewer-file-transfer-dialog.c:228
461 #, c-format
462 msgid "An error caused the following file transfers to fail:%s"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:38
446 #: src/virt-viewer-file-transfer-dialog.c:225
447 msgid "An error caused the following file transfers to fail:"
448 msgstr ""
449
450 #: src/virt-viewer-main.c:38
466451 msgid "Virt Viewer"
467452 msgstr ""
468453
469 #: ../src/virt-viewer-session-spice.c:704
454 #: src/virt-viewer-session-spice.c:731
470455 msgid "Invalid password"
471456 msgstr ""
472457
473 #. Create the widgets
474 #: ../src/virt-viewer-session-spice.c:802
458 #: src/virt-viewer-session-spice.c:829
475459 msgid "Select USB devices for redirection"
476460 msgstr ""
477461
478 #: ../src/virt-viewer-session-spice.c:804
479 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
462 #: src/virt-viewer-session-spice.c:831
463 #: src/resources/ui/virt-viewer-guest-details.ui:23
480464 msgid "_Close"
481465 msgstr ""
482466
483 #: ../src/virt-viewer-session-vnc.c:162
484 #, c-format
485 msgid "Unsupported authentication type %d"
486 msgstr ""
487
488 #: ../src/virt-viewer-vm-connection.c:64
467 #: src/virt-viewer-session-spice.c:1019
468 msgid "Serial"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1021
472 msgid "QEMU human monitor"
473 msgstr ""
474
475 #: src/virt-viewer-session-spice.c:1023
476 msgid "QEMU debug console"
477 msgstr ""
478
479 #: src/virt-viewer-session-vnc.c:158
480 #, c-format
481 msgid "Unsupported authentication type %u"
482 msgstr ""
483
484 #: src/virt-viewer-vm-connection.c:64
489485 msgid "No running virtual machine found"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-vm-connection.c:93
488 #: src/virt-viewer-vm-connection.c:93
493489 msgid "No virtual machine was chosen"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:544
492 #: src/virt-viewer-window.c:621
497493 msgid "Ctrl+Alt+_Del"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:545
496 #: src/virt-viewer-window.c:622
501497 msgid "Ctrl+Alt+_Backspace"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:547
500 #: src/virt-viewer-window.c:624
505501 msgid "Ctrl+Alt+F_1"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:548
504 #: src/virt-viewer-window.c:625
509505 msgid "Ctrl+Alt+F_2"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:549
508 #: src/virt-viewer-window.c:626
513509 msgid "Ctrl+Alt+F_3"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:550
512 #: src/virt-viewer-window.c:627
517513 msgid "Ctrl+Alt+F_4"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:551
516 #: src/virt-viewer-window.c:628
521517 msgid "Ctrl+Alt+F_5"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:552
520 #: src/virt-viewer-window.c:629
525521 msgid "Ctrl+Alt+F_6"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:553
524 #: src/virt-viewer-window.c:630
529525 msgid "Ctrl+Alt+F_7"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:554
528 #: src/virt-viewer-window.c:631
533529 msgid "Ctrl+Alt+F_8"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:555
532 #: src/virt-viewer-window.c:632
537533 msgid "Ctrl+Alt+F_9"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:556
536 #: src/virt-viewer-window.c:633
541537 msgid "Ctrl+Alt+F1_0"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:557
540 #: src/virt-viewer-window.c:634
545541 msgid "Ctrl+Alt+F11"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:558
544 #: src/virt-viewer-window.c:635
549545 msgid "Ctrl+Alt+F12"
550546 msgstr ""
551547
552 #: ../src/virt-viewer-window.c:953
548 #: src/virt-viewer-window.c:637
549 msgid "_PrintScreen"
550 msgstr ""
551
552 #: src/virt-viewer-window.c:1030
553553 #, c-format
554554 msgid "Unable to determine image format for file '%s'"
555555 msgstr ""
556556
557 #: ../src/virt-viewer-window.c:980
557 #: src/virt-viewer-window.c:1053
558 msgid "Save screenshot"
559 msgstr ""
560
561 #: src/virt-viewer-window.c:1057
558562 msgid "_Save"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:988
565 #: src/virt-viewer-window.c:1065
562566 msgid "Screenshot.png"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
569 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
566570 msgid "Unknown"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1152
573 #: src/virt-viewer-window.c:1237
570574 msgid "Unable to connnect to oVirt"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1175
577 #: src/virt-viewer-window.c:1260
574578 msgid "Disconnect"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
581 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
578582 msgid "USB device selection"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1193
585 #: src/virt-viewer-window.c:1278
582586 msgid "Send key combination"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
589 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
586590 msgid "Leave fullscreen"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1279
593 #: src/virt-viewer-window.c:1364
590594 msgid "Ctrl+Alt"
591595 msgstr ""
592596
593 #: ../src/virt-viewer-window.c:1282
597 #: src/virt-viewer-window.c:1367
594598 #, c-format
595599 msgid "(Press %s to release pointer)"
596600 msgstr ""
597601
598 #. translators:
599 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601 #.
602 #: ../src/virt-viewer-window.c:1293
602 #: src/virt-viewer-window.c:1378
603603 #, c-format
604604 msgid "%s%s%s - %s"
605605 msgstr ""
606606
607 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1297
607 #: src/virt-viewer-window.c:1382
609608 msgid " "
610609 msgstr ""
611610
612 #: ../src/virt-viewer-file.c:862
611 #: src/virt-viewer-file.c:875
613612 #, c-format
614613 msgid ""
615614 "At least %s version %s is required to setup this connection, see %s for "
616615 "details"
617616 msgstr ""
618617
619 #: ../src/virt-viewer-file.c:870
618 #: src/virt-viewer-file.c:883
620619 #, c-format
621620 msgid "At least %s version %s is required to setup this connection"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:133
623 #: src/virt-viewer.c:131
625624 msgid "Direct connection with no automatic tunnels"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:135
627 #: src/virt-viewer.c:133
629628 msgid "Attach to the local display using libvirt"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:137
631 #: src/virt-viewer.c:135
633632 msgid "Connect to hypervisor"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:139
635 #: src/virt-viewer.c:137
637636 msgid "Wait for domain to start"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:141
639 #: src/virt-viewer.c:139
641640 msgid "Reconnect to domain upon restart"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:143
643 #: src/virt-viewer.c:141
645644 msgid "Select the virtual machine only by its name"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:145
647 #: src/virt-viewer.c:143
649648 msgid "Select the virtual machine only by its id"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:147
651 #: src/virt-viewer.c:145
653652 msgid "Select the virtual machine only by its uuid"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:154
655 #: src/virt-viewer.c:152
657656 msgid "Virtual machine graphical console"
658657 msgstr ""
659658
660 #: ../src/virt-viewer.c:173
659 #: src/virt-viewer.c:171
661660 #, c-format
662661 msgid ""
663662 "\n"
665664 "\n"
666665 msgstr ""
667666
668 #: ../src/virt-viewer.c:185
667 #: src/virt-viewer.c:183
669668 #, c-format
670669 msgid ""
671670 "\n"
673672 "\n"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:300
675 #: src/virt-viewer.c:296
677676 msgid "Waiting for guest domain to re-start"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.c:554
679 #: src/virt-viewer.c:550
681680 #, c-format
682681 msgid "Cannot determine the graphic type for the guest %s"
683682 msgstr ""
684683
685 #: ../src/virt-viewer.c:603
684 #: src/virt-viewer.c:599
686685 #, c-format
687686 msgid "Cannot determine the host for the guest %s"
688687 msgstr ""
689688
690 #: ../src/virt-viewer.c:631
689 #: src/virt-viewer.c:627
691690 #, c-format
692691 msgid "Guest '%s' is not reachable"
693692 msgstr ""
694693
695 #: ../src/virt-viewer.c:860
694 #: src/virt-viewer.c:856
696695 #, c-format
697696 msgid "Virtual machine %s is not running"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:884
699 #: src/virt-viewer.c:881
701700 msgid "Waiting for libvirt to start"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:888
703 #: src/virt-viewer.c:885
705704 msgid "Finding guest domain"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:892
707 #: src/virt-viewer.c:889
709708 msgid "Waiting for guest domain to be created"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:918
711 #: src/virt-viewer.c:921
713712 msgid "Checking guest domain status"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:921
715 #: src/virt-viewer.c:924
717716 msgid "Cannot get guest state"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:927
719 #: src/virt-viewer.c:930
721720 msgid "Waiting for guest domain to start"
722721 msgstr ""
723722
724 #: ../src/virt-viewer.c:1040
723 #: src/virt-viewer.c:1044
725724 #, c-format
726725 msgid "Unable to connect to libvirt with URI: %s."
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1041
728 #: src/virt-viewer.c:1045
730729 msgid "[none]"
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1048
732 #: src/virt-viewer.c:1052
734733 msgid "Authentication failed."
735734 msgstr ""
736735
737 #: ../src/virt-viewer.c:1108
736 #: src/virt-viewer.c:1112
738737 msgid "Failed to connect: "
739738 msgstr ""
740739
741 #.
742 #. * Local variables:
743 #. * c-indent-level: 4
744 #. * c-basic-offset: 4
745 #. * indent-tabs-mode: nil
746 #. * End:
747 #.
748 #: ../src/resources/ui/virt-viewer.ui.h:1
740 #: src/resources/ui/virt-viewer.ui:28
749741 msgid "_File"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:2
744 #: src/resources/ui/virt-viewer.ui:41
753745 msgid "_Screenshot"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:3
748 #: src/resources/ui/virt-viewer.ui:52
757749 msgid "_USB device selection"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:4
752 #: src/resources/ui/virt-viewer.ui:62
761753 msgid "Smartcard insertion"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:5
756 #: src/resources/ui/virt-viewer.ui:72
765757 msgid "Smartcard removal"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:6
760 #: src/resources/ui/virt-viewer.ui:80
769761 msgid "_Change CD"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:7
764 #: src/resources/ui/virt-viewer.ui:90
773765 msgid "_Preferences"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:8
768 #: src/resources/ui/virt-viewer.ui:103
777769 msgid "_Quit"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:9
772 #: src/resources/ui/virt-viewer.ui:119
773 msgid "_Machine"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:129
777 msgid "_Pause"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:144
781 msgid "_Reset"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:153
785 msgid "_Power down"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:167
781789 msgid "_View"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:10
792 #: src/resources/ui/virt-viewer.ui:180
785793 msgid "_Full screen"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:11
796 #: src/resources/ui/virt-viewer.ui:191
789797 msgid "_Zoom"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:12
800 #: src/resources/ui/virt-viewer.ui:201
793801 msgid "Zoom _In"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:13
804 #: src/resources/ui/virt-viewer.ui:212
797805 msgid "Zoom _Out"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:14
808 #: src/resources/ui/virt-viewer.ui:229
801809 msgid "_Normal Size"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:15
812 #: src/resources/ui/virt-viewer.ui:246
805813 msgid "_Displays"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:16
816 #: src/resources/ui/virt-viewer.ui:255
809817 msgid "Release cursor"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:17
820 #: src/resources/ui/virt-viewer.ui:270
813821 msgid "_Send key"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:18
824 #: src/resources/ui/virt-viewer.ui:279
817825 msgid "_Help"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:19
828 #: src/resources/ui/virt-viewer.ui:290
821829 msgid "_Guest Details"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:20
832 #: src/resources/ui/virt-viewer.ui:297
825833 msgid "_About"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
836 #: src/resources/ui/virt-viewer-guest-details.ui:7
829837 msgid "Guest Details"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
840 #: src/resources/ui/virt-viewer-guest-details.ui:56
833841 msgid "Name:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
844 #: src/resources/ui/virt-viewer-guest-details.ui:68
837845 msgid "GUID:"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
848 #: src/resources/ui/virt-viewer-vm-connection.ui:7
841849 msgid "Choose a virtual machine"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
852 #: src/resources/ui/virt-viewer-vm-connection.ui:96
845853 msgid "Available virtual machines"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
856 #: src/resources/ui/virt-viewer-preferences.ui:8
849857 msgid "Preferences"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
860 #: src/resources/ui/virt-viewer-preferences.ui:48
853861 msgid "Folder sharing"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
864 #: src/resources/ui/virt-viewer-preferences.ui:70
857865 msgid "Share folder"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
868 #: src/resources/ui/virt-viewer-preferences.ui:82
861869 msgid "Read-only"
862870 msgstr ""
863871
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
872 #: src/resources/ui/virt-viewer-preferences.ui:96
873 msgid "Share clipboard"
874 msgstr ""
875
876 #: src/resources/ui/virt-viewer-preferences.ui:132
865877 msgid "Spice"
866878 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish (Common Orthography)\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444 msgstr[3] ""
459445
460 #: ../src/virt-viewer-file-transfer-dialog.c:228
461 #, c-format
462 msgid "An error caused the following file transfers to fail:%s"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:38
446 #: src/virt-viewer-file-transfer-dialog.c:225
447 msgid "An error caused the following file transfers to fail:"
448 msgstr ""
449
450 #: src/virt-viewer-main.c:38
466451 msgid "Virt Viewer"
467452 msgstr ""
468453
469 #: ../src/virt-viewer-session-spice.c:704
454 #: src/virt-viewer-session-spice.c:731
470455 msgid "Invalid password"
471456 msgstr ""
472457
473 #. Create the widgets
474 #: ../src/virt-viewer-session-spice.c:802
458 #: src/virt-viewer-session-spice.c:829
475459 msgid "Select USB devices for redirection"
476460 msgstr ""
477461
478 #: ../src/virt-viewer-session-spice.c:804
479 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
462 #: src/virt-viewer-session-spice.c:831
463 #: src/resources/ui/virt-viewer-guest-details.ui:23
480464 msgid "_Close"
481465 msgstr ""
482466
483 #: ../src/virt-viewer-session-vnc.c:162
484 #, c-format
485 msgid "Unsupported authentication type %d"
486 msgstr ""
487
488 #: ../src/virt-viewer-vm-connection.c:64
467 #: src/virt-viewer-session-spice.c:1019
468 msgid "Serial"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1021
472 msgid "QEMU human monitor"
473 msgstr ""
474
475 #: src/virt-viewer-session-spice.c:1023
476 msgid "QEMU debug console"
477 msgstr ""
478
479 #: src/virt-viewer-session-vnc.c:158
480 #, c-format
481 msgid "Unsupported authentication type %u"
482 msgstr ""
483
484 #: src/virt-viewer-vm-connection.c:64
489485 msgid "No running virtual machine found"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-vm-connection.c:93
488 #: src/virt-viewer-vm-connection.c:93
493489 msgid "No virtual machine was chosen"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:544
492 #: src/virt-viewer-window.c:621
497493 msgid "Ctrl+Alt+_Del"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:545
496 #: src/virt-viewer-window.c:622
501497 msgid "Ctrl+Alt+_Backspace"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:547
500 #: src/virt-viewer-window.c:624
505501 msgid "Ctrl+Alt+F_1"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:548
504 #: src/virt-viewer-window.c:625
509505 msgid "Ctrl+Alt+F_2"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:549
508 #: src/virt-viewer-window.c:626
513509 msgid "Ctrl+Alt+F_3"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:550
512 #: src/virt-viewer-window.c:627
517513 msgid "Ctrl+Alt+F_4"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:551
516 #: src/virt-viewer-window.c:628
521517 msgid "Ctrl+Alt+F_5"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:552
520 #: src/virt-viewer-window.c:629
525521 msgid "Ctrl+Alt+F_6"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:553
524 #: src/virt-viewer-window.c:630
529525 msgid "Ctrl+Alt+F_7"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:554
528 #: src/virt-viewer-window.c:631
533529 msgid "Ctrl+Alt+F_8"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:555
532 #: src/virt-viewer-window.c:632
537533 msgid "Ctrl+Alt+F_9"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:556
536 #: src/virt-viewer-window.c:633
541537 msgid "Ctrl+Alt+F1_0"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:557
540 #: src/virt-viewer-window.c:634
545541 msgid "Ctrl+Alt+F11"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:558
544 #: src/virt-viewer-window.c:635
549545 msgid "Ctrl+Alt+F12"
550546 msgstr ""
551547
552 #: ../src/virt-viewer-window.c:953
548 #: src/virt-viewer-window.c:637
549 msgid "_PrintScreen"
550 msgstr ""
551
552 #: src/virt-viewer-window.c:1030
553553 #, c-format
554554 msgid "Unable to determine image format for file '%s'"
555555 msgstr ""
556556
557 #: ../src/virt-viewer-window.c:980
557 #: src/virt-viewer-window.c:1053
558 msgid "Save screenshot"
559 msgstr ""
560
561 #: src/virt-viewer-window.c:1057
558562 msgid "_Save"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:988
565 #: src/virt-viewer-window.c:1065
562566 msgid "Screenshot.png"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
569 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
566570 msgid "Unknown"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1152
573 #: src/virt-viewer-window.c:1237
570574 msgid "Unable to connnect to oVirt"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1175
577 #: src/virt-viewer-window.c:1260
574578 msgid "Disconnect"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
581 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
578582 msgid "USB device selection"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1193
585 #: src/virt-viewer-window.c:1278
582586 msgid "Send key combination"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
589 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
586590 msgid "Leave fullscreen"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1279
593 #: src/virt-viewer-window.c:1364
590594 msgid "Ctrl+Alt"
591595 msgstr ""
592596
593 #: ../src/virt-viewer-window.c:1282
597 #: src/virt-viewer-window.c:1367
594598 #, c-format
595599 msgid "(Press %s to release pointer)"
596600 msgstr ""
597601
598 #. translators:
599 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601 #.
602 #: ../src/virt-viewer-window.c:1293
602 #: src/virt-viewer-window.c:1378
603603 #, c-format
604604 msgid "%s%s%s - %s"
605605 msgstr ""
606606
607 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1297
607 #: src/virt-viewer-window.c:1382
609608 msgid " "
610609 msgstr ""
611610
612 #: ../src/virt-viewer-file.c:862
611 #: src/virt-viewer-file.c:875
613612 #, c-format
614613 msgid ""
615614 "At least %s version %s is required to setup this connection, see %s for "
616615 "details"
617616 msgstr ""
618617
619 #: ../src/virt-viewer-file.c:870
618 #: src/virt-viewer-file.c:883
620619 #, c-format
621620 msgid "At least %s version %s is required to setup this connection"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:133
623 #: src/virt-viewer.c:131
625624 msgid "Direct connection with no automatic tunnels"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:135
627 #: src/virt-viewer.c:133
629628 msgid "Attach to the local display using libvirt"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:137
631 #: src/virt-viewer.c:135
633632 msgid "Connect to hypervisor"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:139
635 #: src/virt-viewer.c:137
637636 msgid "Wait for domain to start"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:141
639 #: src/virt-viewer.c:139
641640 msgid "Reconnect to domain upon restart"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:143
643 #: src/virt-viewer.c:141
645644 msgid "Select the virtual machine only by its name"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:145
647 #: src/virt-viewer.c:143
649648 msgid "Select the virtual machine only by its id"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:147
651 #: src/virt-viewer.c:145
653652 msgid "Select the virtual machine only by its uuid"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:154
655 #: src/virt-viewer.c:152
657656 msgid "Virtual machine graphical console"
658657 msgstr ""
659658
660 #: ../src/virt-viewer.c:173
659 #: src/virt-viewer.c:171
661660 #, c-format
662661 msgid ""
663662 "\n"
665664 "\n"
666665 msgstr ""
667666
668 #: ../src/virt-viewer.c:185
667 #: src/virt-viewer.c:183
669668 #, c-format
670669 msgid ""
671670 "\n"
673672 "\n"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:300
675 #: src/virt-viewer.c:296
677676 msgid "Waiting for guest domain to re-start"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.c:554
679 #: src/virt-viewer.c:550
681680 #, c-format
682681 msgid "Cannot determine the graphic type for the guest %s"
683682 msgstr ""
684683
685 #: ../src/virt-viewer.c:603
684 #: src/virt-viewer.c:599
686685 #, c-format
687686 msgid "Cannot determine the host for the guest %s"
688687 msgstr ""
689688
690 #: ../src/virt-viewer.c:631
689 #: src/virt-viewer.c:627
691690 #, c-format
692691 msgid "Guest '%s' is not reachable"
693692 msgstr ""
694693
695 #: ../src/virt-viewer.c:860
694 #: src/virt-viewer.c:856
696695 #, c-format
697696 msgid "Virtual machine %s is not running"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:884
699 #: src/virt-viewer.c:881
701700 msgid "Waiting for libvirt to start"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:888
703 #: src/virt-viewer.c:885
705704 msgid "Finding guest domain"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:892
707 #: src/virt-viewer.c:889
709708 msgid "Waiting for guest domain to be created"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:918
711 #: src/virt-viewer.c:921
713712 msgid "Checking guest domain status"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:921
715 #: src/virt-viewer.c:924
717716 msgid "Cannot get guest state"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:927
719 #: src/virt-viewer.c:930
721720 msgid "Waiting for guest domain to start"
722721 msgstr ""
723722
724 #: ../src/virt-viewer.c:1040
723 #: src/virt-viewer.c:1044
725724 #, c-format
726725 msgid "Unable to connect to libvirt with URI: %s."
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1041
728 #: src/virt-viewer.c:1045
730729 msgid "[none]"
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1048
732 #: src/virt-viewer.c:1052
734733 msgid "Authentication failed."
735734 msgstr ""
736735
737 #: ../src/virt-viewer.c:1108
736 #: src/virt-viewer.c:1112
738737 msgid "Failed to connect: "
739738 msgstr ""
740739
741 #.
742 #. * Local variables:
743 #. * c-indent-level: 4
744 #. * c-basic-offset: 4
745 #. * indent-tabs-mode: nil
746 #. * End:
747 #.
748 #: ../src/resources/ui/virt-viewer.ui.h:1
740 #: src/resources/ui/virt-viewer.ui:28
749741 msgid "_File"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:2
744 #: src/resources/ui/virt-viewer.ui:41
753745 msgid "_Screenshot"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:3
748 #: src/resources/ui/virt-viewer.ui:52
757749 msgid "_USB device selection"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:4
752 #: src/resources/ui/virt-viewer.ui:62
761753 msgid "Smartcard insertion"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:5
756 #: src/resources/ui/virt-viewer.ui:72
765757 msgid "Smartcard removal"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:6
760 #: src/resources/ui/virt-viewer.ui:80
769761 msgid "_Change CD"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:7
764 #: src/resources/ui/virt-viewer.ui:90
773765 msgid "_Preferences"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:8
768 #: src/resources/ui/virt-viewer.ui:103
777769 msgid "_Quit"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:9
772 #: src/resources/ui/virt-viewer.ui:119
773 msgid "_Machine"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:129
777 msgid "_Pause"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:144
781 msgid "_Reset"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:153
785 msgid "_Power down"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:167
781789 msgid "_View"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:10
792 #: src/resources/ui/virt-viewer.ui:180
785793 msgid "_Full screen"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:11
796 #: src/resources/ui/virt-viewer.ui:191
789797 msgid "_Zoom"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:12
800 #: src/resources/ui/virt-viewer.ui:201
793801 msgid "Zoom _In"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:13
804 #: src/resources/ui/virt-viewer.ui:212
797805 msgid "Zoom _Out"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:14
808 #: src/resources/ui/virt-viewer.ui:229
801809 msgid "_Normal Size"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:15
812 #: src/resources/ui/virt-viewer.ui:246
805813 msgid "_Displays"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:16
816 #: src/resources/ui/virt-viewer.ui:255
809817 msgid "Release cursor"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:17
820 #: src/resources/ui/virt-viewer.ui:270
813821 msgid "_Send key"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:18
824 #: src/resources/ui/virt-viewer.ui:279
817825 msgid "_Help"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:19
828 #: src/resources/ui/virt-viewer.ui:290
821829 msgid "_Guest Details"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:20
832 #: src/resources/ui/virt-viewer.ui:297
825833 msgid "_About"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
836 #: src/resources/ui/virt-viewer-guest-details.ui:7
829837 msgid "Guest Details"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
840 #: src/resources/ui/virt-viewer-guest-details.ui:56
833841 msgid "Name:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
844 #: src/resources/ui/virt-viewer-guest-details.ui:68
837845 msgid "GUID:"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
848 #: src/resources/ui/virt-viewer-vm-connection.ui:7
841849 msgid "Choose a virtual machine"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
852 #: src/resources/ui/virt-viewer-vm-connection.ui:96
845853 msgid "Available virtual machines"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
856 #: src/resources/ui/virt-viewer-preferences.ui:8
849857 msgid "Preferences"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
860 #: src/resources/ui/virt-viewer-preferences.ui:48
853861 msgid "Folder sharing"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
864 #: src/resources/ui/virt-viewer-preferences.ui:70
857865 msgid "Share folder"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
868 #: src/resources/ui/virt-viewer-preferences.ui:82
861869 msgid "Read-only"
862870 msgstr ""
863871
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
872 #: src/resources/ui/virt-viewer-preferences.ui:96
873 msgid "Share clipboard"
874 msgstr ""
875
876 #: src/resources/ui/virt-viewer-preferences.ui:132
865877 msgid "Spice"
866878 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish (Unified Orthography)\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444 msgstr[3] ""
459445
460 #: ../src/virt-viewer-file-transfer-dialog.c:228
461 #, c-format
462 msgid "An error caused the following file transfers to fail:%s"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:38
446 #: src/virt-viewer-file-transfer-dialog.c:225
447 msgid "An error caused the following file transfers to fail:"
448 msgstr ""
449
450 #: src/virt-viewer-main.c:38
466451 msgid "Virt Viewer"
467452 msgstr ""
468453
469 #: ../src/virt-viewer-session-spice.c:704
454 #: src/virt-viewer-session-spice.c:731
470455 msgid "Invalid password"
471456 msgstr ""
472457
473 #. Create the widgets
474 #: ../src/virt-viewer-session-spice.c:802
458 #: src/virt-viewer-session-spice.c:829
475459 msgid "Select USB devices for redirection"
476460 msgstr ""
477461
478 #: ../src/virt-viewer-session-spice.c:804
479 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
462 #: src/virt-viewer-session-spice.c:831
463 #: src/resources/ui/virt-viewer-guest-details.ui:23
480464 msgid "_Close"
481465 msgstr ""
482466
483 #: ../src/virt-viewer-session-vnc.c:162
484 #, c-format
485 msgid "Unsupported authentication type %d"
486 msgstr ""
487
488 #: ../src/virt-viewer-vm-connection.c:64
467 #: src/virt-viewer-session-spice.c:1019
468 msgid "Serial"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1021
472 msgid "QEMU human monitor"
473 msgstr ""
474
475 #: src/virt-viewer-session-spice.c:1023
476 msgid "QEMU debug console"
477 msgstr ""
478
479 #: src/virt-viewer-session-vnc.c:158
480 #, c-format
481 msgid "Unsupported authentication type %u"
482 msgstr ""
483
484 #: src/virt-viewer-vm-connection.c:64
489485 msgid "No running virtual machine found"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-vm-connection.c:93
488 #: src/virt-viewer-vm-connection.c:93
493489 msgid "No virtual machine was chosen"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:544
492 #: src/virt-viewer-window.c:621
497493 msgid "Ctrl+Alt+_Del"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:545
496 #: src/virt-viewer-window.c:622
501497 msgid "Ctrl+Alt+_Backspace"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:547
500 #: src/virt-viewer-window.c:624
505501 msgid "Ctrl+Alt+F_1"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:548
504 #: src/virt-viewer-window.c:625
509505 msgid "Ctrl+Alt+F_2"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:549
508 #: src/virt-viewer-window.c:626
513509 msgid "Ctrl+Alt+F_3"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:550
512 #: src/virt-viewer-window.c:627
517513 msgid "Ctrl+Alt+F_4"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:551
516 #: src/virt-viewer-window.c:628
521517 msgid "Ctrl+Alt+F_5"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:552
520 #: src/virt-viewer-window.c:629
525521 msgid "Ctrl+Alt+F_6"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:553
524 #: src/virt-viewer-window.c:630
529525 msgid "Ctrl+Alt+F_7"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:554
528 #: src/virt-viewer-window.c:631
533529 msgid "Ctrl+Alt+F_8"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:555
532 #: src/virt-viewer-window.c:632
537533 msgid "Ctrl+Alt+F_9"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:556
536 #: src/virt-viewer-window.c:633
541537 msgid "Ctrl+Alt+F1_0"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:557
540 #: src/virt-viewer-window.c:634
545541 msgid "Ctrl+Alt+F11"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:558
544 #: src/virt-viewer-window.c:635
549545 msgid "Ctrl+Alt+F12"
550546 msgstr ""
551547
552 #: ../src/virt-viewer-window.c:953
548 #: src/virt-viewer-window.c:637
549 msgid "_PrintScreen"
550 msgstr ""
551
552 #: src/virt-viewer-window.c:1030
553553 #, c-format
554554 msgid "Unable to determine image format for file '%s'"
555555 msgstr ""
556556
557 #: ../src/virt-viewer-window.c:980
557 #: src/virt-viewer-window.c:1053
558 msgid "Save screenshot"
559 msgstr ""
560
561 #: src/virt-viewer-window.c:1057
558562 msgid "_Save"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:988
565 #: src/virt-viewer-window.c:1065
562566 msgid "Screenshot.png"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
569 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
566570 msgid "Unknown"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1152
573 #: src/virt-viewer-window.c:1237
570574 msgid "Unable to connnect to oVirt"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1175
577 #: src/virt-viewer-window.c:1260
574578 msgid "Disconnect"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
581 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
578582 msgid "USB device selection"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1193
585 #: src/virt-viewer-window.c:1278
582586 msgid "Send key combination"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
589 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
586590 msgid "Leave fullscreen"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1279
593 #: src/virt-viewer-window.c:1364
590594 msgid "Ctrl+Alt"
591595 msgstr ""
592596
593 #: ../src/virt-viewer-window.c:1282
597 #: src/virt-viewer-window.c:1367
594598 #, c-format
595599 msgid "(Press %s to release pointer)"
596600 msgstr ""
597601
598 #. translators:
599 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601 #.
602 #: ../src/virt-viewer-window.c:1293
602 #: src/virt-viewer-window.c:1378
603603 #, c-format
604604 msgid "%s%s%s - %s"
605605 msgstr ""
606606
607 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1297
607 #: src/virt-viewer-window.c:1382
609608 msgid " "
610609 msgstr ""
611610
612 #: ../src/virt-viewer-file.c:862
611 #: src/virt-viewer-file.c:875
613612 #, c-format
614613 msgid ""
615614 "At least %s version %s is required to setup this connection, see %s for "
616615 "details"
617616 msgstr ""
618617
619 #: ../src/virt-viewer-file.c:870
618 #: src/virt-viewer-file.c:883
620619 #, c-format
621620 msgid "At least %s version %s is required to setup this connection"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:133
623 #: src/virt-viewer.c:131
625624 msgid "Direct connection with no automatic tunnels"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:135
627 #: src/virt-viewer.c:133
629628 msgid "Attach to the local display using libvirt"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:137
631 #: src/virt-viewer.c:135
633632 msgid "Connect to hypervisor"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:139
635 #: src/virt-viewer.c:137
637636 msgid "Wait for domain to start"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:141
639 #: src/virt-viewer.c:139
641640 msgid "Reconnect to domain upon restart"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:143
643 #: src/virt-viewer.c:141
645644 msgid "Select the virtual machine only by its name"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:145
647 #: src/virt-viewer.c:143
649648 msgid "Select the virtual machine only by its id"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:147
651 #: src/virt-viewer.c:145
653652 msgid "Select the virtual machine only by its uuid"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:154
655 #: src/virt-viewer.c:152
657656 msgid "Virtual machine graphical console"
658657 msgstr ""
659658
660 #: ../src/virt-viewer.c:173
659 #: src/virt-viewer.c:171
661660 #, c-format
662661 msgid ""
663662 "\n"
665664 "\n"
666665 msgstr ""
667666
668 #: ../src/virt-viewer.c:185
667 #: src/virt-viewer.c:183
669668 #, c-format
670669 msgid ""
671670 "\n"
673672 "\n"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:300
675 #: src/virt-viewer.c:296
677676 msgid "Waiting for guest domain to re-start"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.c:554
679 #: src/virt-viewer.c:550
681680 #, c-format
682681 msgid "Cannot determine the graphic type for the guest %s"
683682 msgstr ""
684683
685 #: ../src/virt-viewer.c:603
684 #: src/virt-viewer.c:599
686685 #, c-format
687686 msgid "Cannot determine the host for the guest %s"
688687 msgstr ""
689688
690 #: ../src/virt-viewer.c:631
689 #: src/virt-viewer.c:627
691690 #, c-format
692691 msgid "Guest '%s' is not reachable"
693692 msgstr ""
694693
695 #: ../src/virt-viewer.c:860
694 #: src/virt-viewer.c:856
696695 #, c-format
697696 msgid "Virtual machine %s is not running"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:884
699 #: src/virt-viewer.c:881
701700 msgid "Waiting for libvirt to start"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:888
703 #: src/virt-viewer.c:885
705704 msgid "Finding guest domain"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:892
707 #: src/virt-viewer.c:889
709708 msgid "Waiting for guest domain to be created"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:918
711 #: src/virt-viewer.c:921
713712 msgid "Checking guest domain status"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:921
715 #: src/virt-viewer.c:924
717716 msgid "Cannot get guest state"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:927
719 #: src/virt-viewer.c:930
721720 msgid "Waiting for guest domain to start"
722721 msgstr ""
723722
724 #: ../src/virt-viewer.c:1040
723 #: src/virt-viewer.c:1044
725724 #, c-format
726725 msgid "Unable to connect to libvirt with URI: %s."
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1041
728 #: src/virt-viewer.c:1045
730729 msgid "[none]"
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1048
732 #: src/virt-viewer.c:1052
734733 msgid "Authentication failed."
735734 msgstr ""
736735
737 #: ../src/virt-viewer.c:1108
736 #: src/virt-viewer.c:1112
738737 msgid "Failed to connect: "
739738 msgstr ""
740739
741 #.
742 #. * Local variables:
743 #. * c-indent-level: 4
744 #. * c-basic-offset: 4
745 #. * indent-tabs-mode: nil
746 #. * End:
747 #.
748 #: ../src/resources/ui/virt-viewer.ui.h:1
740 #: src/resources/ui/virt-viewer.ui:28
749741 msgid "_File"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:2
744 #: src/resources/ui/virt-viewer.ui:41
753745 msgid "_Screenshot"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:3
748 #: src/resources/ui/virt-viewer.ui:52
757749 msgid "_USB device selection"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:4
752 #: src/resources/ui/virt-viewer.ui:62
761753 msgid "Smartcard insertion"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:5
756 #: src/resources/ui/virt-viewer.ui:72
765757 msgid "Smartcard removal"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:6
760 #: src/resources/ui/virt-viewer.ui:80
769761 msgid "_Change CD"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:7
764 #: src/resources/ui/virt-viewer.ui:90
773765 msgid "_Preferences"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:8
768 #: src/resources/ui/virt-viewer.ui:103
777769 msgid "_Quit"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:9
772 #: src/resources/ui/virt-viewer.ui:119
773 msgid "_Machine"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:129
777 msgid "_Pause"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:144
781 msgid "_Reset"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:153
785 msgid "_Power down"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:167
781789 msgid "_View"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:10
792 #: src/resources/ui/virt-viewer.ui:180
785793 msgid "_Full screen"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:11
796 #: src/resources/ui/virt-viewer.ui:191
789797 msgid "_Zoom"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:12
800 #: src/resources/ui/virt-viewer.ui:201
793801 msgid "Zoom _In"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:13
804 #: src/resources/ui/virt-viewer.ui:212
797805 msgid "Zoom _Out"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:14
808 #: src/resources/ui/virt-viewer.ui:229
801809 msgid "_Normal Size"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:15
812 #: src/resources/ui/virt-viewer.ui:246
805813 msgid "_Displays"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:16
816 #: src/resources/ui/virt-viewer.ui:255
809817 msgid "Release cursor"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:17
820 #: src/resources/ui/virt-viewer.ui:270
813821 msgid "_Send key"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:18
824 #: src/resources/ui/virt-viewer.ui:279
817825 msgid "_Help"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:19
828 #: src/resources/ui/virt-viewer.ui:290
821829 msgid "_Guest Details"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:20
832 #: src/resources/ui/virt-viewer.ui:297
825833 msgid "_About"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
836 #: src/resources/ui/virt-viewer-guest-details.ui:7
829837 msgid "Guest Details"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
840 #: src/resources/ui/virt-viewer-guest-details.ui:56
833841 msgid "Name:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
844 #: src/resources/ui/virt-viewer-guest-details.ui:68
837845 msgid "GUID:"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
848 #: src/resources/ui/virt-viewer-vm-connection.ui:7
841849 msgid "Choose a virtual machine"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
852 #: src/resources/ui/virt-viewer-vm-connection.ui:96
845853 msgid "Available virtual machines"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
856 #: src/resources/ui/virt-viewer-preferences.ui:8
849857 msgid "Preferences"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
860 #: src/resources/ui/virt-viewer-preferences.ui:48
853861 msgid "Folder sharing"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
864 #: src/resources/ui/virt-viewer-preferences.ui:70
857865 msgid "Share folder"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
868 #: src/resources/ui/virt-viewer-preferences.ui:82
861869 msgid "Read-only"
862870 msgstr ""
863871
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
872 #: src/resources/ui/virt-viewer-preferences.ui:96
873 msgid "Share clipboard"
874 msgstr ""
875
876 #: src/resources/ui/virt-viewer-preferences.ui:132
865877 msgid "Spice"
866878 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Cornish (United Kingdom)\n"
13 "Language: kw-GB\n"
13 "Language: kw_GB\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural= (n==1) ? 0 : (n==2) ? 1 : (n == 3) ? 2 : "
1818 "3\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444 msgstr[3] ""
459445
460 #: ../src/virt-viewer-file-transfer-dialog.c:228
461 #, c-format
462 msgid "An error caused the following file transfers to fail:%s"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:38
446 #: src/virt-viewer-file-transfer-dialog.c:225
447 msgid "An error caused the following file transfers to fail:"
448 msgstr ""
449
450 #: src/virt-viewer-main.c:38
466451 msgid "Virt Viewer"
467452 msgstr ""
468453
469 #: ../src/virt-viewer-session-spice.c:704
454 #: src/virt-viewer-session-spice.c:731
470455 msgid "Invalid password"
471456 msgstr ""
472457
473 #. Create the widgets
474 #: ../src/virt-viewer-session-spice.c:802
458 #: src/virt-viewer-session-spice.c:829
475459 msgid "Select USB devices for redirection"
476460 msgstr ""
477461
478 #: ../src/virt-viewer-session-spice.c:804
479 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
462 #: src/virt-viewer-session-spice.c:831
463 #: src/resources/ui/virt-viewer-guest-details.ui:23
480464 msgid "_Close"
481465 msgstr ""
482466
483 #: ../src/virt-viewer-session-vnc.c:162
484 #, c-format
485 msgid "Unsupported authentication type %d"
486 msgstr ""
487
488 #: ../src/virt-viewer-vm-connection.c:64
467 #: src/virt-viewer-session-spice.c:1019
468 msgid "Serial"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1021
472 msgid "QEMU human monitor"
473 msgstr ""
474
475 #: src/virt-viewer-session-spice.c:1023
476 msgid "QEMU debug console"
477 msgstr ""
478
479 #: src/virt-viewer-session-vnc.c:158
480 #, c-format
481 msgid "Unsupported authentication type %u"
482 msgstr ""
483
484 #: src/virt-viewer-vm-connection.c:64
489485 msgid "No running virtual machine found"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-vm-connection.c:93
488 #: src/virt-viewer-vm-connection.c:93
493489 msgid "No virtual machine was chosen"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:544
492 #: src/virt-viewer-window.c:621
497493 msgid "Ctrl+Alt+_Del"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:545
496 #: src/virt-viewer-window.c:622
501497 msgid "Ctrl+Alt+_Backspace"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:547
500 #: src/virt-viewer-window.c:624
505501 msgid "Ctrl+Alt+F_1"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:548
504 #: src/virt-viewer-window.c:625
509505 msgid "Ctrl+Alt+F_2"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:549
508 #: src/virt-viewer-window.c:626
513509 msgid "Ctrl+Alt+F_3"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:550
512 #: src/virt-viewer-window.c:627
517513 msgid "Ctrl+Alt+F_4"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:551
516 #: src/virt-viewer-window.c:628
521517 msgid "Ctrl+Alt+F_5"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:552
520 #: src/virt-viewer-window.c:629
525521 msgid "Ctrl+Alt+F_6"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:553
524 #: src/virt-viewer-window.c:630
529525 msgid "Ctrl+Alt+F_7"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:554
528 #: src/virt-viewer-window.c:631
533529 msgid "Ctrl+Alt+F_8"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:555
532 #: src/virt-viewer-window.c:632
537533 msgid "Ctrl+Alt+F_9"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:556
536 #: src/virt-viewer-window.c:633
541537 msgid "Ctrl+Alt+F1_0"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:557
540 #: src/virt-viewer-window.c:634
545541 msgid "Ctrl+Alt+F11"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:558
544 #: src/virt-viewer-window.c:635
549545 msgid "Ctrl+Alt+F12"
550546 msgstr ""
551547
552 #: ../src/virt-viewer-window.c:953
548 #: src/virt-viewer-window.c:637
549 msgid "_PrintScreen"
550 msgstr ""
551
552 #: src/virt-viewer-window.c:1030
553553 #, c-format
554554 msgid "Unable to determine image format for file '%s'"
555555 msgstr ""
556556
557 #: ../src/virt-viewer-window.c:980
557 #: src/virt-viewer-window.c:1053
558 msgid "Save screenshot"
559 msgstr ""
560
561 #: src/virt-viewer-window.c:1057
558562 msgid "_Save"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:988
565 #: src/virt-viewer-window.c:1065
562566 msgid "Screenshot.png"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
569 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
566570 msgid "Unknown"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1152
573 #: src/virt-viewer-window.c:1237
570574 msgid "Unable to connnect to oVirt"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1175
577 #: src/virt-viewer-window.c:1260
574578 msgid "Disconnect"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
581 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
578582 msgid "USB device selection"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1193
585 #: src/virt-viewer-window.c:1278
582586 msgid "Send key combination"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
589 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
586590 msgid "Leave fullscreen"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1279
593 #: src/virt-viewer-window.c:1364
590594 msgid "Ctrl+Alt"
591595 msgstr ""
592596
593 #: ../src/virt-viewer-window.c:1282
597 #: src/virt-viewer-window.c:1367
594598 #, c-format
595599 msgid "(Press %s to release pointer)"
596600 msgstr ""
597601
598 #. translators:
599 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601 #.
602 #: ../src/virt-viewer-window.c:1293
602 #: src/virt-viewer-window.c:1378
603603 #, c-format
604604 msgid "%s%s%s - %s"
605605 msgstr ""
606606
607 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1297
607 #: src/virt-viewer-window.c:1382
609608 msgid " "
610609 msgstr ""
611610
612 #: ../src/virt-viewer-file.c:862
611 #: src/virt-viewer-file.c:875
613612 #, c-format
614613 msgid ""
615614 "At least %s version %s is required to setup this connection, see %s for "
616615 "details"
617616 msgstr ""
618617
619 #: ../src/virt-viewer-file.c:870
618 #: src/virt-viewer-file.c:883
620619 #, c-format
621620 msgid "At least %s version %s is required to setup this connection"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:133
623 #: src/virt-viewer.c:131
625624 msgid "Direct connection with no automatic tunnels"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:135
627 #: src/virt-viewer.c:133
629628 msgid "Attach to the local display using libvirt"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:137
631 #: src/virt-viewer.c:135
633632 msgid "Connect to hypervisor"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:139
635 #: src/virt-viewer.c:137
637636 msgid "Wait for domain to start"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:141
639 #: src/virt-viewer.c:139
641640 msgid "Reconnect to domain upon restart"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:143
643 #: src/virt-viewer.c:141
645644 msgid "Select the virtual machine only by its name"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:145
647 #: src/virt-viewer.c:143
649648 msgid "Select the virtual machine only by its id"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:147
651 #: src/virt-viewer.c:145
653652 msgid "Select the virtual machine only by its uuid"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:154
655 #: src/virt-viewer.c:152
657656 msgid "Virtual machine graphical console"
658657 msgstr ""
659658
660 #: ../src/virt-viewer.c:173
659 #: src/virt-viewer.c:171
661660 #, c-format
662661 msgid ""
663662 "\n"
665664 "\n"
666665 msgstr ""
667666
668 #: ../src/virt-viewer.c:185
667 #: src/virt-viewer.c:183
669668 #, c-format
670669 msgid ""
671670 "\n"
673672 "\n"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:300
675 #: src/virt-viewer.c:296
677676 msgid "Waiting for guest domain to re-start"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.c:554
679 #: src/virt-viewer.c:550
681680 #, c-format
682681 msgid "Cannot determine the graphic type for the guest %s"
683682 msgstr ""
684683
685 #: ../src/virt-viewer.c:603
684 #: src/virt-viewer.c:599
686685 #, c-format
687686 msgid "Cannot determine the host for the guest %s"
688687 msgstr ""
689688
690 #: ../src/virt-viewer.c:631
689 #: src/virt-viewer.c:627
691690 #, c-format
692691 msgid "Guest '%s' is not reachable"
693692 msgstr ""
694693
695 #: ../src/virt-viewer.c:860
694 #: src/virt-viewer.c:856
696695 #, c-format
697696 msgid "Virtual machine %s is not running"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:884
699 #: src/virt-viewer.c:881
701700 msgid "Waiting for libvirt to start"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:888
703 #: src/virt-viewer.c:885
705704 msgid "Finding guest domain"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:892
707 #: src/virt-viewer.c:889
709708 msgid "Waiting for guest domain to be created"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:918
711 #: src/virt-viewer.c:921
713712 msgid "Checking guest domain status"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:921
715 #: src/virt-viewer.c:924
717716 msgid "Cannot get guest state"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:927
719 #: src/virt-viewer.c:930
721720 msgid "Waiting for guest domain to start"
722721 msgstr ""
723722
724 #: ../src/virt-viewer.c:1040
723 #: src/virt-viewer.c:1044
725724 #, c-format
726725 msgid "Unable to connect to libvirt with URI: %s."
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1041
728 #: src/virt-viewer.c:1045
730729 msgid "[none]"
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1048
732 #: src/virt-viewer.c:1052
734733 msgid "Authentication failed."
735734 msgstr ""
736735
737 #: ../src/virt-viewer.c:1108
736 #: src/virt-viewer.c:1112
738737 msgid "Failed to connect: "
739738 msgstr ""
740739
741 #.
742 #. * Local variables:
743 #. * c-indent-level: 4
744 #. * c-basic-offset: 4
745 #. * indent-tabs-mode: nil
746 #. * End:
747 #.
748 #: ../src/resources/ui/virt-viewer.ui.h:1
740 #: src/resources/ui/virt-viewer.ui:28
749741 msgid "_File"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:2
744 #: src/resources/ui/virt-viewer.ui:41
753745 msgid "_Screenshot"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:3
748 #: src/resources/ui/virt-viewer.ui:52
757749 msgid "_USB device selection"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:4
752 #: src/resources/ui/virt-viewer.ui:62
761753 msgid "Smartcard insertion"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:5
756 #: src/resources/ui/virt-viewer.ui:72
765757 msgid "Smartcard removal"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:6
760 #: src/resources/ui/virt-viewer.ui:80
769761 msgid "_Change CD"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:7
764 #: src/resources/ui/virt-viewer.ui:90
773765 msgid "_Preferences"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:8
768 #: src/resources/ui/virt-viewer.ui:103
777769 msgid "_Quit"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:9
772 #: src/resources/ui/virt-viewer.ui:119
773 msgid "_Machine"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:129
777 msgid "_Pause"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:144
781 msgid "_Reset"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:153
785 msgid "_Power down"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:167
781789 msgid "_View"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:10
792 #: src/resources/ui/virt-viewer.ui:180
785793 msgid "_Full screen"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:11
796 #: src/resources/ui/virt-viewer.ui:191
789797 msgid "_Zoom"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:12
800 #: src/resources/ui/virt-viewer.ui:201
793801 msgid "Zoom _In"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:13
804 #: src/resources/ui/virt-viewer.ui:212
797805 msgid "Zoom _Out"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:14
808 #: src/resources/ui/virt-viewer.ui:229
801809 msgid "_Normal Size"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:15
812 #: src/resources/ui/virt-viewer.ui:246
805813 msgid "_Displays"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:16
816 #: src/resources/ui/virt-viewer.ui:255
809817 msgid "Release cursor"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:17
820 #: src/resources/ui/virt-viewer.ui:270
813821 msgid "_Send key"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:18
824 #: src/resources/ui/virt-viewer.ui:279
817825 msgid "_Help"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:19
828 #: src/resources/ui/virt-viewer.ui:290
821829 msgid "_Guest Details"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:20
832 #: src/resources/ui/virt-viewer.ui:297
825833 msgid "_About"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
836 #: src/resources/ui/virt-viewer-guest-details.ui:7
829837 msgid "Guest Details"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
840 #: src/resources/ui/virt-viewer-guest-details.ui:56
833841 msgid "Name:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
844 #: src/resources/ui/virt-viewer-guest-details.ui:68
837845 msgid "GUID:"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
848 #: src/resources/ui/virt-viewer-vm-connection.ui:7
841849 msgid "Choose a virtual machine"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
852 #: src/resources/ui/virt-viewer-vm-connection.ui:96
845853 msgid "Available virtual machines"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
856 #: src/resources/ui/virt-viewer-preferences.ui:8
849857 msgid "Preferences"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
860 #: src/resources/ui/virt-viewer-preferences.ui:48
853861 msgid "Folder sharing"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
864 #: src/resources/ui/virt-viewer-preferences.ui:70
857865 msgid "Share folder"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
868 #: src/resources/ui/virt-viewer-preferences.ui:82
861869 msgid "Read-only"
862870 msgstr ""
863871
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
872 #: src/resources/ui/virt-viewer-preferences.ui:96
873 msgid "Share clipboard"
874 msgstr ""
875
876 #: src/resources/ui/virt-viewer-preferences.ui:132
865877 msgid "Spice"
866878 msgstr ""
Binary diff not shown
+265
-253
po/ky.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
12 "Language-Team: Kirghiz\n"
12 "Language-Team: Kyrgyz\n"
1313 "Language: ky\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+267
-254
po/lt.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Lithuanian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
18 "%100<10 or n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "%100<10 || n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457
458 #: ../src/virt-viewer-file-transfer-dialog.c:228
459 #, c-format
460 msgid "An error caused the following file transfers to fail:%s"
461 msgstr ""
462
463 #: ../src/virt-viewer-main.c:38
443 msgstr[2] ""
444
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
464450 msgid "Virt Viewer"
465451 msgstr ""
466452
467 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
468454 msgid "Invalid password"
469455 msgstr ""
470456
471 #. Create the widgets
472 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
473458 msgid "Select USB devices for redirection"
474459 msgstr ""
475460
476 #: ../src/virt-viewer-session-spice.c:804
477 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
478463 msgid "_Close"
479464 msgstr ""
480465
481 #: ../src/virt-viewer-session-vnc.c:162
482 #, c-format
483 msgid "Unsupported authentication type %d"
484 msgstr ""
485
486 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
487484 msgid "No running virtual machine found"
488485 msgstr ""
489486
490 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
491488 msgid "No virtual machine was chosen"
492489 msgstr ""
493490
494 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
495492 msgid "Ctrl+Alt+_Del"
496493 msgstr ""
497494
498 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
499496 msgid "Ctrl+Alt+_Backspace"
500497 msgstr ""
501498
502 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
503500 msgid "Ctrl+Alt+F_1"
504501 msgstr ""
505502
506 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
507504 msgid "Ctrl+Alt+F_2"
508505 msgstr ""
509506
510 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
511508 msgid "Ctrl+Alt+F_3"
512509 msgstr ""
513510
514 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
515512 msgid "Ctrl+Alt+F_4"
516513 msgstr ""
517514
518 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
519516 msgid "Ctrl+Alt+F_5"
520517 msgstr ""
521518
522 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
523520 msgid "Ctrl+Alt+F_6"
524521 msgstr ""
525522
526 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
527524 msgid "Ctrl+Alt+F_7"
528525 msgstr ""
529526
530 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
531528 msgid "Ctrl+Alt+F_8"
532529 msgstr ""
533530
534 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
535532 msgid "Ctrl+Alt+F_9"
536533 msgstr ""
537534
538 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
539536 msgid "Ctrl+Alt+F1_0"
540537 msgstr ""
541538
542 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
543540 msgid "Ctrl+Alt+F11"
544541 msgstr ""
545542
546 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
547544 msgid "Ctrl+Alt+F12"
548545 msgstr ""
549546
550 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
551552 #, c-format
552553 msgid "Unable to determine image format for file '%s'"
553554 msgstr ""
554555
555 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
556561 msgid "_Save"
557562 msgstr ""
558563
559 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
560565 msgid "Screenshot.png"
561566 msgstr ""
562567
563 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
564569 msgid "Unknown"
565570 msgstr ""
566571
567 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
568573 msgid "Unable to connnect to oVirt"
569574 msgstr ""
570575
571 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
572577 msgid "Disconnect"
573578 msgstr ""
574579
575 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
576581 msgid "USB device selection"
577582 msgstr ""
578583
579 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
580585 msgid "Send key combination"
581586 msgstr ""
582587
583 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
584589 msgid "Leave fullscreen"
585590 msgstr ""
586591
587 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
588593 msgid "Ctrl+Alt"
589594 msgstr ""
590595
591 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
592597 #, c-format
593598 msgid "(Press %s to release pointer)"
594599 msgstr ""
595600
596 #. translators:
597 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
598 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
599 #.
600 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
601602 #, c-format
602603 msgid "%s%s%s - %s"
603604 msgstr ""
604605
605 #. translators: <space>
606 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
607607 msgid " "
608608 msgstr ""
609609
610 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
611611 #, c-format
612612 msgid ""
613613 "At least %s version %s is required to setup this connection, see %s for "
614614 "details"
615615 msgstr ""
616616
617 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
618618 #, c-format
619619 msgid "At least %s version %s is required to setup this connection"
620620 msgstr ""
621621
622 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
623623 msgid "Direct connection with no automatic tunnels"
624624 msgstr ""
625625
626 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
627627 msgid "Attach to the local display using libvirt"
628628 msgstr ""
629629
630 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
631631 msgid "Connect to hypervisor"
632632 msgstr ""
633633
634 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
635635 msgid "Wait for domain to start"
636636 msgstr ""
637637
638 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
639639 msgid "Reconnect to domain upon restart"
640640 msgstr ""
641641
642 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
643643 msgid "Select the virtual machine only by its name"
644644 msgstr ""
645645
646 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
647647 msgid "Select the virtual machine only by its id"
648648 msgstr ""
649649
650 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
651651 msgid "Select the virtual machine only by its uuid"
652652 msgstr ""
653653
654 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
655655 msgid "Virtual machine graphical console"
656656 msgstr ""
657657
658 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
659659 #, c-format
660660 msgid ""
661661 "\n"
663663 "\n"
664664 msgstr ""
665665
666 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
667667 #, c-format
668668 msgid ""
669669 "\n"
671671 "\n"
672672 msgstr ""
673673
674 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
675675 msgid "Waiting for guest domain to re-start"
676676 msgstr ""
677677
678 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
679679 #, c-format
680680 msgid "Cannot determine the graphic type for the guest %s"
681681 msgstr ""
682682
683 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
684684 #, c-format
685685 msgid "Cannot determine the host for the guest %s"
686686 msgstr ""
687687
688 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
689689 #, c-format
690690 msgid "Guest '%s' is not reachable"
691691 msgstr ""
692692
693 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
694694 #, c-format
695695 msgid "Virtual machine %s is not running"
696696 msgstr ""
697697
698 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
699699 msgid "Waiting for libvirt to start"
700700 msgstr ""
701701
702 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
703703 msgid "Finding guest domain"
704704 msgstr ""
705705
706 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
707707 msgid "Waiting for guest domain to be created"
708708 msgstr ""
709709
710 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
711711 msgid "Checking guest domain status"
712712 msgstr ""
713713
714 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
715715 msgid "Cannot get guest state"
716716 msgstr ""
717717
718 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
719719 msgid "Waiting for guest domain to start"
720720 msgstr ""
721721
722 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
723723 #, c-format
724724 msgid "Unable to connect to libvirt with URI: %s."
725725 msgstr ""
726726
727 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
728728 msgid "[none]"
729729 msgstr ""
730730
731 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
732732 msgid "Authentication failed."
733733 msgstr ""
734734
735 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
736736 msgid "Failed to connect: "
737737 msgstr ""
738738
739 #.
740 #. * Local variables:
741 #. * c-indent-level: 4
742 #. * c-basic-offset: 4
743 #. * indent-tabs-mode: nil
744 #. * End:
745 #.
746 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
747740 msgid "_File"
748741 msgstr ""
749742
750 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
751744 msgid "_Screenshot"
752745 msgstr ""
753746
754 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
755748 msgid "_USB device selection"
756749 msgstr ""
757750
758 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
759752 msgid "Smartcard insertion"
760753 msgstr ""
761754
762 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
763756 msgid "Smartcard removal"
764757 msgstr ""
765758
766 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
767760 msgid "_Change CD"
768761 msgstr ""
769762
770 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
771764 msgid "_Preferences"
772765 msgstr ""
773766
774 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
775768 msgid "_Quit"
776769 msgstr ""
777770
778 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
779788 msgid "_View"
780789 msgstr ""
781790
782 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
783792 msgid "_Full screen"
784793 msgstr ""
785794
786 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
787796 msgid "_Zoom"
788797 msgstr ""
789798
790 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
791800 msgid "Zoom _In"
792801 msgstr ""
793802
794 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
795804 msgid "Zoom _Out"
796805 msgstr ""
797806
798 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
799808 msgid "_Normal Size"
800809 msgstr ""
801810
802 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
803812 msgid "_Displays"
804813 msgstr ""
805814
806 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
807816 msgid "Release cursor"
808817 msgstr ""
809818
810 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
811820 msgid "_Send key"
812821 msgstr ""
813822
814 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
815824 msgid "_Help"
816825 msgstr ""
817826
818 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
819828 msgid "_Guest Details"
820829 msgstr ""
821830
822 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
823832 msgid "_About"
824833 msgstr ""
825834
826 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
827836 msgid "Guest Details"
828837 msgstr ""
829838
830 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
831840 msgid "Name:"
832841 msgstr ""
833842
834 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
835844 msgid "GUID:"
836845 msgstr ""
837846
838 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
839848 msgid "Choose a virtual machine"
840849 msgstr ""
841850
842 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
843852 msgid "Available virtual machines"
844853 msgstr ""
845854
846 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
847856 msgid "Preferences"
848857 msgstr ""
849858
850 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
851860 msgid "Folder sharing"
852861 msgstr ""
853862
854 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
855864 msgid "Share folder"
856865 msgstr ""
857866
858 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
859868 msgid "Read-only"
860869 msgstr ""
861870
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
863876 msgid "Spice"
864877 msgstr ""
Binary diff not shown
+264
-252
po/lv.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Latvian\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
1818 "2)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444
459 #: ../src/virt-viewer-file-transfer-dialog.c:228
460 #, c-format
461 msgid "An error caused the following file transfers to fail:%s"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:38
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
465450 msgid "Virt Viewer"
466451 msgstr ""
467452
468 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
469454 msgid "Invalid password"
470455 msgstr ""
471456
472 #. Create the widgets
473 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
474458 msgid "Select USB devices for redirection"
475459 msgstr ""
476460
477 #: ../src/virt-viewer-session-spice.c:804
478 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
479463 msgid "_Close"
480464 msgstr ""
481465
482 #: ../src/virt-viewer-session-vnc.c:162
483 #, c-format
484 msgid "Unsupported authentication type %d"
485 msgstr ""
486
487 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
488484 msgid "No running virtual machine found"
489485 msgstr ""
490486
491 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
492488 msgid "No virtual machine was chosen"
493489 msgstr ""
494490
495 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
496492 msgid "Ctrl+Alt+_Del"
497493 msgstr ""
498494
499 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
500496 msgid "Ctrl+Alt+_Backspace"
501497 msgstr ""
502498
503 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
504500 msgid "Ctrl+Alt+F_1"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
508504 msgid "Ctrl+Alt+F_2"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
512508 msgid "Ctrl+Alt+F_3"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
516512 msgid "Ctrl+Alt+F_4"
517513 msgstr ""
518514
519 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
520516 msgid "Ctrl+Alt+F_5"
521517 msgstr ""
522518
523 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
524520 msgid "Ctrl+Alt+F_6"
525521 msgstr ""
526522
527 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
528524 msgid "Ctrl+Alt+F_7"
529525 msgstr ""
530526
531 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
532528 msgid "Ctrl+Alt+F_8"
533529 msgstr ""
534530
535 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
536532 msgid "Ctrl+Alt+F_9"
537533 msgstr ""
538534
539 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
540536 msgid "Ctrl+Alt+F1_0"
541537 msgstr ""
542538
543 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
544540 msgid "Ctrl+Alt+F11"
545541 msgstr ""
546542
547 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
548544 msgid "Ctrl+Alt+F12"
549545 msgstr ""
550546
551 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
552552 #, c-format
553553 msgid "Unable to determine image format for file '%s'"
554554 msgstr ""
555555
556 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
557561 msgid "_Save"
558562 msgstr ""
559563
560 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
561565 msgid "Screenshot.png"
562566 msgstr ""
563567
564 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
565569 msgid "Unknown"
566570 msgstr ""
567571
568 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
569573 msgid "Unable to connnect to oVirt"
570574 msgstr ""
571575
572 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
573577 msgid "Disconnect"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
577581 msgid "USB device selection"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
581585 msgid "Send key combination"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
585589 msgid "Leave fullscreen"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
589593 msgid "Ctrl+Alt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
593597 #, c-format
594598 msgid "(Press %s to release pointer)"
595599 msgstr ""
596600
597 #. translators:
598 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600 #.
601 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
602602 #, c-format
603603 msgid "%s%s%s - %s"
604604 msgstr ""
605605
606 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
608607 msgid " "
609608 msgstr ""
610609
611 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
612611 #, c-format
613612 msgid ""
614613 "At least %s version %s is required to setup this connection, see %s for "
615614 "details"
616615 msgstr ""
617616
618 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
619618 #, c-format
620619 msgid "At least %s version %s is required to setup this connection"
621620 msgstr ""
622621
623 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
624623 msgid "Direct connection with no automatic tunnels"
625624 msgstr ""
626625
627 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
628627 msgid "Attach to the local display using libvirt"
629628 msgstr ""
630629
631 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
632631 msgid "Connect to hypervisor"
633632 msgstr ""
634633
635 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
636635 msgid "Wait for domain to start"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
640639 msgid "Reconnect to domain upon restart"
641640 msgstr ""
642641
643 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
644643 msgid "Select the virtual machine only by its name"
645644 msgstr ""
646645
647 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
648647 msgid "Select the virtual machine only by its id"
649648 msgstr ""
650649
651 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
652651 msgid "Select the virtual machine only by its uuid"
653652 msgstr ""
654653
655 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
656655 msgid "Virtual machine graphical console"
657656 msgstr ""
658657
659 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
660659 #, c-format
661660 msgid ""
662661 "\n"
664663 "\n"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
668667 #, c-format
669668 msgid ""
670669 "\n"
672671 "\n"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
676675 msgid "Waiting for guest domain to re-start"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
680679 #, c-format
681680 msgid "Cannot determine the graphic type for the guest %s"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
685684 #, c-format
686685 msgid "Cannot determine the host for the guest %s"
687686 msgstr ""
688687
689 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
690689 #, c-format
691690 msgid "Guest '%s' is not reachable"
692691 msgstr ""
693692
694 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
695694 #, c-format
696695 msgid "Virtual machine %s is not running"
697696 msgstr ""
698697
699 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
700699 msgid "Waiting for libvirt to start"
701700 msgstr ""
702701
703 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
704703 msgid "Finding guest domain"
705704 msgstr ""
706705
707 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
708707 msgid "Waiting for guest domain to be created"
709708 msgstr ""
710709
711 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
712711 msgid "Checking guest domain status"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
716715 msgid "Cannot get guest state"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
720719 msgid "Waiting for guest domain to start"
721720 msgstr ""
722721
723 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
724723 #, c-format
725724 msgid "Unable to connect to libvirt with URI: %s."
726725 msgstr ""
727726
728 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
729728 msgid "[none]"
730729 msgstr ""
731730
732 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
733732 msgid "Authentication failed."
734733 msgstr ""
735734
736 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
737736 msgid "Failed to connect: "
738737 msgstr ""
739738
740 #.
741 #. * Local variables:
742 #. * c-indent-level: 4
743 #. * c-basic-offset: 4
744 #. * indent-tabs-mode: nil
745 #. * End:
746 #.
747 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
748740 msgid "_File"
749741 msgstr ""
750742
751 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
752744 msgid "_Screenshot"
753745 msgstr ""
754746
755 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
756748 msgid "_USB device selection"
757749 msgstr ""
758750
759 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
760752 msgid "Smartcard insertion"
761753 msgstr ""
762754
763 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
764756 msgid "Smartcard removal"
765757 msgstr ""
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
768760 msgid "_Change CD"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
772764 msgid "_Preferences"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
776768 msgid "_Quit"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
780788 msgid "_View"
781789 msgstr ""
782790
783 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
784792 msgid "_Full screen"
785793 msgstr ""
786794
787 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
788796 msgid "_Zoom"
789797 msgstr ""
790798
791 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
792800 msgid "Zoom _In"
793801 msgstr ""
794802
795 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
796804 msgid "Zoom _Out"
797805 msgstr ""
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
800808 msgid "_Normal Size"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
804812 msgid "_Displays"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
808816 msgid "Release cursor"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
812820 msgid "_Send key"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
816824 msgid "_Help"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
820828 msgid "_Guest Details"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
824832 msgid "_About"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
828836 msgid "Guest Details"
829837 msgstr ""
830838
831 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
832840 msgid "Name:"
833841 msgstr ""
834842
835 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
836844 msgid "GUID:"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
840848 msgid "Choose a virtual machine"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
844852 msgid "Available virtual machines"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
848856 msgid "Preferences"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
852860 msgid "Folder sharing"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
856864 msgid "Share folder"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
860868 msgid "Read-only"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
864876 msgid "Spice"
865877 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Maithili\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/mk.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Macedonian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural= n==1 || n%10==1 ? 0 : 1\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+269
-253
po/ml.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Ani Peter <apeter@redhat.com>, 2010,2012-2014
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:09-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:09+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Malayalam (http://www.transifex.com/projects/p/virt-viewer/"
1414 "language/ml/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr "റിമോട്ട് വ്യൂവര്‍"
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr "വിദൂര പണിയിടങ്ങളിലേക്കു് പ്രവേശിയ്ക്കുക"
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr "Virt-Viewer കണക്ഷന്‍ ഫയല്‍"
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr "ജാലകത്തിന്റെ തലക്കെട്ട് സജ്ജമാക്കുക"
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr "റിമോട്ട് വ്യൂവര്‍ ക്ലയന്റ്"
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr "കണക്ഷന്‍ ആരംഭിയ്ക്കുന്നതില്‍ പരാജയം"
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr "യുആര്‍ഐയില്‍ നിന്നും കണക്ഷന്‍ രീതി കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല"
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr "കണക്ഷന്‍ വിശദാംശങ്ങള്‍"
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr "ഉദാഹരണത്തിനു്, spice://foo.example.org:5900"
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
216204 "പകര്‍പ്പവകാശം (C) 2007-2012 ഡാനിയല്‍ പി. ബറെയിഞ്ച്\n"
217205 "പകര്‍പ്പവകാശം (C) 2007-2014 Red Hat, Inc."
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:4
207 #: src/resources/ui/virt-viewer-about.ui:18
220208 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221209 msgstr "GTK-VNC, SPICE-GTK, libvirt എന്നിവ ഉപയോഗിച്ചുള്ളൊരു റിമോട്ട് ഡസ്ക്ടോപ്പ് ക്ലയന്റ്"
222210
223 #: ../src/resources/ui/virt-viewer-about.ui.h:5
224 msgid "virt-manager.org"
225 msgstr "virt-manager.org"
226
227 #: ../src/resources/ui/virt-viewer-about.ui.h:6
211 #: src/resources/ui/virt-viewer-about.ui:20
212 msgid "gitlab.com/virt-viewer/virt-viewer"
213 msgstr ""
214
215 #: src/resources/ui/virt-viewer-about.ui:21
228216 msgid ""
229217 "This program is free software; you can redistribute it and/or modify\n"
230218 "it under the terms of the GNU General Public License as published by\n"
252240 "ഇല്ലായെങ്കില്‍, ‌താഴെ പറയുന്ന മേല്‍വിലാസത്തിലേക്ക് എഴുതുക: Free Software\n"
253241 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
254242
255 #: ../src/resources/ui/virt-viewer-about.ui.h:20
243 #: src/resources/ui/virt-viewer-about.ui:38
256244 msgid "The Fedora Translation Team"
257245 msgstr "ഫെഡോറാ പ്രാദേശികവത്കരണ സംഘം"
258246
259 #: ../src/virt-viewer-app.c:459
247 #: src/virt-viewer-app.c:594
260248 msgid "Do you want to close the session?"
261249 msgstr "ഈ സെഷന്‍ അടയ്ക്കണമോ?"
262250
263 #: ../src/virt-viewer-app.c:461
251 #: src/virt-viewer-app.c:596
264252 msgid "Do not ask me again"
265253 msgstr "ഇനി ചോദിയ്ക്കരുതു്"
266254
267 #: ../src/virt-viewer-app.c:655
255 #: src/virt-viewer-app.c:767
268256 #, c-format
269257 msgid "Address is too long for unix socket_path: %s"
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:665
260 #: src/virt-viewer-app.c:777
273261 #, c-format
274262 msgid "Creating unix socket failed: %s"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:671
265 #: src/virt-viewer-app.c:783
278266 #, c-format
279267 msgid "Connecting to unix socket failed: %s"
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:955
270 #: src/virt-viewer-app.c:1077
283271 #, c-format
284272 msgid "Waiting for display %d..."
285273 msgstr "%d പ്രദര്‍ശനത്തിനായി കാത്തിരിയ്ക്കുന്നു..."
286274
287 #: ../src/virt-viewer-app.c:1062
275 #: src/virt-viewer-app.c:1193
288276 #, c-format
289277 msgid "Unsupported graphic type '%s'"
290278 msgstr ""
291279
292 #: ../src/virt-viewer-app.c:1146
280 #: src/virt-viewer-app.c:1277
293281 msgid "Connect to ssh failed."
294282 msgstr "ssh-ലേക്കുള്ള കണക്ഷന്‍ പരാജയപ്പെട്ടു."
295283
296 #: ../src/virt-viewer-app.c:1161
284 #: src/virt-viewer-app.c:1292
297285 #, c-format
298286 msgid "Can't connect to channel: %s"
299287 msgstr ""
300288
301 #: ../src/virt-viewer-app.c:1163
289 #: src/virt-viewer-app.c:1294
302290 msgid "only SSH or unix socket connection supported."
303291 msgstr ""
304292
305 #: ../src/virt-viewer-app.c:1176
293 #: src/virt-viewer-app.c:1311
306294 msgid "Connect to channel unsupported."
307295 msgstr "ചാനലിലേക്കുള്ള കണക്ഷനു് പിന്തുണയില്ല."
308296
309 #: ../src/virt-viewer-app.c:1238
297 #: src/virt-viewer-app.c:1376
310298 msgid "Display can only be attached through libvirt with --attach"
311299 msgstr ""
312300
313 #: ../src/virt-viewer-app.c:1263
301 #: src/virt-viewer-app.c:1401
314302 msgid "Connecting to graphic server"
315303 msgstr "ഗ്രാഫിക് സര്‍വറിലേക്കു് കണക്ട് ചെയ്യുന്നു"
316304
317 #: ../src/virt-viewer-app.c:1362
305 #: src/virt-viewer-app.c:1500
318306 msgid "Guest domain has shutdown"
319307 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ അടച്ചുപൂട്ടിയിരിയ്ക്കുന്നു"
320308
321 #: ../src/virt-viewer-app.c:1423
309 #: src/virt-viewer-app.c:1561
322310 msgid "Connected to graphic server"
323311 msgstr "ഗ്രാഫിക് സര്‍വറിലേക്കു് കണക്ട് ചെയ്തിരിയ്ക്കുന്നു"
324312
325 #: ../src/virt-viewer-app.c:1452
313 #: src/virt-viewer-app.c:1590
326314 #, c-format
327315 msgid "Unable to connect to the graphic server %s"
328316 msgstr "ഗ്രാഫിക് സര്‍വര്‍ %s-ലേക്കു് കണക്ട് ചെയ്യുവാന്‍ സാധ്യമല്ല"
329317
330 #: ../src/virt-viewer-app.c:1478
318 #: src/virt-viewer-app.c:1616
331319 #, c-format
332320 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1492
323 #: src/virt-viewer-app.c:1630
336324 #, c-format
337325 msgid "Unable to authenticate with remote desktop server: %s"
338326 msgstr "റിമോട്ട് ഡസ്ക്ടോപ്പ് സര്‍വറിനൊപ്പം ആധികാരികത ഉറപ്പാക്കുവാന്‍ സാധ്യമല്ല: %s"
339327
340 #: ../src/virt-viewer-app.c:1500
328 #: src/virt-viewer-app.c:1638
341329 #, c-format
342330 msgid "USB redirection error: %s"
343331 msgstr "യുഎസ്ബി റീഡയറക്ഷന്‍ പിശക്: %s"
344332
345 #: ../src/virt-viewer-app.c:1834
333 #: src/virt-viewer-app.c:2026
346334 #, c-format
347335 msgid "Zoom level must be within %d-%d\n"
348336 msgstr "സൂം ലവല്‍ %d-%d ആയിരിയ്ക്കണം\n"
349337
350 #: ../src/virt-viewer-app.c:1887
338 #: src/virt-viewer-app.c:2081
351339 #, c-format
352340 msgid "%s\n"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:1897
343 #: src/virt-viewer-app.c:2091
356344 #, c-format
357345 msgid "%s version %s"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2321
348 #: src/virt-viewer-app.c:2545
361349 #, c-format
362350 msgid "Display _%d"
363351 msgstr ""
364352
365 #: ../src/virt-viewer-app.c:2577
353 #: src/virt-viewer-app.c:2829
366354 #, c-format
367355 msgid "Invalid kiosk-quit argument: %s"
368356 msgstr "തെറ്റായ kiosk-quit ആര്‍ഗ്യുമെന്റ്: %s"
369357
370 #: ../src/virt-viewer-app.c:2588
358 #: src/virt-viewer-app.c:2840
371359 msgid "Display version information"
372360 msgstr "പതിപ്പിനെപ്പറ്റിയുള്ള വിവരം കാണിയ്ക്കുക"
373361
374 #: ../src/virt-viewer-app.c:2590
362 #: src/virt-viewer-app.c:2842
375363 msgid "Zoom level of window, in percentage"
376364 msgstr "ജാലകത്തിന്റെ സൂം ലവല്‍, ശതമാനത്തില്‍"
377365
378 #: ../src/virt-viewer-app.c:2592
366 #: src/virt-viewer-app.c:2844
379367 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
380368 msgstr "സ്ക്രീന്‍ പൂര്‍ണ്ണവലിപ്പത്തില്‍ തുറക്കുക (ക്ലയന്റിനു് പാകത്തിനു് ഗസ്റ്റ് റിസല്യൂഷന്‍ സജ്ജമാക്കുന്നു)"
381369
382 #: ../src/virt-viewer-app.c:2594
370 #: src/virt-viewer-app.c:2846
383371 msgid "Customise hotkeys"
384372 msgstr "എഴുപ്പവഴികള്‍ യഥേഷ്ടമാക്കുക"
385373
386 #: ../src/virt-viewer-app.c:2596
374 #: src/virt-viewer-app.c:2848
387375 msgid "Enable kiosk mode"
388376 msgstr "കിയോസ്ക് മോഡ് പ്രവര്‍ത്തന സജ്ജമാക്കുക"
389377
390 #: ../src/virt-viewer-app.c:2598
378 #: src/virt-viewer-app.c:2850
391379 msgid "Quit on given condition in kiosk mode"
392380 msgstr "കിയോസ്ക് മോഡിലുള്ള നല്‍കിയിരിയ്ക്കുന്ന അവസ്ഥയില്‍ പുറത്തു് കടക്കുക"
393381
394 #: ../src/virt-viewer-app.c:2598
382 #: src/virt-viewer-app.c:2850
395383 msgid "<never|on-disconnect>"
396384 msgstr "<never|on-disconnect>"
397385
398 #: ../src/virt-viewer-app.c:2600
386 #: src/virt-viewer-app.c:2852
399387 msgid "Display verbose information"
400388 msgstr "വെര്‍ബോസ് വിവരം കാണിയ്ക്കുക"
401389
402 #: ../src/virt-viewer-app.c:2602
390 #: src/virt-viewer-app.c:2854
403391 msgid "Display debugging information"
404392 msgstr "ഡീബഗ്ഗിങ് വിവരം കാണിയ്ക്കുക"
405393
406 #: ../src/virt-viewer-auth.c:89
394 #: src/virt-viewer-auth.c:89
407395 #, c-format
408396 msgid ""
409397 "Authentication is required for the %s connection to:\n"
412400 "\n"
413401 msgstr ""
414402
415 #: ../src/virt-viewer-auth.c:93
403 #: src/virt-viewer-auth.c:93
416404 #, c-format
417405 msgid "Authentication is required for the %s connection:\n"
418406 msgstr ""
419407
420 #.
421 #. * Local variables:
422 #. * c-indent-level: 4
423 #. * c-basic-offset: 4
424 #. * indent-tabs-mode: nil
425 #. * End:
426 #.
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
408 #: src/resources/ui/virt-viewer-auth.ui:7
428409 msgid "Authentication required"
429410 msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ ആവശ്യമുണ്ടു്"
430411
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
412 #: src/resources/ui/virt-viewer-auth.ui:42
432413 msgid "_OK"
433414 msgstr ""
434415
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
436 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
437 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
416 #: src/resources/ui/virt-viewer-auth.ui:71
417 #: src/resources/ui/virt-viewer-guest-details.ui:82
418 #: src/resources/ui/virt-viewer-guest-details.ui:96
419 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
438420 msgid "label"
439421 msgstr "ലേബല്‍"
440422
441 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
423 #: src/resources/ui/virt-viewer-auth.ui:93
442424 msgid "Password:"
443425 msgstr "രഹസ്യവാക്ക്:"
444426
445 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
427 #: src/resources/ui/virt-viewer-auth.ui:105
446428 msgid "Username:"
447429 msgstr "ഉപയോക്തൃനാമം:"
448430
449 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
431 #: src/resources/ui/virt-viewer-auth.ui:137
450432 msgid "Show password"
451433 msgstr ""
452434
453 #: ../src/virt-viewer-display-vnc.c:134
435 #: src/virt-viewer-display-vnc.c:130
454436 msgid "VNC does not provide GUID"
455437 msgstr ""
456438
457 #: ../src/virt-viewer-file-transfer-dialog.c:128
439 #: src/virt-viewer-display-vte.c:181
440 msgid "Console support is compiled out!"
441 msgstr ""
442
443 #: src/virt-viewer-file-transfer-dialog.c:124
458444 msgid "File Transfers"
459445 msgstr ""
460446
461 #: ../src/virt-viewer-file-transfer-dialog.c:154
447 #: src/virt-viewer-file-transfer-dialog.c:150
462448 msgid "Transferring 1 file..."
463449 msgstr ""
464450
465 #: ../src/virt-viewer-file-transfer-dialog.c:156
466 #, c-format
467 msgid "Transferring %d file of %d..."
468 msgid_plural "Transferring %d files of %d..."
451 #: src/virt-viewer-file-transfer-dialog.c:152
452 #, c-format
453 msgid "Transferring %u file of %u..."
454 msgid_plural "Transferring %u files of %u..."
469455 msgstr[0] ""
470
471 #: ../src/virt-viewer-file-transfer-dialog.c:228
472 #, c-format
473 msgid "An error caused the following file transfers to fail:%s"
474 msgstr ""
475
476 #: ../src/virt-viewer-main.c:38
456 msgstr[1] ""
457
458 #: src/virt-viewer-file-transfer-dialog.c:225
459 msgid "An error caused the following file transfers to fail:"
460 msgstr ""
461
462 #: src/virt-viewer-main.c:38
477463 msgid "Virt Viewer"
478464 msgstr "വിര്‍ട്ട് വ്യൂവര്‍"
479465
480 #: ../src/virt-viewer-session-spice.c:704
466 #: src/virt-viewer-session-spice.c:731
481467 msgid "Invalid password"
482468 msgstr ""
483469
484 #. Create the widgets
485 #: ../src/virt-viewer-session-spice.c:802
470 #: src/virt-viewer-session-spice.c:829
486471 msgid "Select USB devices for redirection"
487472 msgstr "യുഎസ്ബി ഡിവൈസുകള്‍ തെരഞ്ഞെടുക്കുക"
488473
489 #: ../src/virt-viewer-session-spice.c:804
490 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
474 #: src/virt-viewer-session-spice.c:831
475 #: src/resources/ui/virt-viewer-guest-details.ui:23
491476 msgid "_Close"
492477 msgstr ""
493478
494 #: ../src/virt-viewer-session-vnc.c:162
495 #, c-format
496 msgid "Unsupported authentication type %d"
497 msgstr "പിന്തുണയില്ലാത്ത ആധികാരികത ഉറപ്പാക്കല്‍ രീതി %d"
498
499 #: ../src/virt-viewer-vm-connection.c:64
479 #: src/virt-viewer-session-spice.c:1019
480 msgid "Serial"
481 msgstr ""
482
483 #: src/virt-viewer-session-spice.c:1021
484 msgid "QEMU human monitor"
485 msgstr ""
486
487 #: src/virt-viewer-session-spice.c:1023
488 msgid "QEMU debug console"
489 msgstr ""
490
491 #: src/virt-viewer-session-vnc.c:158
492 #, c-format
493 msgid "Unsupported authentication type %u"
494 msgstr ""
495
496 #: src/virt-viewer-vm-connection.c:64
500497 msgid "No running virtual machine found"
501498 msgstr ""
502499
503 #: ../src/virt-viewer-vm-connection.c:93
500 #: src/virt-viewer-vm-connection.c:93
504501 msgid "No virtual machine was chosen"
505502 msgstr ""
506503
507 #: ../src/virt-viewer-window.c:544
504 #: src/virt-viewer-window.c:621
508505 msgid "Ctrl+Alt+_Del"
509506 msgstr "Ctrl+Alt+_Del"
510507
511 #: ../src/virt-viewer-window.c:545
508 #: src/virt-viewer-window.c:622
512509 msgid "Ctrl+Alt+_Backspace"
513510 msgstr "Ctrl+Alt+_Backspace"
514511
515 #: ../src/virt-viewer-window.c:547
512 #: src/virt-viewer-window.c:624
516513 msgid "Ctrl+Alt+F_1"
517514 msgstr "Ctrl+Alt+F_1"
518515
519 #: ../src/virt-viewer-window.c:548
516 #: src/virt-viewer-window.c:625
520517 msgid "Ctrl+Alt+F_2"
521518 msgstr "Ctrl+Alt+F_2"
522519
523 #: ../src/virt-viewer-window.c:549
520 #: src/virt-viewer-window.c:626
524521 msgid "Ctrl+Alt+F_3"
525522 msgstr "Ctrl+Alt+F_3"
526523
527 #: ../src/virt-viewer-window.c:550
524 #: src/virt-viewer-window.c:627
528525 msgid "Ctrl+Alt+F_4"
529526 msgstr "Ctrl+Alt+F_4"
530527
531 #: ../src/virt-viewer-window.c:551
528 #: src/virt-viewer-window.c:628
532529 msgid "Ctrl+Alt+F_5"
533530 msgstr "Ctrl+Alt+F_5"
534531
535 #: ../src/virt-viewer-window.c:552
532 #: src/virt-viewer-window.c:629
536533 msgid "Ctrl+Alt+F_6"
537534 msgstr "Ctrl+Alt+F_6"
538535
539 #: ../src/virt-viewer-window.c:553
536 #: src/virt-viewer-window.c:630
540537 msgid "Ctrl+Alt+F_7"
541538 msgstr "Ctrl+Alt+F_7"
542539
543 #: ../src/virt-viewer-window.c:554
540 #: src/virt-viewer-window.c:631
544541 msgid "Ctrl+Alt+F_8"
545542 msgstr "Ctrl+Alt+F_8"
546543
547 #: ../src/virt-viewer-window.c:555
544 #: src/virt-viewer-window.c:632
548545 msgid "Ctrl+Alt+F_9"
549546 msgstr "Ctrl+Alt+F_9"
550547
551 #: ../src/virt-viewer-window.c:556
548 #: src/virt-viewer-window.c:633
552549 msgid "Ctrl+Alt+F1_0"
553550 msgstr "Ctrl+Alt+F1_0"
554551
555 #: ../src/virt-viewer-window.c:557
552 #: src/virt-viewer-window.c:634
556553 msgid "Ctrl+Alt+F11"
557554 msgstr "Ctrl+Alt+F11"
558555
559 #: ../src/virt-viewer-window.c:558
556 #: src/virt-viewer-window.c:635
560557 msgid "Ctrl+Alt+F12"
561558 msgstr "Ctrl+Alt+F12"
562559
563 #: ../src/virt-viewer-window.c:953
560 #: src/virt-viewer-window.c:637
561 msgid "_PrintScreen"
562 msgstr ""
563
564 #: src/virt-viewer-window.c:1030
564565 #, c-format
565566 msgid "Unable to determine image format for file '%s'"
566567 msgstr ""
567568
568 #: ../src/virt-viewer-window.c:980
569 #: src/virt-viewer-window.c:1053
570 msgid "Save screenshot"
571 msgstr ""
572
573 #: src/virt-viewer-window.c:1057
569574 msgid "_Save"
570575 msgstr ""
571576
572 #: ../src/virt-viewer-window.c:988
577 #: src/virt-viewer-window.c:1065
573578 msgid "Screenshot.png"
574579 msgstr ""
575580
576 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
581 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
577582 msgid "Unknown"
578583 msgstr ""
579584
580 #: ../src/virt-viewer-window.c:1152
585 #: src/virt-viewer-window.c:1237
581586 msgid "Unable to connnect to oVirt"
582587 msgstr ""
583588
584 #: ../src/virt-viewer-window.c:1175
589 #: src/virt-viewer-window.c:1260
585590 msgid "Disconnect"
586591 msgstr "കണക്ഷന്‍ വിഛേദിയ്ക്കുക"
587592
588 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
593 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
589594 msgid "USB device selection"
590595 msgstr "യുഎസ്ബി ഡിവൈസ് തെരഞ്ഞെടുക്കല്‍"
591596
592 #: ../src/virt-viewer-window.c:1193
597 #: src/virt-viewer-window.c:1278
593598 msgid "Send key combination"
594599 msgstr "കീ കൂട്ടം അയയ്ക്കുക"
595600
596 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
601 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
597602 msgid "Leave fullscreen"
598603 msgstr "പൂര്‍ണ്ണസ്ക്രീനില്‍ നിന്നും മാറുക"
599604
600 #: ../src/virt-viewer-window.c:1279
605 #: src/virt-viewer-window.c:1364
601606 msgid "Ctrl+Alt"
602607 msgstr "Ctrl+Alt"
603608
604 #: ../src/virt-viewer-window.c:1282
609 #: src/virt-viewer-window.c:1367
605610 #, c-format
606611 msgid "(Press %s to release pointer)"
607612 msgstr "(പോയിന്റര്‍ വിടുന്നതിനായി %s അമര്‍ത്തുക)"
608613
609 #. translators:
610 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
611 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
612 #.
613 #: ../src/virt-viewer-window.c:1293
614 #: src/virt-viewer-window.c:1378
614615 #, c-format
615616 msgid "%s%s%s - %s"
616617 msgstr "%s%s%s - %s"
617618
618 #. translators: <space>
619 #: ../src/virt-viewer-window.c:1297
619 #: src/virt-viewer-window.c:1382
620620 msgid " "
621621 msgstr " "
622622
623 #: ../src/virt-viewer-file.c:862
623 #: src/virt-viewer-file.c:875
624624 #, c-format
625625 msgid ""
626626 "At least %s version %s is required to setup this connection, see %s for "
627627 "details"
628628 msgstr ""
629629
630 #: ../src/virt-viewer-file.c:870
630 #: src/virt-viewer-file.c:883
631631 #, c-format
632632 msgid "At least %s version %s is required to setup this connection"
633633 msgstr "ഈ കണക്ഷന്‍ സജ്ജമാക്കുന്നതിനായി കുറഞ്ഞതു് %s പതിപ്പു് %s ആവശ്യമുണ്ടു്"
634634
635 #: ../src/virt-viewer.c:133
635 #: src/virt-viewer.c:131
636636 msgid "Direct connection with no automatic tunnels"
637637 msgstr "ഓട്ടോമാറ്റിക് ടണലുകള്‍ ഇല്ലാത്ത നേരിട്ടുള്ള കണക്ഷന്‍"
638638
639 #: ../src/virt-viewer.c:135
639 #: src/virt-viewer.c:133
640640 msgid "Attach to the local display using libvirt"
641641 msgstr "libvirt ഉപയോഗിച്ചു് പ്രാദേശിക പ്രദര്‍ശനത്തിലേക്കു് ഘടിപ്പിയ്ക്കുക"
642642
643 #: ../src/virt-viewer.c:137
643 #: src/virt-viewer.c:135
644644 msgid "Connect to hypervisor"
645645 msgstr "ഹൈപ്പര്‍വൈസറിലേക്കു് കണക്ട് ചെയ്യുക"
646646
647 #: ../src/virt-viewer.c:139
647 #: src/virt-viewer.c:137
648648 msgid "Wait for domain to start"
649649 msgstr "ആരംഭിയ്ക്കുന്നതിനായി ഡൊമെയിനുവേണ്ടി കാത്തിരിയ്ക്കുക"
650650
651 #: ../src/virt-viewer.c:141
651 #: src/virt-viewer.c:139
652652 msgid "Reconnect to domain upon restart"
653653 msgstr "വീണ്ടും ആരംഭിയ്ക്കുമ്പോള്‍ ഡൊമെയിനിലേക്കു് വീണ്ടും കണക്ട് ചെയ്യുക"
654654
655 #: ../src/virt-viewer.c:143
655 #: src/virt-viewer.c:141
656656 msgid "Select the virtual machine only by its name"
657657 msgstr ""
658658
659 #: ../src/virt-viewer.c:145
659 #: src/virt-viewer.c:143
660660 msgid "Select the virtual machine only by its id"
661661 msgstr ""
662662
663 #: ../src/virt-viewer.c:147
663 #: src/virt-viewer.c:145
664664 msgid "Select the virtual machine only by its uuid"
665665 msgstr ""
666666
667 #: ../src/virt-viewer.c:154
667 #: src/virt-viewer.c:152
668668 msgid "Virtual machine graphical console"
669669 msgstr "വിര്‍ച്ച്വല്‍ മഷീന്‍ ഗ്രാഫിക്കല്‍ കണ്‍സോള്‍"
670670
671 #: ../src/virt-viewer.c:173
671 #: src/virt-viewer.c:171
672672 #, c-format
673673 msgid ""
674674 "\n"
676676 "\n"
677677 msgstr ""
678678
679 #: ../src/virt-viewer.c:185
679 #: src/virt-viewer.c:183
680680 #, c-format
681681 msgid ""
682682 "\n"
684684 "\n"
685685 msgstr ""
686686
687 #: ../src/virt-viewer.c:300
687 #: src/virt-viewer.c:296
688688 msgid "Waiting for guest domain to re-start"
689689 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ വീണ്ടും ആരംഭിയ്ക്കുന്നതിനായി കാത്തിരിയ്ക്കുന്നു"
690690
691 #: ../src/virt-viewer.c:554
691 #: src/virt-viewer.c:550
692692 #, c-format
693693 msgid "Cannot determine the graphic type for the guest %s"
694694 msgstr "%s ഗസ്റ്റിനുള്ള ഗ്രാഫിക് രീതി കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല"
695695
696 #: ../src/virt-viewer.c:603
696 #: src/virt-viewer.c:599
697697 #, c-format
698698 msgid "Cannot determine the host for the guest %s"
699699 msgstr "ഗസ്റ്റ് %s-നുള്ള ഹോസ്റ്റ് കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല"
700700
701 #: ../src/virt-viewer.c:631
701 #: src/virt-viewer.c:627
702702 #, c-format
703703 msgid "Guest '%s' is not reachable"
704704 msgstr ""
705705
706 #: ../src/virt-viewer.c:860
706 #: src/virt-viewer.c:856
707707 #, c-format
708708 msgid "Virtual machine %s is not running"
709709 msgstr ""
710710
711 #: ../src/virt-viewer.c:884
711 #: src/virt-viewer.c:881
712712 msgid "Waiting for libvirt to start"
713713 msgstr "ആരംഭിയ്ക്കുന്നതിനായി libvirt-നു് വേണ്ടി കാത്തിരിയ്ക്കുന്നു"
714714
715 #: ../src/virt-viewer.c:888
715 #: src/virt-viewer.c:885
716716 msgid "Finding guest domain"
717717 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ കണ്ടുപിടിയ്ക്കുന്നു"
718718
719 #: ../src/virt-viewer.c:892
719 #: src/virt-viewer.c:889
720720 msgid "Waiting for guest domain to be created"
721721 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ തയ്യാറാക്കുന്നതിനായി കാത്തിരിയ്ക്കുന്നു"
722722
723 #: ../src/virt-viewer.c:918
723 #: src/virt-viewer.c:921
724724 msgid "Checking guest domain status"
725725 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ അവസ്ഥ പരിശോധിയ്ക്കുന്നു"
726726
727 #: ../src/virt-viewer.c:921
727 #: src/virt-viewer.c:924
728728 msgid "Cannot get guest state"
729729 msgstr ""
730730
731 #: ../src/virt-viewer.c:927
731 #: src/virt-viewer.c:930
732732 msgid "Waiting for guest domain to start"
733733 msgstr "ഗസ്റ്റ് ഡൊമെയിന്‍ ആരംഭിയ്ക്കുന്നതിനായി കാത്തിരിയ്ക്കുന്നു"
734734
735 #: ../src/virt-viewer.c:1040
735 #: src/virt-viewer.c:1044
736736 #, c-format
737737 msgid "Unable to connect to libvirt with URI: %s."
738738 msgstr ""
739739
740 #: ../src/virt-viewer.c:1041
740 #: src/virt-viewer.c:1045
741741 msgid "[none]"
742742 msgstr "[ഒന്നുമില്ല]"
743743
744 #: ../src/virt-viewer.c:1048
744 #: src/virt-viewer.c:1052
745745 msgid "Authentication failed."
746746 msgstr ""
747747
748 #: ../src/virt-viewer.c:1108
748 #: src/virt-viewer.c:1112
749749 msgid "Failed to connect: "
750750 msgstr ""
751751
752 #.
753 #. * Local variables:
754 #. * c-indent-level: 4
755 #. * c-basic-offset: 4
756 #. * indent-tabs-mode: nil
757 #. * End:
758 #.
759 #: ../src/resources/ui/virt-viewer.ui.h:1
752 #: src/resources/ui/virt-viewer.ui:28
760753 msgid "_File"
761754 msgstr "_ഫയല്‍"
762755
763 #: ../src/resources/ui/virt-viewer.ui.h:2
756 #: src/resources/ui/virt-viewer.ui:41
764757 msgid "_Screenshot"
765758 msgstr ""
766759
767 #: ../src/resources/ui/virt-viewer.ui.h:3
760 #: src/resources/ui/virt-viewer.ui:52
768761 msgid "_USB device selection"
769762 msgstr ""
770763
771 #: ../src/resources/ui/virt-viewer.ui.h:4
764 #: src/resources/ui/virt-viewer.ui:62
772765 msgid "Smartcard insertion"
773766 msgstr "സ്മാര്‍ട്ട്കാര്‍ഡ് ഇടല്‍"
774767
775 #: ../src/resources/ui/virt-viewer.ui.h:5
768 #: src/resources/ui/virt-viewer.ui:72
776769 msgid "Smartcard removal"
777770 msgstr "സ്മാര്‍ട്ട്കാര്‍ഡ് നീക്കം ചെയ്യല്‍"
778771
779 #: ../src/resources/ui/virt-viewer.ui.h:6
772 #: src/resources/ui/virt-viewer.ui:80
780773 msgid "_Change CD"
781774 msgstr ""
782775
783 #: ../src/resources/ui/virt-viewer.ui.h:7
776 #: src/resources/ui/virt-viewer.ui:90
784777 msgid "_Preferences"
785778 msgstr ""
786779
787 #: ../src/resources/ui/virt-viewer.ui.h:8
780 #: src/resources/ui/virt-viewer.ui:103
788781 msgid "_Quit"
789782 msgstr ""
790783
791 #: ../src/resources/ui/virt-viewer.ui.h:9
784 #: src/resources/ui/virt-viewer.ui:119
785 msgid "_Machine"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:129
789 msgid "_Pause"
790 msgstr ""
791
792 #: src/resources/ui/virt-viewer.ui:144
793 msgid "_Reset"
794 msgstr ""
795
796 #: src/resources/ui/virt-viewer.ui:153
797 msgid "_Power down"
798 msgstr ""
799
800 #: src/resources/ui/virt-viewer.ui:167
792801 msgid "_View"
793802 msgstr "_കാഴ്ച"
794803
795 #: ../src/resources/ui/virt-viewer.ui.h:10
804 #: src/resources/ui/virt-viewer.ui:180
796805 msgid "_Full screen"
797806 msgstr ""
798807
799 #: ../src/resources/ui/virt-viewer.ui.h:11
808 #: src/resources/ui/virt-viewer.ui:191
800809 msgid "_Zoom"
801810 msgstr "_വലുതാക്കുക"
802811
803 #: ../src/resources/ui/virt-viewer.ui.h:12
812 #: src/resources/ui/virt-viewer.ui:201
804813 msgid "Zoom _In"
805814 msgstr ""
806815
807 #: ../src/resources/ui/virt-viewer.ui.h:13
816 #: src/resources/ui/virt-viewer.ui:212
808817 msgid "Zoom _Out"
809818 msgstr ""
810819
811 #: ../src/resources/ui/virt-viewer.ui.h:14
820 #: src/resources/ui/virt-viewer.ui:229
812821 msgid "_Normal Size"
813822 msgstr ""
814823
815 #: ../src/resources/ui/virt-viewer.ui.h:15
824 #: src/resources/ui/virt-viewer.ui:246
816825 msgid "_Displays"
817826 msgstr ""
818827
819 #: ../src/resources/ui/virt-viewer.ui.h:16
828 #: src/resources/ui/virt-viewer.ui:255
820829 msgid "Release cursor"
821830 msgstr "കര്‍സര്‍ റിലീസ് ചെയ്യുക"
822831
823 #: ../src/resources/ui/virt-viewer.ui.h:17
832 #: src/resources/ui/virt-viewer.ui:270
824833 msgid "_Send key"
825834 msgstr "കീ _അയയ്ക്കുക"
826835
827 #: ../src/resources/ui/virt-viewer.ui.h:18
836 #: src/resources/ui/virt-viewer.ui:279
828837 msgid "_Help"
829838 msgstr "_സഹായം"
830839
831 #: ../src/resources/ui/virt-viewer.ui.h:19
840 #: src/resources/ui/virt-viewer.ui:290
832841 msgid "_Guest Details"
833842 msgstr ""
834843
835 #: ../src/resources/ui/virt-viewer.ui.h:20
844 #: src/resources/ui/virt-viewer.ui:297
836845 msgid "_About"
837846 msgstr ""
838847
839 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
848 #: src/resources/ui/virt-viewer-guest-details.ui:7
840849 msgid "Guest Details"
841850 msgstr ""
842851
843 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
852 #: src/resources/ui/virt-viewer-guest-details.ui:56
844853 msgid "Name:"
845854 msgstr ""
846855
847 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
856 #: src/resources/ui/virt-viewer-guest-details.ui:68
848857 msgid "GUID:"
849858 msgstr ""
850859
851 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
860 #: src/resources/ui/virt-viewer-vm-connection.ui:7
852861 msgid "Choose a virtual machine"
853862 msgstr ""
854863
855 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
864 #: src/resources/ui/virt-viewer-vm-connection.ui:96
856865 msgid "Available virtual machines"
857866 msgstr ""
858867
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
868 #: src/resources/ui/virt-viewer-preferences.ui:8
860869 msgid "Preferences"
861870 msgstr ""
862871
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
872 #: src/resources/ui/virt-viewer-preferences.ui:48
864873 msgid "Folder sharing"
865874 msgstr ""
866875
867 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
876 #: src/resources/ui/virt-viewer-preferences.ui:70
868877 msgid "Share folder"
869878 msgstr ""
870879
871 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
880 #: src/resources/ui/virt-viewer-preferences.ui:82
872881 msgid "Read-only"
873882 msgstr ""
874883
875 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
884 #: src/resources/ui/virt-viewer-preferences.ui:96
885 msgid "Share clipboard"
886 msgstr ""
887
888 #: src/resources/ui/virt-viewer-preferences.ui:132
876889 msgid "Spice"
877890 msgstr ""
891
892 #~ msgid "virt-manager.org"
893 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/mn.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Mongolian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+269
-253
po/mr.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
77 # sandeeps <sshedmak@redhat.com>, 2014
88 msgid ""
99 msgstr ""
10 "Project-Id-Version: PACKAGE VERSION\n"
11 "Report-Msgid-Bugs-To: \n"
12 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
13 "PO-Revision-Date: 2015-02-20 08:10-0500\n"
10 "Project-Id-Version: virt-viewer 9.0\n"
11 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
12 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
13 "PO-Revision-Date: 2015-02-20 08:10+0000\n"
1414 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1515 "Language-Team: Marathi (http://www.transifex.com/projects/p/virt-viewer/"
1616 "language/mr/)\n"
1919 "Content-Type: text/plain; charset=UTF-8\n"
2020 "Content-Transfer-Encoding: 8bit\n"
2121 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22 "X-Generator: Zanata 3.9.6\n"
23
24 #: ../data/remote-viewer.appdata.xml.in.h:1
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
22 "X-Generator: Zanata 4.6.2\n"
23
24 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
25 #: src/remote-viewer-main.c:39
2626 msgid "Remote Viewer"
2727 msgstr "रिमोट व्युअर"
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:2
29 #: data/remote-viewer.appdata.xml.in:7
3030 msgid "Remotely access virtual machines"
3131 msgstr ""
3232
33 #: ../data/remote-viewer.appdata.xml.in.h:3
33 #: data/remote-viewer.appdata.xml.in:9
3434 msgid ""
3535 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3636 "time it supports guest OS using the VNC or SPICE protocols. Further "
3939 "using SSL/TLS encryption."
4040 msgstr ""
4141
42 #: ../data/remote-viewer.desktop.in.h:2
42 #: data/remote-viewer.desktop.in:4
4343 msgid "Access remote desktops"
4444 msgstr "दूरस्त डेस्कटॉपकरिता प्रवेश"
4545
46 #: ../data/virt-viewer-mime.xml.in.h:1
47 msgid "Virt-Viewer connection file"
48 msgstr "वर्ट-व्युअर जोडणी फाइल"
49
50 #: ../src/remote-viewer-iso-list-dialog.c:160
46 #: src/remote-viewer-iso-list-dialog.c:156
5147 msgid "Failed to fetch CD names"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:212
50 #: src/remote-viewer-iso-list-dialog.c:205
5551 msgid "<b>Loading...</b>"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:285
54 #: src/remote-viewer-iso-list-dialog.c:276
5955 msgid "Refresh"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:286
58 #: src/remote-viewer-iso-list-dialog.c:277
6359 msgid "Close"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:306
62 #: src/remote-viewer-iso-list-dialog.c:297
6763 msgid "Unspecified error"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:328
66 #: src/remote-viewer-iso-list-dialog.c:318
7167 msgid "Failed to change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer-iso-list-dialog.c:380
70 #: src/remote-viewer-iso-list-dialog.c:370
7571 msgid "Change CD"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:118
74 #: src/remote-viewer.c:116
7975 msgid "Set window title"
8076 msgstr "पटलाचे शीर्षक सेट करा"
8177
82 #: ../src/remote-viewer.c:125
78 #: src/remote-viewer.c:123
8379 msgid "Remote viewer client"
8480 msgstr "दूरस्त व्युअर क्लाएंट"
8581
86 #: ../src/remote-viewer.c:150
87 #, c-format
82 #: src/remote-viewer.c:148
8883 msgid ""
8984 "\n"
9085 "Error: can't handle multiple URIs\n"
9186 "\n"
9287 msgstr ""
9388
94 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
89 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9590 #, c-format
9691 msgid "Run '%s --help' to see a full list of available command line options\n"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:435
94 #: src/remote-viewer.c:429
10095 msgid "failed to parse ovirt uri"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
98 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10499 msgid "Authentication was cancelled"
105100 msgstr ""
106101
107 #: ../src/remote-viewer.c:480
102 #: src/remote-viewer.c:472
108103 #, c-format
109104 msgid "oVirt VM %s is not running"
110105 msgstr ""
111106
112 #: ../src/remote-viewer.c:494
107 #: src/remote-viewer.c:486
113108 #, c-format
114109 msgid "oVirt VM %s has no display"
115110 msgstr ""
116111
117 #: ../src/remote-viewer.c:520
112 #: src/remote-viewer.c:512
118113 #, c-format
119114 msgid "oVirt VM %s has no host information"
120115 msgstr ""
121116
122 #: ../src/remote-viewer.c:531
123 #, c-format
124 msgid "oVirt VM %s has unknown display type: %d"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:713
117 #: src/remote-viewer.c:523
118 #, c-format
119 msgid "oVirt VM %s has unknown display type: %u"
120 msgstr ""
121
122 #: src/remote-viewer.c:690
123 msgid "Couldn't open oVirt session: "
124 msgstr ""
125
126 #: src/remote-viewer.c:718
128127 msgid "Failed to initiate connection"
129128 msgstr "जोडणी सुरू करण्यास अपयशी"
130129
131 #: ../src/remote-viewer.c:742
130 #: src/remote-viewer.c:747
132131 msgid "No connection was chosen"
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:759
134 #: src/remote-viewer.c:764
136135 msgid "Failed to read stdin: "
137136 msgstr ""
138137
139 #: ../src/remote-viewer.c:776
138 #: src/remote-viewer.c:781
140139 #, c-format
141140 msgid "Invalid file %s: "
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:786
143 #: src/remote-viewer.c:791
145144 msgid "Cannot determine the connection type from URI"
146145 msgstr "URI पासून जोडणी प्रकार ओळखणे अशक्य"
147146
148 #: ../src/remote-viewer.c:792
149 msgid "Couldn't open oVirt session: "
150 msgstr ""
151
152 #: ../src/remote-viewer.c:815
147 #: src/remote-viewer.c:810
153148 #, c-format
154149 msgid "Unable to connect: %s"
155150 msgstr ""
156151
157 #.
158 #. * Local variables:
159 #. * c-indent-level: 4
160 #. * c-basic-offset: 4
161 #. * indent-tabs-mode: nil
162 #. * End:
163 #.
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
152 #: src/resources/ui/remote-viewer-connect.ui:6
165153 msgid "Connection details"
166154 msgstr "जोडणी तपशील"
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
156 #: src/resources/ui/remote-viewer-connect.ui:24
169157 msgid "Connection _Address"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
160 #: src/resources/ui/remote-viewer-connect.ui:54
173161 msgid "For example, spice://foo.example.org:5900"
174162 msgstr "उदाहरणार्थ, spice://foo.example.org:5900"
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
164 #: src/resources/ui/remote-viewer-connect.ui:78
177165 msgid "Recent connections"
178166 msgstr ""
179167
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
181 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
182 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
183 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
168 #: src/resources/ui/remote-viewer-connect.ui:120
169 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
170 #: src/resources/ui/virt-viewer-vm-connection.ui:24
171 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
184172 msgid "_Cancel"
185173 msgstr ""
186174
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
188 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:134
176 #: src/resources/ui/virt-viewer-vm-connection.ui:38
189177 msgid "C_onnect"
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
180 #: src/resources/ui/remote-viewer-iso-list.ui:28
193181 msgid "Loading..."
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
184 #: src/resources/ui/remote-viewer-iso-list.ui:78
197185 msgid "Select ISO"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
188 #: src/resources/ui/remote-viewer-iso-list.ui:116
201189 msgid "Selected"
202190 msgstr ""
203191
204 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
205 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
192 #: src/resources/ui/remote-viewer-iso-list.ui:129
193 #: src/resources/ui/virt-viewer-vm-connection.ui:72
206194 msgid "Name"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:1
197 #: src/resources/ui/virt-viewer-about.ui:7
210198 msgid "About Virt-Viewer"
211199 msgstr ""
212200
213 #: ../src/resources/ui/virt-viewer-about.ui.h:2
201 #: src/resources/ui/virt-viewer-about.ui:16
214202 msgid ""
215203 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216204 "Copyright (C) 2007-2014 Red Hat, Inc."
218206 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219207 "Copyright (C) 2007-2014 Red Hat, Inc."
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:4
209 #: src/resources/ui/virt-viewer-about.ui:18
222210 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
223211 msgstr "GTK-VNC, SPICE-GTK व libvirt सह रिमोट डेस्कटॉप क्लाएंट निर्मीत केले"
224212
225 #: ../src/resources/ui/virt-viewer-about.ui.h:5
226 msgid "virt-manager.org"
227 msgstr "virt-manager.org"
228
229 #: ../src/resources/ui/virt-viewer-about.ui.h:6
213 #: src/resources/ui/virt-viewer-about.ui:20
214 msgid "gitlab.com/virt-viewer/virt-viewer"
215 msgstr ""
216
217 #: src/resources/ui/virt-viewer-about.ui:21
230218 msgid ""
231219 "This program is free software; you can redistribute it and/or modify\n"
232220 "it under the terms of the GNU General Public License as published by\n"
256244 "along with this program; if not, write to the Free Software\n"
257245 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
258246
259 #: ../src/resources/ui/virt-viewer-about.ui.h:20
247 #: src/resources/ui/virt-viewer-about.ui:38
260248 msgid "The Fedora Translation Team"
261249 msgstr "Fedora भाषांतरन गट"
262250
263 #: ../src/virt-viewer-app.c:459
251 #: src/virt-viewer-app.c:594
264252 msgid "Do you want to close the session?"
265253 msgstr "सत्र बंद करायचे?"
266254
267 #: ../src/virt-viewer-app.c:461
255 #: src/virt-viewer-app.c:596
268256 msgid "Do not ask me again"
269257 msgstr "मला पुन्हा विचारू नका"
270258
271 #: ../src/virt-viewer-app.c:655
259 #: src/virt-viewer-app.c:767
272260 #, c-format
273261 msgid "Address is too long for unix socket_path: %s"
274262 msgstr ""
275263
276 #: ../src/virt-viewer-app.c:665
264 #: src/virt-viewer-app.c:777
277265 #, c-format
278266 msgid "Creating unix socket failed: %s"
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:671
269 #: src/virt-viewer-app.c:783
282270 #, c-format
283271 msgid "Connecting to unix socket failed: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:955
274 #: src/virt-viewer-app.c:1077
287275 #, c-format
288276 msgid "Waiting for display %d..."
289277 msgstr "डिस्पले %d करीता प्रतिक्षा करत आहे..."
290278
291 #: ../src/virt-viewer-app.c:1062
279 #: src/virt-viewer-app.c:1193
292280 #, c-format
293281 msgid "Unsupported graphic type '%s'"
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:1146
284 #: src/virt-viewer-app.c:1277
297285 msgid "Connect to ssh failed."
298286 msgstr "ssh सह जोडणी अपयशी."
299287
300 #: ../src/virt-viewer-app.c:1161
288 #: src/virt-viewer-app.c:1292
301289 #, c-format
302290 msgid "Can't connect to channel: %s"
303291 msgstr ""
304292
305 #: ../src/virt-viewer-app.c:1163
293 #: src/virt-viewer-app.c:1294
306294 msgid "only SSH or unix socket connection supported."
307295 msgstr ""
308296
309 #: ../src/virt-viewer-app.c:1176
297 #: src/virt-viewer-app.c:1311
310298 msgid "Connect to channel unsupported."
311299 msgstr "वाहिनीसह जोडणी असमर्थीत आहे."
312300
313 #: ../src/virt-viewer-app.c:1238
301 #: src/virt-viewer-app.c:1376
314302 msgid "Display can only be attached through libvirt with --attach"
315303 msgstr ""
316304
317 #: ../src/virt-viewer-app.c:1263
305 #: src/virt-viewer-app.c:1401
318306 msgid "Connecting to graphic server"
319307 msgstr "ग्राफिक सर्व्हरसह जोडणी करत आहे"
320308
321 #: ../src/virt-viewer-app.c:1362
309 #: src/virt-viewer-app.c:1500
322310 msgid "Guest domain has shutdown"
323311 msgstr "अतिथी डोमैन बंद झाले"
324312
325 #: ../src/virt-viewer-app.c:1423
313 #: src/virt-viewer-app.c:1561
326314 msgid "Connected to graphic server"
327315 msgstr "ग्राफिक सर्व्हरसह जोडणी केली"
328316
329 #: ../src/virt-viewer-app.c:1452
317 #: src/virt-viewer-app.c:1590
330318 #, c-format
331319 msgid "Unable to connect to the graphic server %s"
332320 msgstr "ग्राफिक सर्व्हर %s सह जोडणी अशक्य"
333321
334 #: ../src/virt-viewer-app.c:1478
322 #: src/virt-viewer-app.c:1616
335323 #, c-format
336324 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
337325 msgstr ""
338326
339 #: ../src/virt-viewer-app.c:1492
327 #: src/virt-viewer-app.c:1630
340328 #, c-format
341329 msgid "Unable to authenticate with remote desktop server: %s"
342330 msgstr "रिमोट डेस्कटॉप सर्व्हरसह ओळख पटवणे अशक्य: %s"
343331
344 #: ../src/virt-viewer-app.c:1500
332 #: src/virt-viewer-app.c:1638
345333 #, c-format
346334 msgid "USB redirection error: %s"
347335 msgstr "USB पुनःनिर्देशन त्रुटी: %s"
348336
349 #: ../src/virt-viewer-app.c:1834
337 #: src/virt-viewer-app.c:2026
350338 #, c-format
351339 msgid "Zoom level must be within %d-%d\n"
352340 msgstr "झूम स्तर %d-%d अंतर्गत पाहिजे\n"
353341
354 #: ../src/virt-viewer-app.c:1887
342 #: src/virt-viewer-app.c:2081
355343 #, c-format
356344 msgid "%s\n"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:1897
347 #: src/virt-viewer-app.c:2091
360348 #, c-format
361349 msgid "%s version %s"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2321
352 #: src/virt-viewer-app.c:2545
365353 #, c-format
366354 msgid "Display _%d"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2577
357 #: src/virt-viewer-app.c:2829
370358 #, c-format
371359 msgid "Invalid kiosk-quit argument: %s"
372360 msgstr "अवैध kiosk-quit बाब: %s"
373361
374 #: ../src/virt-viewer-app.c:2588
362 #: src/virt-viewer-app.c:2840
375363 msgid "Display version information"
376364 msgstr "आवृत्तीविषयी माहिती दाखवा"
377365
378 #: ../src/virt-viewer-app.c:2590
366 #: src/virt-viewer-app.c:2842
379367 msgid "Zoom level of window, in percentage"
380368 msgstr "पटलाचे झूम स्तर, टक्केवारित"
381369
382 #: ../src/virt-viewer-app.c:2592
370 #: src/virt-viewer-app.c:2844
383371 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
384372 msgstr "पडदाभर मोडमध्ये खुले करा (क्लाएंट घट्ट बसवण्याकरिता अतिथी रेजोल्युशन सुस्थीत करते)"
385373
386 #: ../src/virt-viewer-app.c:2594
374 #: src/virt-viewer-app.c:2846
387375 msgid "Customise hotkeys"
388376 msgstr "हॉटकिज पसंतीचे करा"
389377
390 #: ../src/virt-viewer-app.c:2596
378 #: src/virt-viewer-app.c:2848
391379 msgid "Enable kiosk mode"
392380 msgstr "किओस्क मोड सुरू करा"
393381
394 #: ../src/virt-viewer-app.c:2598
382 #: src/virt-viewer-app.c:2850
395383 msgid "Quit on given condition in kiosk mode"
396384 msgstr "किओस्क मोडमध्ये दिलेल्या अटीवर बाहेर पडा"
397385
398 #: ../src/virt-viewer-app.c:2598
386 #: src/virt-viewer-app.c:2850
399387 msgid "<never|on-disconnect>"
400388 msgstr "<never|on-disconnect>"
401389
402 #: ../src/virt-viewer-app.c:2600
390 #: src/virt-viewer-app.c:2852
403391 msgid "Display verbose information"
404392 msgstr "शब्दात्मक माहिती दाखवा"
405393
406 #: ../src/virt-viewer-app.c:2602
394 #: src/virt-viewer-app.c:2854
407395 msgid "Display debugging information"
408396 msgstr "डिबगिंग माहिती दाखवत आहे"
409397
410 #: ../src/virt-viewer-auth.c:89
398 #: src/virt-viewer-auth.c:89
411399 #, c-format
412400 msgid ""
413401 "Authentication is required for the %s connection to:\n"
416404 "\n"
417405 msgstr ""
418406
419 #: ../src/virt-viewer-auth.c:93
407 #: src/virt-viewer-auth.c:93
420408 #, c-format
421409 msgid "Authentication is required for the %s connection:\n"
422410 msgstr ""
423411
424 #.
425 #. * Local variables:
426 #. * c-indent-level: 4
427 #. * c-basic-offset: 4
428 #. * indent-tabs-mode: nil
429 #. * End:
430 #.
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
412 #: src/resources/ui/virt-viewer-auth.ui:7
432413 msgid "Authentication required"
433414 msgstr "ओळख पटवणे आवश्यक"
434415
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
416 #: src/resources/ui/virt-viewer-auth.ui:42
436417 msgid "_OK"
437418 msgstr ""
438419
439 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
440 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
441 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
420 #: src/resources/ui/virt-viewer-auth.ui:71
421 #: src/resources/ui/virt-viewer-guest-details.ui:82
422 #: src/resources/ui/virt-viewer-guest-details.ui:96
423 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
442424 msgid "label"
443425 msgstr "लेबल"
444426
445 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
427 #: src/resources/ui/virt-viewer-auth.ui:93
446428 msgid "Password:"
447429 msgstr "पासवर्ड:"
448430
449 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
431 #: src/resources/ui/virt-viewer-auth.ui:105
450432 msgid "Username:"
451433 msgstr "वापरकर्तानाव:"
452434
453 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
435 #: src/resources/ui/virt-viewer-auth.ui:137
454436 msgid "Show password"
455437 msgstr ""
456438
457 #: ../src/virt-viewer-display-vnc.c:134
439 #: src/virt-viewer-display-vnc.c:130
458440 msgid "VNC does not provide GUID"
459441 msgstr ""
460442
461 #: ../src/virt-viewer-file-transfer-dialog.c:128
443 #: src/virt-viewer-display-vte.c:181
444 msgid "Console support is compiled out!"
445 msgstr ""
446
447 #: src/virt-viewer-file-transfer-dialog.c:124
462448 msgid "File Transfers"
463449 msgstr ""
464450
465 #: ../src/virt-viewer-file-transfer-dialog.c:154
451 #: src/virt-viewer-file-transfer-dialog.c:150
466452 msgid "Transferring 1 file..."
467453 msgstr ""
468454
469 #: ../src/virt-viewer-file-transfer-dialog.c:156
470 #, c-format
471 msgid "Transferring %d file of %d..."
472 msgid_plural "Transferring %d files of %d..."
455 #: src/virt-viewer-file-transfer-dialog.c:152
456 #, c-format
457 msgid "Transferring %u file of %u..."
458 msgid_plural "Transferring %u files of %u..."
473459 msgstr[0] ""
474
475 #: ../src/virt-viewer-file-transfer-dialog.c:228
476 #, c-format
477 msgid "An error caused the following file transfers to fail:%s"
478 msgstr ""
479
480 #: ../src/virt-viewer-main.c:38
460 msgstr[1] ""
461
462 #: src/virt-viewer-file-transfer-dialog.c:225
463 msgid "An error caused the following file transfers to fail:"
464 msgstr ""
465
466 #: src/virt-viewer-main.c:38
481467 msgid "Virt Viewer"
482468 msgstr "वर्ट व्युअर"
483469
484 #: ../src/virt-viewer-session-spice.c:704
470 #: src/virt-viewer-session-spice.c:731
485471 msgid "Invalid password"
486472 msgstr ""
487473
488 #. Create the widgets
489 #: ../src/virt-viewer-session-spice.c:802
474 #: src/virt-viewer-session-spice.c:829
490475 msgid "Select USB devices for redirection"
491476 msgstr "रिडायरेक्शनकरीता USB साधने पसंत करा"
492477
493 #: ../src/virt-viewer-session-spice.c:804
494 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
478 #: src/virt-viewer-session-spice.c:831
479 #: src/resources/ui/virt-viewer-guest-details.ui:23
495480 msgid "_Close"
496481 msgstr ""
497482
498 #: ../src/virt-viewer-session-vnc.c:162
499 #, c-format
500 msgid "Unsupported authentication type %d"
501 msgstr "असमर्थीत ओळखपटवणे प्रकार %d"
502
503 #: ../src/virt-viewer-vm-connection.c:64
483 #: src/virt-viewer-session-spice.c:1019
484 msgid "Serial"
485 msgstr ""
486
487 #: src/virt-viewer-session-spice.c:1021
488 msgid "QEMU human monitor"
489 msgstr ""
490
491 #: src/virt-viewer-session-spice.c:1023
492 msgid "QEMU debug console"
493 msgstr ""
494
495 #: src/virt-viewer-session-vnc.c:158
496 #, c-format
497 msgid "Unsupported authentication type %u"
498 msgstr ""
499
500 #: src/virt-viewer-vm-connection.c:64
504501 msgid "No running virtual machine found"
505502 msgstr ""
506503
507 #: ../src/virt-viewer-vm-connection.c:93
504 #: src/virt-viewer-vm-connection.c:93
508505 msgid "No virtual machine was chosen"
509506 msgstr ""
510507
511 #: ../src/virt-viewer-window.c:544
508 #: src/virt-viewer-window.c:621
512509 msgid "Ctrl+Alt+_Del"
513510 msgstr "Ctrl+Alt+Del (_D)"
514511
515 #: ../src/virt-viewer-window.c:545
512 #: src/virt-viewer-window.c:622
516513 msgid "Ctrl+Alt+_Backspace"
517514 msgstr "Ctrl+Alt+Backspace (_B)"
518515
519 #: ../src/virt-viewer-window.c:547
516 #: src/virt-viewer-window.c:624
520517 msgid "Ctrl+Alt+F_1"
521518 msgstr "Ctrl+Alt+F1 (_1)"
522519
523 #: ../src/virt-viewer-window.c:548
520 #: src/virt-viewer-window.c:625
524521 msgid "Ctrl+Alt+F_2"
525522 msgstr "Ctrl+Alt+F2 (_2)"
526523
527 #: ../src/virt-viewer-window.c:549
524 #: src/virt-viewer-window.c:626
528525 msgid "Ctrl+Alt+F_3"
529526 msgstr "Ctrl+Alt+F3 (_3)"
530527
531 #: ../src/virt-viewer-window.c:550
528 #: src/virt-viewer-window.c:627
532529 msgid "Ctrl+Alt+F_4"
533530 msgstr "Ctrl+Alt+F4 (_4)"
534531
535 #: ../src/virt-viewer-window.c:551
532 #: src/virt-viewer-window.c:628
536533 msgid "Ctrl+Alt+F_5"
537534 msgstr "Ctrl+Alt+F5 (_5)"
538535
539 #: ../src/virt-viewer-window.c:552
536 #: src/virt-viewer-window.c:629
540537 msgid "Ctrl+Alt+F_6"
541538 msgstr "Ctrl+Alt+F6 (_6)"
542539
543 #: ../src/virt-viewer-window.c:553
540 #: src/virt-viewer-window.c:630
544541 msgid "Ctrl+Alt+F_7"
545542 msgstr "Ctrl+Alt+F7 (_7)"
546543
547 #: ../src/virt-viewer-window.c:554
544 #: src/virt-viewer-window.c:631
548545 msgid "Ctrl+Alt+F_8"
549546 msgstr "Ctrl+Alt+F8 (_8)"
550547
551 #: ../src/virt-viewer-window.c:555
548 #: src/virt-viewer-window.c:632
552549 msgid "Ctrl+Alt+F_9"
553550 msgstr "Ctrl+Alt+F9 (_9)"
554551
555 #: ../src/virt-viewer-window.c:556
552 #: src/virt-viewer-window.c:633
556553 msgid "Ctrl+Alt+F1_0"
557554 msgstr "Ctrl+Alt+F10 (_0)"
558555
559 #: ../src/virt-viewer-window.c:557
556 #: src/virt-viewer-window.c:634
560557 msgid "Ctrl+Alt+F11"
561558 msgstr "Ctrl+Alt+F11"
562559
563 #: ../src/virt-viewer-window.c:558
560 #: src/virt-viewer-window.c:635
564561 msgid "Ctrl+Alt+F12"
565562 msgstr "Ctrl+Alt+F12"
566563
567 #: ../src/virt-viewer-window.c:953
564 #: src/virt-viewer-window.c:637
565 msgid "_PrintScreen"
566 msgstr ""
567
568 #: src/virt-viewer-window.c:1030
568569 #, c-format
569570 msgid "Unable to determine image format for file '%s'"
570571 msgstr ""
571572
572 #: ../src/virt-viewer-window.c:980
573 #: src/virt-viewer-window.c:1053
574 msgid "Save screenshot"
575 msgstr ""
576
577 #: src/virt-viewer-window.c:1057
573578 msgid "_Save"
574579 msgstr ""
575580
576 #: ../src/virt-viewer-window.c:988
581 #: src/virt-viewer-window.c:1065
577582 msgid "Screenshot.png"
578583 msgstr ""
579584
580 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
585 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
581586 msgid "Unknown"
582587 msgstr ""
583588
584 #: ../src/virt-viewer-window.c:1152
589 #: src/virt-viewer-window.c:1237
585590 msgid "Unable to connnect to oVirt"
586591 msgstr ""
587592
588 #: ../src/virt-viewer-window.c:1175
593 #: src/virt-viewer-window.c:1260
589594 msgid "Disconnect"
590595 msgstr "जोडणी खंडीत करा"
591596
592 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
597 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
593598 msgid "USB device selection"
594599 msgstr "USB साधनची निवड"
595600
596 #: ../src/virt-viewer-window.c:1193
601 #: src/virt-viewer-window.c:1278
597602 msgid "Send key combination"
598603 msgstr "कि जोडणी पाठवा"
599604
600 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
605 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
601606 msgid "Leave fullscreen"
602607 msgstr "पडदाभर सोडा"
603608
604 #: ../src/virt-viewer-window.c:1279
609 #: src/virt-viewer-window.c:1364
605610 msgid "Ctrl+Alt"
606611 msgstr "Ctrl+Alt"
607612
608 #: ../src/virt-viewer-window.c:1282
613 #: src/virt-viewer-window.c:1367
609614 #, c-format
610615 msgid "(Press %s to release pointer)"
611616 msgstr "(पॉइंटर सोडण्याकरीता %s दाबा)"
612617
613 #. translators:
614 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
615 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
616 #.
617 #: ../src/virt-viewer-window.c:1293
618 #: src/virt-viewer-window.c:1378
618619 #, c-format
619620 msgid "%s%s%s - %s"
620621 msgstr "%s%s%s - %s"
621622
622 #. translators: <space>
623 #: ../src/virt-viewer-window.c:1297
623 #: src/virt-viewer-window.c:1382
624624 msgid " "
625625 msgstr " "
626626
627 #: ../src/virt-viewer-file.c:862
627 #: src/virt-viewer-file.c:875
628628 #, c-format
629629 msgid ""
630630 "At least %s version %s is required to setup this connection, see %s for "
631631 "details"
632632 msgstr ""
633633
634 #: ../src/virt-viewer-file.c:870
634 #: src/virt-viewer-file.c:883
635635 #, c-format
636636 msgid "At least %s version %s is required to setup this connection"
637637 msgstr "ह्या जोडणीच्या सेटअपकरिता किमान %s आवृत्ती %s आवश्यक आहे"
638638
639 #: ../src/virt-viewer.c:133
639 #: src/virt-viewer.c:131
640640 msgid "Direct connection with no automatic tunnels"
641641 msgstr "स्वयं टनल्स् विना प्रत्यक्ष जोडणी"
642642
643 #: ../src/virt-viewer.c:135
643 #: src/virt-viewer.c:133
644644 msgid "Attach to the local display using libvirt"
645645 msgstr "libvirt चा वापर करून स्थानीय डिस्पलेसह जोडणी करा"
646646
647 #: ../src/virt-viewer.c:137
647 #: src/virt-viewer.c:135
648648 msgid "Connect to hypervisor"
649649 msgstr "हायपरवाइजरसह जोडणी करा"
650650
651 #: ../src/virt-viewer.c:139
651 #: src/virt-viewer.c:137
652652 msgid "Wait for domain to start"
653653 msgstr "डोमैन सुरू होण्याकरीता वाट पहा"
654654
655 #: ../src/virt-viewer.c:141
655 #: src/virt-viewer.c:139
656656 msgid "Reconnect to domain upon restart"
657657 msgstr "पुनःसुरू केल्यानंतर डोमैनसह पुनःजोडणी करा"
658658
659 #: ../src/virt-viewer.c:143
659 #: src/virt-viewer.c:141
660660 msgid "Select the virtual machine only by its name"
661661 msgstr ""
662662
663 #: ../src/virt-viewer.c:145
663 #: src/virt-viewer.c:143
664664 msgid "Select the virtual machine only by its id"
665665 msgstr ""
666666
667 #: ../src/virt-viewer.c:147
667 #: src/virt-viewer.c:145
668668 msgid "Select the virtual machine only by its uuid"
669669 msgstr ""
670670
671 #: ../src/virt-viewer.c:154
671 #: src/virt-viewer.c:152
672672 msgid "Virtual machine graphical console"
673673 msgstr "वर्च्युअल मशीन ग्राफिकल कंसोल"
674674
675 #: ../src/virt-viewer.c:173
675 #: src/virt-viewer.c:171
676676 #, c-format
677677 msgid ""
678678 "\n"
680680 "\n"
681681 msgstr ""
682682
683 #: ../src/virt-viewer.c:185
683 #: src/virt-viewer.c:183
684684 #, c-format
685685 msgid ""
686686 "\n"
688688 "\n"
689689 msgstr ""
690690
691 #: ../src/virt-viewer.c:300
691 #: src/virt-viewer.c:296
692692 msgid "Waiting for guest domain to re-start"
693693 msgstr "अतिथी डोमैनला पुनःसुरू करण्यासाठी वाट पहात आहे"
694694
695 #: ../src/virt-viewer.c:554
695 #: src/virt-viewer.c:550
696696 #, c-format
697697 msgid "Cannot determine the graphic type for the guest %s"
698698 msgstr "अतिथी %s करीता ग्राफिक प्रकार ओळखणे अशक्य"
699699
700 #: ../src/virt-viewer.c:603
700 #: src/virt-viewer.c:599
701701 #, c-format
702702 msgid "Cannot determine the host for the guest %s"
703703 msgstr "अतिथी %s करीता यजमान ओळखणे अशक्य"
704704
705 #: ../src/virt-viewer.c:631
705 #: src/virt-viewer.c:627
706706 #, c-format
707707 msgid "Guest '%s' is not reachable"
708708 msgstr ""
709709
710 #: ../src/virt-viewer.c:860
710 #: src/virt-viewer.c:856
711711 #, c-format
712712 msgid "Virtual machine %s is not running"
713713 msgstr ""
714714
715 #: ../src/virt-viewer.c:884
715 #: src/virt-viewer.c:881
716716 msgid "Waiting for libvirt to start"
717717 msgstr "libvirt सुरू होण्याची वाट पहात आहे"
718718
719 #: ../src/virt-viewer.c:888
719 #: src/virt-viewer.c:885
720720 msgid "Finding guest domain"
721721 msgstr "अतिथी डोमैन शोधत आहे"
722722
723 #: ../src/virt-viewer.c:892
723 #: src/virt-viewer.c:889
724724 msgid "Waiting for guest domain to be created"
725725 msgstr "अतिथी डोमैन निर्माण करण्यास वाट पहात आहे"
726726
727 #: ../src/virt-viewer.c:918
727 #: src/virt-viewer.c:921
728728 msgid "Checking guest domain status"
729729 msgstr "अतिथी डोमैन स्थिती तपासत आहे"
730730
731 #: ../src/virt-viewer.c:921
731 #: src/virt-viewer.c:924
732732 msgid "Cannot get guest state"
733733 msgstr ""
734734
735 #: ../src/virt-viewer.c:927
735 #: src/virt-viewer.c:930
736736 msgid "Waiting for guest domain to start"
737737 msgstr "अतिथी डोमैनला पुनःसुरू करण्यास वाट पहात आहे"
738738
739 #: ../src/virt-viewer.c:1040
739 #: src/virt-viewer.c:1044
740740 #, c-format
741741 msgid "Unable to connect to libvirt with URI: %s."
742742 msgstr ""
743743
744 #: ../src/virt-viewer.c:1041
744 #: src/virt-viewer.c:1045
745745 msgid "[none]"
746746 msgstr "[काहिच नाही]"
747747
748 #: ../src/virt-viewer.c:1048
748 #: src/virt-viewer.c:1052
749749 msgid "Authentication failed."
750750 msgstr ""
751751
752 #: ../src/virt-viewer.c:1108
752 #: src/virt-viewer.c:1112
753753 msgid "Failed to connect: "
754754 msgstr ""
755755
756 #.
757 #. * Local variables:
758 #. * c-indent-level: 4
759 #. * c-basic-offset: 4
760 #. * indent-tabs-mode: nil
761 #. * End:
762 #.
763 #: ../src/resources/ui/virt-viewer.ui.h:1
756 #: src/resources/ui/virt-viewer.ui:28
764757 msgid "_File"
765758 msgstr "फाइल (_F)"
766759
767 #: ../src/resources/ui/virt-viewer.ui.h:2
760 #: src/resources/ui/virt-viewer.ui:41
768761 msgid "_Screenshot"
769762 msgstr ""
770763
771 #: ../src/resources/ui/virt-viewer.ui.h:3
764 #: src/resources/ui/virt-viewer.ui:52
772765 msgid "_USB device selection"
773766 msgstr ""
774767
775 #: ../src/resources/ui/virt-viewer.ui.h:4
768 #: src/resources/ui/virt-viewer.ui:62
776769 msgid "Smartcard insertion"
777770 msgstr "स्मार्टकार्ड अंतर्भुत करणे"
778771
779 #: ../src/resources/ui/virt-viewer.ui.h:5
772 #: src/resources/ui/virt-viewer.ui:72
780773 msgid "Smartcard removal"
781774 msgstr "स्मार्टकार्ड काढून टाकणे"
782775
783 #: ../src/resources/ui/virt-viewer.ui.h:6
776 #: src/resources/ui/virt-viewer.ui:80
784777 msgid "_Change CD"
785778 msgstr ""
786779
787 #: ../src/resources/ui/virt-viewer.ui.h:7
780 #: src/resources/ui/virt-viewer.ui:90
788781 msgid "_Preferences"
789782 msgstr ""
790783
791 #: ../src/resources/ui/virt-viewer.ui.h:8
784 #: src/resources/ui/virt-viewer.ui:103
792785 msgid "_Quit"
793786 msgstr ""
794787
795 #: ../src/resources/ui/virt-viewer.ui.h:9
788 #: src/resources/ui/virt-viewer.ui:119
789 msgid "_Machine"
790 msgstr ""
791
792 #: src/resources/ui/virt-viewer.ui:129
793 msgid "_Pause"
794 msgstr ""
795
796 #: src/resources/ui/virt-viewer.ui:144
797 msgid "_Reset"
798 msgstr ""
799
800 #: src/resources/ui/virt-viewer.ui:153
801 msgid "_Power down"
802 msgstr ""
803
804 #: src/resources/ui/virt-viewer.ui:167
796805 msgid "_View"
797806 msgstr "अवलोकन (_V)"
798807
799 #: ../src/resources/ui/virt-viewer.ui.h:10
808 #: src/resources/ui/virt-viewer.ui:180
800809 msgid "_Full screen"
801810 msgstr ""
802811
803 #: ../src/resources/ui/virt-viewer.ui.h:11
812 #: src/resources/ui/virt-viewer.ui:191
804813 msgid "_Zoom"
805814 msgstr "झूम करा (_Z)"
806815
807 #: ../src/resources/ui/virt-viewer.ui.h:12
816 #: src/resources/ui/virt-viewer.ui:201
808817 msgid "Zoom _In"
809818 msgstr ""
810819
811 #: ../src/resources/ui/virt-viewer.ui.h:13
820 #: src/resources/ui/virt-viewer.ui:212
812821 msgid "Zoom _Out"
813822 msgstr ""
814823
815 #: ../src/resources/ui/virt-viewer.ui.h:14
824 #: src/resources/ui/virt-viewer.ui:229
816825 msgid "_Normal Size"
817826 msgstr ""
818827
819 #: ../src/resources/ui/virt-viewer.ui.h:15
828 #: src/resources/ui/virt-viewer.ui:246
820829 msgid "_Displays"
821830 msgstr ""
822831
823 #: ../src/resources/ui/virt-viewer.ui.h:16
832 #: src/resources/ui/virt-viewer.ui:255
824833 msgid "Release cursor"
825834 msgstr "रिलिज् कर्सर"
826835
827 #: ../src/resources/ui/virt-viewer.ui.h:17
836 #: src/resources/ui/virt-viewer.ui:270
828837 msgid "_Send key"
829838 msgstr "सेंड कि (_S)"
830839
831 #: ../src/resources/ui/virt-viewer.ui.h:18
840 #: src/resources/ui/virt-viewer.ui:279
832841 msgid "_Help"
833842 msgstr "मदत (_H)"
834843
835 #: ../src/resources/ui/virt-viewer.ui.h:19
844 #: src/resources/ui/virt-viewer.ui:290
836845 msgid "_Guest Details"
837846 msgstr ""
838847
839 #: ../src/resources/ui/virt-viewer.ui.h:20
848 #: src/resources/ui/virt-viewer.ui:297
840849 msgid "_About"
841850 msgstr ""
842851
843 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
852 #: src/resources/ui/virt-viewer-guest-details.ui:7
844853 msgid "Guest Details"
845854 msgstr ""
846855
847 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
856 #: src/resources/ui/virt-viewer-guest-details.ui:56
848857 msgid "Name:"
849858 msgstr ""
850859
851 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
860 #: src/resources/ui/virt-viewer-guest-details.ui:68
852861 msgid "GUID:"
853862 msgstr ""
854863
855 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
864 #: src/resources/ui/virt-viewer-vm-connection.ui:7
856865 msgid "Choose a virtual machine"
857866 msgstr ""
858867
859 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
868 #: src/resources/ui/virt-viewer-vm-connection.ui:96
860869 msgid "Available virtual machines"
861870 msgstr ""
862871
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
872 #: src/resources/ui/virt-viewer-preferences.ui:8
864873 msgid "Preferences"
865874 msgstr ""
866875
867 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
876 #: src/resources/ui/virt-viewer-preferences.ui:48
868877 msgid "Folder sharing"
869878 msgstr ""
870879
871 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
880 #: src/resources/ui/virt-viewer-preferences.ui:70
872881 msgid "Share folder"
873882 msgstr ""
874883
875 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
884 #: src/resources/ui/virt-viewer-preferences.ui:82
876885 msgid "Read-only"
877886 msgstr ""
878887
879 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
888 #: src/resources/ui/virt-viewer-preferences.ui:96
889 msgid "Share clipboard"
890 msgstr ""
891
892 #: src/resources/ui/virt-viewer-preferences.ui:132
880893 msgid "Spice"
881894 msgstr ""
895
896 #~ msgid "virt-manager.org"
897 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/ms.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Malay\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+266
-253
po/nb.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Kjartan Maraas <kmaraas@gnome.org>, 2012
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:10-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:10+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/virt-"
1414 "viewer/language/nb/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr ""
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr ""
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr ""
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr ""
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr ""
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr "Klarte ikke å sette opp tilkobling"
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr "Kan ikke bestemme tilkoblingstype fra URI"
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr ""
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
215203 msgstr ""
216204
217 #: ../src/resources/ui/virt-viewer-about.ui.h:4
205 #: src/resources/ui/virt-viewer-about.ui:18
218206 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219207 msgstr ""
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222 msgid "virt-manager.org"
223 msgstr ""
224
225 #: ../src/resources/ui/virt-viewer-about.ui.h:6
209 #: src/resources/ui/virt-viewer-about.ui:20
210 msgid "gitlab.com/virt-viewer/virt-viewer"
211 msgstr ""
212
213 #: src/resources/ui/virt-viewer-about.ui:21
226214 msgid ""
227215 "This program is free software; you can redistribute it and/or modify\n"
228216 "it under the terms of the GNU General Public License as published by\n"
239227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240228 msgstr ""
241229
242 #: ../src/resources/ui/virt-viewer-about.ui.h:20
230 #: src/resources/ui/virt-viewer-about.ui:38
243231 msgid "The Fedora Translation Team"
244232 msgstr ""
245233
246 #: ../src/virt-viewer-app.c:459
234 #: src/virt-viewer-app.c:594
247235 msgid "Do you want to close the session?"
248236 msgstr ""
249237
250 #: ../src/virt-viewer-app.c:461
238 #: src/virt-viewer-app.c:596
251239 msgid "Do not ask me again"
252240 msgstr ""
253241
254 #: ../src/virt-viewer-app.c:655
242 #: src/virt-viewer-app.c:767
255243 #, c-format
256244 msgid "Address is too long for unix socket_path: %s"
257245 msgstr ""
258246
259 #: ../src/virt-viewer-app.c:665
247 #: src/virt-viewer-app.c:777
260248 #, c-format
261249 msgid "Creating unix socket failed: %s"
262250 msgstr ""
263251
264 #: ../src/virt-viewer-app.c:671
252 #: src/virt-viewer-app.c:783
265253 #, c-format
266254 msgid "Connecting to unix socket failed: %s"
267255 msgstr ""
268256
269 #: ../src/virt-viewer-app.c:955
257 #: src/virt-viewer-app.c:1077
270258 #, c-format
271259 msgid "Waiting for display %d..."
272260 msgstr "Venter på skjerm %d…"
273261
274 #: ../src/virt-viewer-app.c:1062
262 #: src/virt-viewer-app.c:1193
275263 #, c-format
276264 msgid "Unsupported graphic type '%s'"
277265 msgstr ""
278266
279 #: ../src/virt-viewer-app.c:1146
267 #: src/virt-viewer-app.c:1277
280268 msgid "Connect to ssh failed."
281269 msgstr "Tilkobling til SSH feilet."
282270
283 #: ../src/virt-viewer-app.c:1161
271 #: src/virt-viewer-app.c:1292
284272 #, c-format
285273 msgid "Can't connect to channel: %s"
286274 msgstr ""
287275
288 #: ../src/virt-viewer-app.c:1163
276 #: src/virt-viewer-app.c:1294
289277 msgid "only SSH or unix socket connection supported."
290278 msgstr ""
291279
292 #: ../src/virt-viewer-app.c:1176
280 #: src/virt-viewer-app.c:1311
293281 msgid "Connect to channel unsupported."
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:1238
284 #: src/virt-viewer-app.c:1376
297285 msgid "Display can only be attached through libvirt with --attach"
298286 msgstr ""
299287
300 #: ../src/virt-viewer-app.c:1263
288 #: src/virt-viewer-app.c:1401
301289 msgid "Connecting to graphic server"
302290 msgstr ""
303291
304 #: ../src/virt-viewer-app.c:1362
292 #: src/virt-viewer-app.c:1500
305293 msgid "Guest domain has shutdown"
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1423
296 #: src/virt-viewer-app.c:1561
309297 msgid "Connected to graphic server"
310298 msgstr ""
311299
312 #: ../src/virt-viewer-app.c:1452
300 #: src/virt-viewer-app.c:1590
313301 #, c-format
314302 msgid "Unable to connect to the graphic server %s"
315303 msgstr ""
316304
317 #: ../src/virt-viewer-app.c:1478
305 #: src/virt-viewer-app.c:1616
318306 #, c-format
319307 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
320308 msgstr ""
321309
322 #: ../src/virt-viewer-app.c:1492
310 #: src/virt-viewer-app.c:1630
323311 #, c-format
324312 msgid "Unable to authenticate with remote desktop server: %s"
325313 msgstr ""
326314
327 #: ../src/virt-viewer-app.c:1500
315 #: src/virt-viewer-app.c:1638
328316 #, c-format
329317 msgid "USB redirection error: %s"
330318 msgstr ""
331319
332 #: ../src/virt-viewer-app.c:1834
320 #: src/virt-viewer-app.c:2026
333321 #, c-format
334322 msgid "Zoom level must be within %d-%d\n"
335323 msgstr ""
336324
337 #: ../src/virt-viewer-app.c:1887
325 #: src/virt-viewer-app.c:2081
338326 #, c-format
339327 msgid "%s\n"
340328 msgstr ""
341329
342 #: ../src/virt-viewer-app.c:1897
330 #: src/virt-viewer-app.c:2091
343331 #, c-format
344332 msgid "%s version %s"
345333 msgstr ""
346334
347 #: ../src/virt-viewer-app.c:2321
335 #: src/virt-viewer-app.c:2545
348336 #, c-format
349337 msgid "Display _%d"
350338 msgstr ""
351339
352 #: ../src/virt-viewer-app.c:2577
340 #: src/virt-viewer-app.c:2829
353341 #, c-format
354342 msgid "Invalid kiosk-quit argument: %s"
355343 msgstr ""
356344
357 #: ../src/virt-viewer-app.c:2588
345 #: src/virt-viewer-app.c:2840
358346 msgid "Display version information"
359347 msgstr "Vis versjonsinformasjon"
360348
361 #: ../src/virt-viewer-app.c:2590
349 #: src/virt-viewer-app.c:2842
362350 msgid "Zoom level of window, in percentage"
363351 msgstr "Zoom-nivå i vinduer i prosent"
364352
365 #: ../src/virt-viewer-app.c:2592
353 #: src/virt-viewer-app.c:2844
366354 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2594
357 #: src/virt-viewer-app.c:2846
370358 msgid "Customise hotkeys"
371359 msgstr ""
372360
373 #: ../src/virt-viewer-app.c:2596
361 #: src/virt-viewer-app.c:2848
374362 msgid "Enable kiosk mode"
375363 msgstr ""
376364
377 #: ../src/virt-viewer-app.c:2598
365 #: src/virt-viewer-app.c:2850
378366 msgid "Quit on given condition in kiosk mode"
379367 msgstr ""
380368
381 #: ../src/virt-viewer-app.c:2598
369 #: src/virt-viewer-app.c:2850
382370 msgid "<never|on-disconnect>"
383371 msgstr ""
384372
385 #: ../src/virt-viewer-app.c:2600
373 #: src/virt-viewer-app.c:2852
386374 msgid "Display verbose information"
387375 msgstr "Vis mer informasjon"
388376
389 #: ../src/virt-viewer-app.c:2602
377 #: src/virt-viewer-app.c:2854
390378 msgid "Display debugging information"
391379 msgstr "Vis feilsøkingsinformasjon"
392380
393 #: ../src/virt-viewer-auth.c:89
381 #: src/virt-viewer-auth.c:89
394382 #, c-format
395383 msgid ""
396384 "Authentication is required for the %s connection to:\n"
399387 "\n"
400388 msgstr ""
401389
402 #: ../src/virt-viewer-auth.c:93
390 #: src/virt-viewer-auth.c:93
403391 #, c-format
404392 msgid "Authentication is required for the %s connection:\n"
405393 msgstr ""
406394
407 #.
408 #. * Local variables:
409 #. * c-indent-level: 4
410 #. * c-basic-offset: 4
411 #. * indent-tabs-mode: nil
412 #. * End:
413 #.
414 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
395 #: src/resources/ui/virt-viewer-auth.ui:7
415396 msgid "Authentication required"
416397 msgstr ""
417398
418 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
399 #: src/resources/ui/virt-viewer-auth.ui:42
419400 msgid "_OK"
420401 msgstr ""
421402
422 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
423 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
424 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
403 #: src/resources/ui/virt-viewer-auth.ui:71
404 #: src/resources/ui/virt-viewer-guest-details.ui:82
405 #: src/resources/ui/virt-viewer-guest-details.ui:96
406 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
425407 msgid "label"
426408 msgstr ""
427409
428 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
410 #: src/resources/ui/virt-viewer-auth.ui:93
429411 msgid "Password:"
430412 msgstr ""
431413
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
414 #: src/resources/ui/virt-viewer-auth.ui:105
433415 msgid "Username:"
434416 msgstr ""
435417
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
418 #: src/resources/ui/virt-viewer-auth.ui:137
437419 msgid "Show password"
438420 msgstr ""
439421
440 #: ../src/virt-viewer-display-vnc.c:134
422 #: src/virt-viewer-display-vnc.c:130
441423 msgid "VNC does not provide GUID"
442424 msgstr ""
443425
444 #: ../src/virt-viewer-file-transfer-dialog.c:128
426 #: src/virt-viewer-display-vte.c:181
427 msgid "Console support is compiled out!"
428 msgstr ""
429
430 #: src/virt-viewer-file-transfer-dialog.c:124
445431 msgid "File Transfers"
446432 msgstr ""
447433
448 #: ../src/virt-viewer-file-transfer-dialog.c:154
434 #: src/virt-viewer-file-transfer-dialog.c:150
449435 msgid "Transferring 1 file..."
450436 msgstr ""
451437
452 #: ../src/virt-viewer-file-transfer-dialog.c:156
453 #, c-format
454 msgid "Transferring %d file of %d..."
455 msgid_plural "Transferring %d files of %d..."
438 #: src/virt-viewer-file-transfer-dialog.c:152
439 #, c-format
440 msgid "Transferring %u file of %u..."
441 msgid_plural "Transferring %u files of %u..."
456442 msgstr[0] ""
457
458 #: ../src/virt-viewer-file-transfer-dialog.c:228
459 #, c-format
460 msgid "An error caused the following file transfers to fail:%s"
461 msgstr ""
462
463 #: ../src/virt-viewer-main.c:38
443 msgstr[1] ""
444
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
464450 msgid "Virt Viewer"
465451 msgstr ""
466452
467 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
468454 msgid "Invalid password"
469455 msgstr ""
470456
471 #. Create the widgets
472 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
473458 msgid "Select USB devices for redirection"
474459 msgstr "Velg USB-enheter for omdirigering"
475460
476 #: ../src/virt-viewer-session-spice.c:804
477 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
478463 msgid "_Close"
479464 msgstr ""
480465
481 #: ../src/virt-viewer-session-vnc.c:162
482 #, c-format
483 msgid "Unsupported authentication type %d"
484 msgstr ""
485
486 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
487484 msgid "No running virtual machine found"
488485 msgstr ""
489486
490 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
491488 msgid "No virtual machine was chosen"
492489 msgstr ""
493490
494 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
495492 msgid "Ctrl+Alt+_Del"
496493 msgstr ""
497494
498 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
499496 msgid "Ctrl+Alt+_Backspace"
500497 msgstr ""
501498
502 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
503500 msgid "Ctrl+Alt+F_1"
504501 msgstr ""
505502
506 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
507504 msgid "Ctrl+Alt+F_2"
508505 msgstr ""
509506
510 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
511508 msgid "Ctrl+Alt+F_3"
512509 msgstr ""
513510
514 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
515512 msgid "Ctrl+Alt+F_4"
516513 msgstr ""
517514
518 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
519516 msgid "Ctrl+Alt+F_5"
520517 msgstr ""
521518
522 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
523520 msgid "Ctrl+Alt+F_6"
524521 msgstr ""
525522
526 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
527524 msgid "Ctrl+Alt+F_7"
528525 msgstr ""
529526
530 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
531528 msgid "Ctrl+Alt+F_8"
532529 msgstr ""
533530
534 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
535532 msgid "Ctrl+Alt+F_9"
536533 msgstr ""
537534
538 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
539536 msgid "Ctrl+Alt+F1_0"
540537 msgstr ""
541538
542 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
543540 msgid "Ctrl+Alt+F11"
544541 msgstr ""
545542
546 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
547544 msgid "Ctrl+Alt+F12"
548545 msgstr ""
549546
550 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
551552 #, c-format
552553 msgid "Unable to determine image format for file '%s'"
553554 msgstr ""
554555
555 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
556561 msgid "_Save"
557562 msgstr ""
558563
559 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
560565 msgid "Screenshot.png"
561566 msgstr ""
562567
563 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
564569 msgid "Unknown"
565570 msgstr ""
566571
567 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
568573 msgid "Unable to connnect to oVirt"
569574 msgstr ""
570575
571 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
572577 msgid "Disconnect"
573578 msgstr "Koble fra"
574579
575 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
576581 msgid "USB device selection"
577582 msgstr ""
578583
579 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
580585 msgid "Send key combination"
581586 msgstr ""
582587
583 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
584589 msgid "Leave fullscreen"
585590 msgstr "Forlat fullskjerm"
586591
587 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
588593 msgid "Ctrl+Alt"
589594 msgstr ""
590595
591 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
592597 #, c-format
593598 msgid "(Press %s to release pointer)"
594599 msgstr ""
595600
596 #. translators:
597 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
598 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
599 #.
600 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
601602 #, c-format
602603 msgid "%s%s%s - %s"
603604 msgstr "%s%s%s - %s"
604605
605 #. translators: <space>
606 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
607607 msgid " "
608608 msgstr ""
609609
610 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
611611 #, c-format
612612 msgid ""
613613 "At least %s version %s is required to setup this connection, see %s for "
614614 "details"
615615 msgstr ""
616616
617 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
618618 #, c-format
619619 msgid "At least %s version %s is required to setup this connection"
620620 msgstr ""
621621
622 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
623623 msgid "Direct connection with no automatic tunnels"
624624 msgstr "Direkte kobling uten automatiske tuneller"
625625
626 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
627627 msgid "Attach to the local display using libvirt"
628628 msgstr ""
629629
630 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
631631 msgid "Connect to hypervisor"
632632 msgstr ""
633633
634 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
635635 msgid "Wait for domain to start"
636636 msgstr ""
637637
638 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
639639 msgid "Reconnect to domain upon restart"
640640 msgstr ""
641641
642 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
643643 msgid "Select the virtual machine only by its name"
644644 msgstr ""
645645
646 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
647647 msgid "Select the virtual machine only by its id"
648648 msgstr ""
649649
650 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
651651 msgid "Select the virtual machine only by its uuid"
652652 msgstr ""
653653
654 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
655655 msgid "Virtual machine graphical console"
656656 msgstr ""
657657
658 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
659659 #, c-format
660660 msgid ""
661661 "\n"
663663 "\n"
664664 msgstr ""
665665
666 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
667667 #, c-format
668668 msgid ""
669669 "\n"
671671 "\n"
672672 msgstr ""
673673
674 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
675675 msgid "Waiting for guest domain to re-start"
676676 msgstr "Venter på at domene for gjest skal starte på nytt"
677677
678 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
679679 #, c-format
680680 msgid "Cannot determine the graphic type for the guest %s"
681681 msgstr "Kan ikke bestemme grafikktype for gjest %s"
682682
683 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
684684 #, c-format
685685 msgid "Cannot determine the host for the guest %s"
686686 msgstr "Kan ikke bestemme vert for gjest %s"
687687
688 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
689689 #, c-format
690690 msgid "Guest '%s' is not reachable"
691691 msgstr ""
692692
693 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
694694 #, c-format
695695 msgid "Virtual machine %s is not running"
696696 msgstr ""
697697
698 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
699699 msgid "Waiting for libvirt to start"
700700 msgstr ""
701701
702 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
703703 msgid "Finding guest domain"
704704 msgstr "Finner domene for gjest"
705705
706 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
707707 msgid "Waiting for guest domain to be created"
708708 msgstr ""
709709
710 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
711711 msgid "Checking guest domain status"
712712 msgstr ""
713713
714 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
715715 msgid "Cannot get guest state"
716716 msgstr ""
717717
718 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
719719 msgid "Waiting for guest domain to start"
720720 msgstr ""
721721
722 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
723723 #, c-format
724724 msgid "Unable to connect to libvirt with URI: %s."
725725 msgstr ""
726726
727 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
728728 msgid "[none]"
729729 msgstr ""
730730
731 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
732732 msgid "Authentication failed."
733733 msgstr ""
734734
735 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
736736 msgid "Failed to connect: "
737737 msgstr ""
738738
739 #.
740 #. * Local variables:
741 #. * c-indent-level: 4
742 #. * c-basic-offset: 4
743 #. * indent-tabs-mode: nil
744 #. * End:
745 #.
746 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
747740 msgid "_File"
748741 msgstr ""
749742
750 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
751744 msgid "_Screenshot"
752745 msgstr ""
753746
754 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
755748 msgid "_USB device selection"
756749 msgstr ""
757750
758 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
759752 msgid "Smartcard insertion"
760753 msgstr ""
761754
762 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
763756 msgid "Smartcard removal"
764757 msgstr ""
765758
766 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
767760 msgid "_Change CD"
768761 msgstr ""
769762
770 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
771764 msgid "_Preferences"
772765 msgstr ""
773766
774 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
775768 msgid "_Quit"
776769 msgstr ""
777770
778 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
779788 msgid "_View"
780789 msgstr ""
781790
782 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
783792 msgid "_Full screen"
784793 msgstr ""
785794
786 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
787796 msgid "_Zoom"
788797 msgstr ""
789798
790 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
791800 msgid "Zoom _In"
792801 msgstr ""
793802
794 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
795804 msgid "Zoom _Out"
796805 msgstr ""
797806
798 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
799808 msgid "_Normal Size"
800809 msgstr ""
801810
802 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
803812 msgid "_Displays"
804813 msgstr ""
805814
806 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
807816 msgid "Release cursor"
808817 msgstr ""
809818
810 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
811820 msgid "_Send key"
812821 msgstr ""
813822
814 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
815824 msgid "_Help"
816825 msgstr ""
817826
818 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
819828 msgid "_Guest Details"
820829 msgstr ""
821830
822 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
823832 msgid "_About"
824833 msgstr ""
825834
826 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
827836 msgid "Guest Details"
828837 msgstr ""
829838
830 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
831840 msgid "Name:"
832841 msgstr ""
833842
834 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
835844 msgid "GUID:"
836845 msgstr ""
837846
838 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
839848 msgid "Choose a virtual machine"
840849 msgstr ""
841850
842 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
843852 msgid "Available virtual machines"
844853 msgstr ""
845854
846 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
847856 msgid "Preferences"
848857 msgstr ""
849858
850 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
851860 msgid "Folder sharing"
852861 msgstr ""
853862
854 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
855864 msgid "Share folder"
856865 msgstr ""
857866
858 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
859868 msgid "Read-only"
860869 msgstr ""
861870
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
863876 msgid "Spice"
864877 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Low German\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/ne.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Nepali\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+269
-253
po/nl.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Geert Warrink <geert.warrink@onsnet.nu>, 2010-2014
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:10-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:10+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Dutch (http://www.transifex.com/projects/p/virt-viewer/"
1414 "language/nl/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr "Viewer op afstand"
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr "Toegang tot bureaubladen op afstand"
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr "Virt-Viewer verbindingsbestand"
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr "Stel venstertitel in"
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr "Viewer cliënt op afstand "
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr "Verbinding initiëren mislukte"
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr "Kan het connectie type niet van URI bepalen"
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr "Verbindingsdetails"
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr "Bijvoorbeeld, spice://foo.example.org:5900"
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
216204 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
217205 "Copyright (C) 2007-2014 Red Hat, Inc."
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:4
207 #: src/resources/ui/virt-viewer-about.ui:18
220208 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221209 msgstr ""
222210 "Een desktop op afstand cliënt gebouwd met GTK-VNC, SPICE-GTK en libvirt"
223211
224 #: ../src/resources/ui/virt-viewer-about.ui.h:5
225 msgid "virt-manager.org"
226 msgstr "virt-manager.org"
227
228 #: ../src/resources/ui/virt-viewer-about.ui.h:6
212 #: src/resources/ui/virt-viewer-about.ui:20
213 msgid "gitlab.com/virt-viewer/virt-viewer"
214 msgstr ""
215
216 #: src/resources/ui/virt-viewer-about.ui:21
229217 msgid ""
230218 "This program is free software; you can redistribute it and/or modify\n"
231219 "it under the terms of the GNU General Public License as published by\n"
255243 "along with this program; if not, write to the Free Software\n"
256244 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
257245
258 #: ../src/resources/ui/virt-viewer-about.ui.h:20
246 #: src/resources/ui/virt-viewer-about.ui:38
259247 msgid "The Fedora Translation Team"
260248 msgstr "Het Fedora vertaal team"
261249
262 #: ../src/virt-viewer-app.c:459
250 #: src/virt-viewer-app.c:594
263251 msgid "Do you want to close the session?"
264252 msgstr "Wil je de sessie afsluiten?"
265253
266 #: ../src/virt-viewer-app.c:461
254 #: src/virt-viewer-app.c:596
267255 msgid "Do not ask me again"
268256 msgstr "Vraag me dit niet weer"
269257
270 #: ../src/virt-viewer-app.c:655
258 #: src/virt-viewer-app.c:767
271259 #, c-format
272260 msgid "Address is too long for unix socket_path: %s"
273261 msgstr ""
274262
275 #: ../src/virt-viewer-app.c:665
263 #: src/virt-viewer-app.c:777
276264 #, c-format
277265 msgid "Creating unix socket failed: %s"
278266 msgstr ""
279267
280 #: ../src/virt-viewer-app.c:671
268 #: src/virt-viewer-app.c:783
281269 #, c-format
282270 msgid "Connecting to unix socket failed: %s"
283271 msgstr ""
284272
285 #: ../src/virt-viewer-app.c:955
273 #: src/virt-viewer-app.c:1077
286274 #, c-format
287275 msgid "Waiting for display %d..."
288276 msgstr "Wachten op display %d..."
289277
290 #: ../src/virt-viewer-app.c:1062
278 #: src/virt-viewer-app.c:1193
291279 #, c-format
292280 msgid "Unsupported graphic type '%s'"
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1146
283 #: src/virt-viewer-app.c:1277
296284 msgid "Connect to ssh failed."
297285 msgstr "Verbinden met ssh mislukte."
298286
299 #: ../src/virt-viewer-app.c:1161
287 #: src/virt-viewer-app.c:1292
300288 #, c-format
301289 msgid "Can't connect to channel: %s"
302290 msgstr ""
303291
304 #: ../src/virt-viewer-app.c:1163
292 #: src/virt-viewer-app.c:1294
305293 msgid "only SSH or unix socket connection supported."
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1176
296 #: src/virt-viewer-app.c:1311
309297 msgid "Connect to channel unsupported."
310298 msgstr "Verbinding maken met kanaal wordt niet ondersteund."
311299
312 #: ../src/virt-viewer-app.c:1238
300 #: src/virt-viewer-app.c:1376
313301 msgid "Display can only be attached through libvirt with --attach"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1263
304 #: src/virt-viewer-app.c:1401
317305 msgid "Connecting to graphic server"
318306 msgstr "Verbinding maken met grafische server"
319307
320 #: ../src/virt-viewer-app.c:1362
308 #: src/virt-viewer-app.c:1500
321309 msgid "Guest domain has shutdown"
322310 msgstr "Gast domein werd afgesloten"
323311
324 #: ../src/virt-viewer-app.c:1423
312 #: src/virt-viewer-app.c:1561
325313 msgid "Connected to graphic server"
326314 msgstr "Verbonden met grafische server"
327315
328 #: ../src/virt-viewer-app.c:1452
316 #: src/virt-viewer-app.c:1590
329317 #, c-format
330318 msgid "Unable to connect to the graphic server %s"
331319 msgstr "Ka niet verbinden met de grafische server %s"
332320
333 #: ../src/virt-viewer-app.c:1478
321 #: src/virt-viewer-app.c:1616
334322 #, c-format
335323 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
336324 msgstr ""
337325
338 #: ../src/virt-viewer-app.c:1492
326 #: src/virt-viewer-app.c:1630
339327 #, c-format
340328 msgid "Unable to authenticate with remote desktop server: %s"
341329 msgstr "Kon geen authenticatie verkrijgen met desktop server op afstand: %s"
342330
343 #: ../src/virt-viewer-app.c:1500
331 #: src/virt-viewer-app.c:1638
344332 #, c-format
345333 msgid "USB redirection error: %s"
346334 msgstr "USB omleidingsfout: %s"
347335
348 #: ../src/virt-viewer-app.c:1834
336 #: src/virt-viewer-app.c:2026
349337 #, c-format
350338 msgid "Zoom level must be within %d-%d\n"
351339 msgstr "Zoom niveau moet tussen %d-%d zijn\n"
352340
353 #: ../src/virt-viewer-app.c:1887
341 #: src/virt-viewer-app.c:2081
354342 #, c-format
355343 msgid "%s\n"
356344 msgstr ""
357345
358 #: ../src/virt-viewer-app.c:1897
346 #: src/virt-viewer-app.c:2091
359347 #, c-format
360348 msgid "%s version %s"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2321
351 #: src/virt-viewer-app.c:2545
364352 #, c-format
365353 msgid "Display _%d"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2577
356 #: src/virt-viewer-app.c:2829
369357 #, c-format
370358 msgid "Invalid kiosk-quit argument: %s"
371359 msgstr "Ongeldig kiosk-quit argument: %s"
372360
373 #: ../src/virt-viewer-app.c:2588
361 #: src/virt-viewer-app.c:2840
374362 msgid "Display version information"
375363 msgstr "Toon versie informatie"
376364
377 #: ../src/virt-viewer-app.c:2590
365 #: src/virt-viewer-app.c:2842
378366 msgid "Zoom level of window, in percentage"
379367 msgstr "Zoom niveau in percentage van het venster"
380368
381 #: ../src/virt-viewer-app.c:2592
369 #: src/virt-viewer-app.c:2844
382370 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
383371 msgstr ""
384372 "Open in volledig-scherm modus (past gastresolutie aan om te passen bij die "
385373 "van de cliënt)."
386374
387 #: ../src/virt-viewer-app.c:2594
375 #: src/virt-viewer-app.c:2846
388376 msgid "Customise hotkeys"
389377 msgstr "Pas sneltoetsen aan"
390378
391 #: ../src/virt-viewer-app.c:2596
379 #: src/virt-viewer-app.c:2848
392380 msgid "Enable kiosk mode"
393381 msgstr "Zet kiosk modus aan"
394382
395 #: ../src/virt-viewer-app.c:2598
383 #: src/virt-viewer-app.c:2850
396384 msgid "Quit on given condition in kiosk mode"
397385 msgstr "Sluit af bij gegeven conditie in kiosk modus"
398386
399 #: ../src/virt-viewer-app.c:2598
387 #: src/virt-viewer-app.c:2850
400388 msgid "<never|on-disconnect>"
401389 msgstr "<never|on-disconnect>"
402390
403 #: ../src/virt-viewer-app.c:2600
391 #: src/virt-viewer-app.c:2852
404392 msgid "Display verbose information"
405393 msgstr "Toon uitgebreide informatie"
406394
407 #: ../src/virt-viewer-app.c:2602
395 #: src/virt-viewer-app.c:2854
408396 msgid "Display debugging information"
409397 msgstr "Toon debug informatie"
410398
411 #: ../src/virt-viewer-auth.c:89
399 #: src/virt-viewer-auth.c:89
412400 #, c-format
413401 msgid ""
414402 "Authentication is required for the %s connection to:\n"
417405 "\n"
418406 msgstr ""
419407
420 #: ../src/virt-viewer-auth.c:93
408 #: src/virt-viewer-auth.c:93
421409 #, c-format
422410 msgid "Authentication is required for the %s connection:\n"
423411 msgstr ""
424412
425 #.
426 #. * Local variables:
427 #. * c-indent-level: 4
428 #. * c-basic-offset: 4
429 #. * indent-tabs-mode: nil
430 #. * End:
431 #.
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
413 #: src/resources/ui/virt-viewer-auth.ui:7
433414 msgid "Authentication required"
434415 msgstr "Authenticatie is vereist"
435416
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
417 #: src/resources/ui/virt-viewer-auth.ui:42
437418 msgid "_OK"
438419 msgstr ""
439420
440 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
441 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
442 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
421 #: src/resources/ui/virt-viewer-auth.ui:71
422 #: src/resources/ui/virt-viewer-guest-details.ui:82
423 #: src/resources/ui/virt-viewer-guest-details.ui:96
424 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
443425 msgid "label"
444426 msgstr "label"
445427
446 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
428 #: src/resources/ui/virt-viewer-auth.ui:93
447429 msgid "Password:"
448430 msgstr "Wachtwoord:"
449431
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
432 #: src/resources/ui/virt-viewer-auth.ui:105
451433 msgid "Username:"
452434 msgstr "Gebruikersnaam:"
453435
454 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
436 #: src/resources/ui/virt-viewer-auth.ui:137
455437 msgid "Show password"
456438 msgstr ""
457439
458 #: ../src/virt-viewer-display-vnc.c:134
440 #: src/virt-viewer-display-vnc.c:130
459441 msgid "VNC does not provide GUID"
460442 msgstr ""
461443
462 #: ../src/virt-viewer-file-transfer-dialog.c:128
444 #: src/virt-viewer-display-vte.c:181
445 msgid "Console support is compiled out!"
446 msgstr ""
447
448 #: src/virt-viewer-file-transfer-dialog.c:124
463449 msgid "File Transfers"
464450 msgstr ""
465451
466 #: ../src/virt-viewer-file-transfer-dialog.c:154
452 #: src/virt-viewer-file-transfer-dialog.c:150
467453 msgid "Transferring 1 file..."
468454 msgstr ""
469455
470 #: ../src/virt-viewer-file-transfer-dialog.c:156
471 #, c-format
472 msgid "Transferring %d file of %d..."
473 msgid_plural "Transferring %d files of %d..."
456 #: src/virt-viewer-file-transfer-dialog.c:152
457 #, c-format
458 msgid "Transferring %u file of %u..."
459 msgid_plural "Transferring %u files of %u..."
474460 msgstr[0] ""
475
476 #: ../src/virt-viewer-file-transfer-dialog.c:228
477 #, c-format
478 msgid "An error caused the following file transfers to fail:%s"
479 msgstr ""
480
481 #: ../src/virt-viewer-main.c:38
461 msgstr[1] ""
462
463 #: src/virt-viewer-file-transfer-dialog.c:225
464 msgid "An error caused the following file transfers to fail:"
465 msgstr ""
466
467 #: src/virt-viewer-main.c:38
482468 msgid "Virt Viewer"
483469 msgstr "Virt viewer"
484470
485 #: ../src/virt-viewer-session-spice.c:704
471 #: src/virt-viewer-session-spice.c:731
486472 msgid "Invalid password"
487473 msgstr ""
488474
489 #. Create the widgets
490 #: ../src/virt-viewer-session-spice.c:802
475 #: src/virt-viewer-session-spice.c:829
491476 msgid "Select USB devices for redirection"
492477 msgstr "Selecteer USB apparaten voor omleiding"
493478
494 #: ../src/virt-viewer-session-spice.c:804
495 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
479 #: src/virt-viewer-session-spice.c:831
480 #: src/resources/ui/virt-viewer-guest-details.ui:23
496481 msgid "_Close"
497482 msgstr ""
498483
499 #: ../src/virt-viewer-session-vnc.c:162
500 #, c-format
501 msgid "Unsupported authentication type %d"
502 msgstr "Niet-ondersteund authenticatie type %d"
503
504 #: ../src/virt-viewer-vm-connection.c:64
484 #: src/virt-viewer-session-spice.c:1019
485 msgid "Serial"
486 msgstr ""
487
488 #: src/virt-viewer-session-spice.c:1021
489 msgid "QEMU human monitor"
490 msgstr ""
491
492 #: src/virt-viewer-session-spice.c:1023
493 msgid "QEMU debug console"
494 msgstr ""
495
496 #: src/virt-viewer-session-vnc.c:158
497 #, c-format
498 msgid "Unsupported authentication type %u"
499 msgstr ""
500
501 #: src/virt-viewer-vm-connection.c:64
505502 msgid "No running virtual machine found"
506503 msgstr ""
507504
508 #: ../src/virt-viewer-vm-connection.c:93
505 #: src/virt-viewer-vm-connection.c:93
509506 msgid "No virtual machine was chosen"
510507 msgstr ""
511508
512 #: ../src/virt-viewer-window.c:544
509 #: src/virt-viewer-window.c:621
513510 msgid "Ctrl+Alt+_Del"
514511 msgstr "Ctrl+Alt+_Del"
515512
516 #: ../src/virt-viewer-window.c:545
513 #: src/virt-viewer-window.c:622
517514 msgid "Ctrl+Alt+_Backspace"
518515 msgstr "Ctrl+Alt+_Backspace"
519516
520 #: ../src/virt-viewer-window.c:547
517 #: src/virt-viewer-window.c:624
521518 msgid "Ctrl+Alt+F_1"
522519 msgstr "Ctrl+Alt+F_1"
523520
524 #: ../src/virt-viewer-window.c:548
521 #: src/virt-viewer-window.c:625
525522 msgid "Ctrl+Alt+F_2"
526523 msgstr "Ctrl+Alt+F_2"
527524
528 #: ../src/virt-viewer-window.c:549
525 #: src/virt-viewer-window.c:626
529526 msgid "Ctrl+Alt+F_3"
530527 msgstr "Ctrl+Alt+F_3"
531528
532 #: ../src/virt-viewer-window.c:550
529 #: src/virt-viewer-window.c:627
533530 msgid "Ctrl+Alt+F_4"
534531 msgstr "Ctrl+Alt+F_4"
535532
536 #: ../src/virt-viewer-window.c:551
533 #: src/virt-viewer-window.c:628
537534 msgid "Ctrl+Alt+F_5"
538535 msgstr "Ctrl+Alt+F_5"
539536
540 #: ../src/virt-viewer-window.c:552
537 #: src/virt-viewer-window.c:629
541538 msgid "Ctrl+Alt+F_6"
542539 msgstr "Ctrl+Alt+F_6"
543540
544 #: ../src/virt-viewer-window.c:553
541 #: src/virt-viewer-window.c:630
545542 msgid "Ctrl+Alt+F_7"
546543 msgstr "Ctrl+Alt+F_7"
547544
548 #: ../src/virt-viewer-window.c:554
545 #: src/virt-viewer-window.c:631
549546 msgid "Ctrl+Alt+F_8"
550547 msgstr "Ctrl+Alt+F_8"
551548
552 #: ../src/virt-viewer-window.c:555
549 #: src/virt-viewer-window.c:632
553550 msgid "Ctrl+Alt+F_9"
554551 msgstr "Ctrl+Alt+F_9"
555552
556 #: ../src/virt-viewer-window.c:556
553 #: src/virt-viewer-window.c:633
557554 msgid "Ctrl+Alt+F1_0"
558555 msgstr "Ctrl+Alt+F1_0"
559556
560 #: ../src/virt-viewer-window.c:557
557 #: src/virt-viewer-window.c:634
561558 msgid "Ctrl+Alt+F11"
562559 msgstr "Ctrl+Alt+F11"
563560
564 #: ../src/virt-viewer-window.c:558
561 #: src/virt-viewer-window.c:635
565562 msgid "Ctrl+Alt+F12"
566563 msgstr "Ctrl+Alt+F12"
567564
568 #: ../src/virt-viewer-window.c:953
565 #: src/virt-viewer-window.c:637
566 msgid "_PrintScreen"
567 msgstr ""
568
569 #: src/virt-viewer-window.c:1030
569570 #, c-format
570571 msgid "Unable to determine image format for file '%s'"
571572 msgstr ""
572573
573 #: ../src/virt-viewer-window.c:980
574 #: src/virt-viewer-window.c:1053
575 msgid "Save screenshot"
576 msgstr ""
577
578 #: src/virt-viewer-window.c:1057
574579 msgid "_Save"
575580 msgstr ""
576581
577 #: ../src/virt-viewer-window.c:988
582 #: src/virt-viewer-window.c:1065
578583 msgid "Screenshot.png"
579584 msgstr ""
580585
581 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
586 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
582587 msgid "Unknown"
583588 msgstr ""
584589
585 #: ../src/virt-viewer-window.c:1152
590 #: src/virt-viewer-window.c:1237
586591 msgid "Unable to connnect to oVirt"
587592 msgstr ""
588593
589 #: ../src/virt-viewer-window.c:1175
594 #: src/virt-viewer-window.c:1260
590595 msgid "Disconnect"
591596 msgstr "Verbinding verbreken"
592597
593 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
598 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
594599 msgid "USB device selection"
595600 msgstr "USB apparaat selectie"
596601
597 #: ../src/virt-viewer-window.c:1193
602 #: src/virt-viewer-window.c:1278
598603 msgid "Send key combination"
599604 msgstr "Stuur sleutel combinatie"
600605
601 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
606 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
602607 msgid "Leave fullscreen"
603608 msgstr "Verlaat volledig scherm"
604609
605 #: ../src/virt-viewer-window.c:1279
610 #: src/virt-viewer-window.c:1364
606611 msgid "Ctrl+Alt"
607612 msgstr "Ctrl+Alt"
608613
609 #: ../src/virt-viewer-window.c:1282
614 #: src/virt-viewer-window.c:1367
610615 #, c-format
611616 msgid "(Press %s to release pointer)"
612617 msgstr "(Druk op %s om wijzer vrij te geven)"
613618
614 #. translators:
615 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
616 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
617 #.
618 #: ../src/virt-viewer-window.c:1293
619 #: src/virt-viewer-window.c:1378
619620 #, c-format
620621 msgid "%s%s%s - %s"
621622 msgstr "%s%s%s - %s"
622623
623 #. translators: <space>
624 #: ../src/virt-viewer-window.c:1297
624 #: src/virt-viewer-window.c:1382
625625 msgid " "
626626 msgstr " "
627627
628 #: ../src/virt-viewer-file.c:862
628 #: src/virt-viewer-file.c:875
629629 #, c-format
630630 msgid ""
631631 "At least %s version %s is required to setup this connection, see %s for "
632632 "details"
633633 msgstr ""
634634
635 #: ../src/virt-viewer-file.c:870
635 #: src/virt-viewer-file.c:883
636636 #, c-format
637637 msgid "At least %s version %s is required to setup this connection"
638638 msgstr "%s versie %s is tenminste vereist om deze verbinding in te stellen"
639639
640 #: ../src/virt-viewer.c:133
640 #: src/virt-viewer.c:131
641641 msgid "Direct connection with no automatic tunnels"
642642 msgstr "Directe verbinding zonder automatische tunnels"
643643
644 #: ../src/virt-viewer.c:135
644 #: src/virt-viewer.c:133
645645 msgid "Attach to the local display using libvirt"
646646 msgstr "Verbindt met het lokale display met libvirt "
647647
648 #: ../src/virt-viewer.c:137
648 #: src/virt-viewer.c:135
649649 msgid "Connect to hypervisor"
650650 msgstr "Verbindt met hypervisor"
651651
652 #: ../src/virt-viewer.c:139
652 #: src/virt-viewer.c:137
653653 msgid "Wait for domain to start"
654654 msgstr "Wacht tot het domein opgestart is"
655655
656 #: ../src/virt-viewer.c:141
656 #: src/virt-viewer.c:139
657657 msgid "Reconnect to domain upon restart"
658658 msgstr "Verbindt opnieuw met domein nadat het opgestart is"
659659
660 #: ../src/virt-viewer.c:143
660 #: src/virt-viewer.c:141
661661 msgid "Select the virtual machine only by its name"
662662 msgstr ""
663663
664 #: ../src/virt-viewer.c:145
664 #: src/virt-viewer.c:143
665665 msgid "Select the virtual machine only by its id"
666666 msgstr ""
667667
668 #: ../src/virt-viewer.c:147
668 #: src/virt-viewer.c:145
669669 msgid "Select the virtual machine only by its uuid"
670670 msgstr ""
671671
672 #: ../src/virt-viewer.c:154
672 #: src/virt-viewer.c:152
673673 msgid "Virtual machine graphical console"
674674 msgstr "Virtuele machine grafische console"
675675
676 #: ../src/virt-viewer.c:173
676 #: src/virt-viewer.c:171
677677 #, c-format
678678 msgid ""
679679 "\n"
681681 "\n"
682682 msgstr ""
683683
684 #: ../src/virt-viewer.c:185
684 #: src/virt-viewer.c:183
685685 #, c-format
686686 msgid ""
687687 "\n"
689689 "\n"
690690 msgstr ""
691691
692 #: ../src/virt-viewer.c:300
692 #: src/virt-viewer.c:296
693693 msgid "Waiting for guest domain to re-start"
694694 msgstr "Wacht tot gast domein opnieuw opgestart wordt"
695695
696 #: ../src/virt-viewer.c:554
696 #: src/virt-viewer.c:550
697697 #, c-format
698698 msgid "Cannot determine the graphic type for the guest %s"
699699 msgstr "Kan het grafische type voor de gast %s niet bepalen"
700700
701 #: ../src/virt-viewer.c:603
701 #: src/virt-viewer.c:599
702702 #, c-format
703703 msgid "Cannot determine the host for the guest %s"
704704 msgstr "Kan de host voor de gast %s niet bepalen"
705705
706 #: ../src/virt-viewer.c:631
706 #: src/virt-viewer.c:627
707707 #, c-format
708708 msgid "Guest '%s' is not reachable"
709709 msgstr ""
710710
711 #: ../src/virt-viewer.c:860
711 #: src/virt-viewer.c:856
712712 #, c-format
713713 msgid "Virtual machine %s is not running"
714714 msgstr ""
715715
716 #: ../src/virt-viewer.c:884
716 #: src/virt-viewer.c:881
717717 msgid "Waiting for libvirt to start"
718718 msgstr "Wacht op het opstarten van libvirt"
719719
720 #: ../src/virt-viewer.c:888
720 #: src/virt-viewer.c:885
721721 msgid "Finding guest domain"
722722 msgstr "Zoek naar gast domein"
723723
724 #: ../src/virt-viewer.c:892
724 #: src/virt-viewer.c:889
725725 msgid "Waiting for guest domain to be created"
726726 msgstr "Wacht tot gast domein aangemaakt is"
727727
728 #: ../src/virt-viewer.c:918
728 #: src/virt-viewer.c:921
729729 msgid "Checking guest domain status"
730730 msgstr "Controleer gast domein status"
731731
732 #: ../src/virt-viewer.c:921
732 #: src/virt-viewer.c:924
733733 msgid "Cannot get guest state"
734734 msgstr ""
735735
736 #: ../src/virt-viewer.c:927
736 #: src/virt-viewer.c:930
737737 msgid "Waiting for guest domain to start"
738738 msgstr "Wacht tot gast domein gestart wordt"
739739
740 #: ../src/virt-viewer.c:1040
740 #: src/virt-viewer.c:1044
741741 #, c-format
742742 msgid "Unable to connect to libvirt with URI: %s."
743743 msgstr ""
744744
745 #: ../src/virt-viewer.c:1041
745 #: src/virt-viewer.c:1045
746746 msgid "[none]"
747747 msgstr "[geen]"
748748
749 #: ../src/virt-viewer.c:1048
749 #: src/virt-viewer.c:1052
750750 msgid "Authentication failed."
751751 msgstr ""
752752
753 #: ../src/virt-viewer.c:1108
753 #: src/virt-viewer.c:1112
754754 msgid "Failed to connect: "
755755 msgstr ""
756756
757 #.
758 #. * Local variables:
759 #. * c-indent-level: 4
760 #. * c-basic-offset: 4
761 #. * indent-tabs-mode: nil
762 #. * End:
763 #.
764 #: ../src/resources/ui/virt-viewer.ui.h:1
757 #: src/resources/ui/virt-viewer.ui:28
765758 msgid "_File"
766759 msgstr "_Bestand"
767760
768 #: ../src/resources/ui/virt-viewer.ui.h:2
761 #: src/resources/ui/virt-viewer.ui:41
769762 msgid "_Screenshot"
770763 msgstr ""
771764
772 #: ../src/resources/ui/virt-viewer.ui.h:3
765 #: src/resources/ui/virt-viewer.ui:52
773766 msgid "_USB device selection"
774767 msgstr ""
775768
776 #: ../src/resources/ui/virt-viewer.ui.h:4
769 #: src/resources/ui/virt-viewer.ui:62
777770 msgid "Smartcard insertion"
778771 msgstr "Breng smartcard in"
779772
780 #: ../src/resources/ui/virt-viewer.ui.h:5
773 #: src/resources/ui/virt-viewer.ui:72
781774 msgid "Smartcard removal"
782775 msgstr "Verwijder Smartcard"
783776
784 #: ../src/resources/ui/virt-viewer.ui.h:6
777 #: src/resources/ui/virt-viewer.ui:80
785778 msgid "_Change CD"
786779 msgstr ""
787780
788 #: ../src/resources/ui/virt-viewer.ui.h:7
781 #: src/resources/ui/virt-viewer.ui:90
789782 msgid "_Preferences"
790783 msgstr ""
791784
792 #: ../src/resources/ui/virt-viewer.ui.h:8
785 #: src/resources/ui/virt-viewer.ui:103
793786 msgid "_Quit"
794787 msgstr ""
795788
796 #: ../src/resources/ui/virt-viewer.ui.h:9
789 #: src/resources/ui/virt-viewer.ui:119
790 msgid "_Machine"
791 msgstr ""
792
793 #: src/resources/ui/virt-viewer.ui:129
794 msgid "_Pause"
795 msgstr ""
796
797 #: src/resources/ui/virt-viewer.ui:144
798 msgid "_Reset"
799 msgstr ""
800
801 #: src/resources/ui/virt-viewer.ui:153
802 msgid "_Power down"
803 msgstr ""
804
805 #: src/resources/ui/virt-viewer.ui:167
797806 msgid "_View"
798807 msgstr "_View"
799808
800 #: ../src/resources/ui/virt-viewer.ui.h:10
809 #: src/resources/ui/virt-viewer.ui:180
801810 msgid "_Full screen"
802811 msgstr ""
803812
804 #: ../src/resources/ui/virt-viewer.ui.h:11
813 #: src/resources/ui/virt-viewer.ui:191
805814 msgid "_Zoom"
806815 msgstr "_Zoom"
807816
808 #: ../src/resources/ui/virt-viewer.ui.h:12
817 #: src/resources/ui/virt-viewer.ui:201
809818 msgid "Zoom _In"
810819 msgstr ""
811820
812 #: ../src/resources/ui/virt-viewer.ui.h:13
821 #: src/resources/ui/virt-viewer.ui:212
813822 msgid "Zoom _Out"
814823 msgstr ""
815824
816 #: ../src/resources/ui/virt-viewer.ui.h:14
825 #: src/resources/ui/virt-viewer.ui:229
817826 msgid "_Normal Size"
818827 msgstr ""
819828
820 #: ../src/resources/ui/virt-viewer.ui.h:15
829 #: src/resources/ui/virt-viewer.ui:246
821830 msgid "_Displays"
822831 msgstr ""
823832
824 #: ../src/resources/ui/virt-viewer.ui.h:16
833 #: src/resources/ui/virt-viewer.ui:255
825834 msgid "Release cursor"
826835 msgstr "Geef cursor vrij"
827836
828 #: ../src/resources/ui/virt-viewer.ui.h:17
837 #: src/resources/ui/virt-viewer.ui:270
829838 msgid "_Send key"
830839 msgstr "_Stuur sleutel"
831840
832 #: ../src/resources/ui/virt-viewer.ui.h:18
841 #: src/resources/ui/virt-viewer.ui:279
833842 msgid "_Help"
834843 msgstr "_Hulp"
835844
836 #: ../src/resources/ui/virt-viewer.ui.h:19
845 #: src/resources/ui/virt-viewer.ui:290
837846 msgid "_Guest Details"
838847 msgstr ""
839848
840 #: ../src/resources/ui/virt-viewer.ui.h:20
849 #: src/resources/ui/virt-viewer.ui:297
841850 msgid "_About"
842851 msgstr ""
843852
844 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
853 #: src/resources/ui/virt-viewer-guest-details.ui:7
845854 msgid "Guest Details"
846855 msgstr ""
847856
848 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
857 #: src/resources/ui/virt-viewer-guest-details.ui:56
849858 msgid "Name:"
850859 msgstr ""
851860
852 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
861 #: src/resources/ui/virt-viewer-guest-details.ui:68
853862 msgid "GUID:"
854863 msgstr ""
855864
856 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
865 #: src/resources/ui/virt-viewer-vm-connection.ui:7
857866 msgid "Choose a virtual machine"
858867 msgstr ""
859868
860 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
869 #: src/resources/ui/virt-viewer-vm-connection.ui:96
861870 msgid "Available virtual machines"
862871 msgstr ""
863872
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
873 #: src/resources/ui/virt-viewer-preferences.ui:8
865874 msgid "Preferences"
866875 msgstr ""
867876
868 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
877 #: src/resources/ui/virt-viewer-preferences.ui:48
869878 msgid "Folder sharing"
870879 msgstr ""
871880
872 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
881 #: src/resources/ui/virt-viewer-preferences.ui:70
873882 msgid "Share folder"
874883 msgstr ""
875884
876 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
885 #: src/resources/ui/virt-viewer-preferences.ui:82
877886 msgid "Read-only"
878887 msgstr ""
879888
880 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
889 #: src/resources/ui/virt-viewer-preferences.ui:96
890 msgid "Share clipboard"
891 msgstr ""
892
893 #: src/resources/ui/virt-viewer-preferences.ui:132
881894 msgid "Spice"
882895 msgstr ""
896
897 #~ msgid "virt-manager.org"
898 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/nn.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Norwegian Nynorsk\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Northern Sotho\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+269
-253
po/or.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Manoj Kumar Giri <mgiri@redhat.com>, 2010,2012-2014
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:10-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:10+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Oriya (http://www.transifex.com/projects/p/virt-viewer/"
1414 "language/or/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr "ସୁଦୂର ପ୍ରଦର୍ଶିକା"
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr "ସୁଦୂର ଡେସ୍କଟପ ଗୁଡିକୁ ଅଭିଗମ କରନ୍ତୁ"
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr "Virt-Viewer ସଂଯୋଗ ଫାଇଲ"
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr "ୱିଣ୍ଡୋ ଶୀର୍ଷକ ସେଟ କରନ୍ତୁ"
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr ""
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr " ସଂଯୋଗ ଆରମ୍ଭ କରିବାରେ ବିଫଳ"
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr "URI ରୁ ସଂଯୋଗ ପ୍ରକାରକୁ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ"
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr "ସଂଯୋଗ ବିବରଣୀ"
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
215203 msgstr ""
216204
217 #: ../src/resources/ui/virt-viewer-about.ui.h:4
205 #: src/resources/ui/virt-viewer-about.ui:18
218206 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219207 msgstr ""
220208 "GTK-VNC, SPICE-GTK ଏବଂ libvirt ସହାୟତାରେ ଏକ ସୁଦୂର ଡେସ୍କଟପ କ୍ଲାଏଣ୍ଟ ପ୍ରସ୍ତୁତ ହୋଇଛି"
221209
222 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223 msgid "virt-manager.org"
224 msgstr "virt-manager.org"
225
226 #: ../src/resources/ui/virt-viewer-about.ui.h:6
210 #: src/resources/ui/virt-viewer-about.ui:20
211 msgid "gitlab.com/virt-viewer/virt-viewer"
212 msgstr ""
213
214 #: src/resources/ui/virt-viewer-about.ui:21
227215 msgid ""
228216 "This program is free software; you can redistribute it and/or modify\n"
229217 "it under the terms of the GNU General Public License as published by\n"
253241 "along with this program; if not, write to the Free Software\n"
254242 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
255243
256 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244 #: src/resources/ui/virt-viewer-about.ui:38
257245 msgid "The Fedora Translation Team"
258246 msgstr "Fedora ଅନୁବାଦନ ଗୋଷ୍ଠି"
259247
260 #: ../src/virt-viewer-app.c:459
248 #: src/virt-viewer-app.c:594
261249 msgid "Do you want to close the session?"
262250 msgstr "ଆପଣ ଅଧିବେଶନକୁ ବନ୍ଦ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?"
263251
264 #: ../src/virt-viewer-app.c:461
252 #: src/virt-viewer-app.c:596
265253 msgid "Do not ask me again"
266254 msgstr "ମୋତେ ପୁନର୍ବାର ପଚାରନ୍ତୁ ନାହିଁ"
267255
268 #: ../src/virt-viewer-app.c:655
256 #: src/virt-viewer-app.c:767
269257 #, c-format
270258 msgid "Address is too long for unix socket_path: %s"
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:665
261 #: src/virt-viewer-app.c:777
274262 #, c-format
275263 msgid "Creating unix socket failed: %s"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:671
266 #: src/virt-viewer-app.c:783
279267 #, c-format
280268 msgid "Connecting to unix socket failed: %s"
281269 msgstr ""
282270
283 #: ../src/virt-viewer-app.c:955
271 #: src/virt-viewer-app.c:1077
284272 #, c-format
285273 msgid "Waiting for display %d..."
286274 msgstr "%d କୁ ଅପେକ୍ଷା କରିଅଛି..."
287275
288 #: ../src/virt-viewer-app.c:1062
276 #: src/virt-viewer-app.c:1193
289277 #, c-format
290278 msgid "Unsupported graphic type '%s'"
291279 msgstr ""
292280
293 #: ../src/virt-viewer-app.c:1146
281 #: src/virt-viewer-app.c:1277
294282 msgid "Connect to ssh failed."
295283 msgstr "ssh ସହିତ ସଂଯୋଗ ବିଫଳ ହୋଇଛି।"
296284
297 #: ../src/virt-viewer-app.c:1161
285 #: src/virt-viewer-app.c:1292
298286 #, c-format
299287 msgid "Can't connect to channel: %s"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1163
290 #: src/virt-viewer-app.c:1294
303291 msgid "only SSH or unix socket connection supported."
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1176
294 #: src/virt-viewer-app.c:1311
307295 msgid "Connect to channel unsupported."
308296 msgstr "ଚ୍ୟାନେଲ ସହିତ ସଂଯୋଗ ଅସମର୍ଥିତ।"
309297
310 #: ../src/virt-viewer-app.c:1238
298 #: src/virt-viewer-app.c:1376
311299 msgid "Display can only be attached through libvirt with --attach"
312300 msgstr ""
313301
314 #: ../src/virt-viewer-app.c:1263
302 #: src/virt-viewer-app.c:1401
315303 msgid "Connecting to graphic server"
316304 msgstr "ଆଲେଖିକ ସର୍ଭର ସହିତ ସଂଯୋଗ କରୁଅଛି"
317305
318 #: ../src/virt-viewer-app.c:1362
306 #: src/virt-viewer-app.c:1500
319307 msgid "Guest domain has shutdown"
320308 msgstr "ଅତିଥି ଡମେନ ବନ୍ଦ ଅଛି"
321309
322 #: ../src/virt-viewer-app.c:1423
310 #: src/virt-viewer-app.c:1561
323311 msgid "Connected to graphic server"
324312 msgstr "ଆଲେଖି ସର୍ଭର ସହ ସଂଯୁକ୍ତ"
325313
326 #: ../src/virt-viewer-app.c:1452
314 #: src/virt-viewer-app.c:1590
327315 #, c-format
328316 msgid "Unable to connect to the graphic server %s"
329317 msgstr "ଆଲେଖୀ ସର୍ଭର %s ସହିତ ସଂଯୋଗ କରିବାରେ ଅସମର୍ଥ"
330318
331 #: ../src/virt-viewer-app.c:1478
319 #: src/virt-viewer-app.c:1616
332320 #, c-format
333321 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1492
324 #: src/virt-viewer-app.c:1630
337325 #, c-format
338326 msgid "Unable to authenticate with remote desktop server: %s"
339327 msgstr "ସୁଦୂର ଡେସ୍କଟପ ସର୍ଭର ସହିତ ବୈଧିକରଣ କରିବାରେ ଅସମର୍ଥ: %s"
340328
341 #: ../src/virt-viewer-app.c:1500
329 #: src/virt-viewer-app.c:1638
342330 #, c-format
343331 msgid "USB redirection error: %s"
344332 msgstr "USB ଦିଗପରିବର୍ତ୍ତନ ତ୍ରୁଟି: %s"
345333
346 #: ../src/virt-viewer-app.c:1834
334 #: src/virt-viewer-app.c:2026
347335 #, c-format
348336 msgid "Zoom level must be within %d-%d\n"
349337 msgstr "ଆକାର ବୃଦ୍ଧି ସ୍ତର ନିଶ୍ଚିତ ଭାବରେ %d-%d ମଧ୍ଯରେ ରହିବା ଉଚିତ\n"
350338
351 #: ../src/virt-viewer-app.c:1887
339 #: src/virt-viewer-app.c:2081
352340 #, c-format
353341 msgid "%s\n"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:1897
344 #: src/virt-viewer-app.c:2091
357345 #, c-format
358346 msgid "%s version %s"
359347 msgstr ""
360348
361 #: ../src/virt-viewer-app.c:2321
349 #: src/virt-viewer-app.c:2545
362350 #, c-format
363351 msgid "Display _%d"
364352 msgstr ""
365353
366 #: ../src/virt-viewer-app.c:2577
354 #: src/virt-viewer-app.c:2829
367355 #, c-format
368356 msgid "Invalid kiosk-quit argument: %s"
369357 msgstr "ଅବୈଧ kiosk-quit ସ୍ୱତନ୍ତ୍ରଚର: %s"
370358
371 #: ../src/virt-viewer-app.c:2588
359 #: src/virt-viewer-app.c:2840
372360 msgid "Display version information"
373361 msgstr "ସଂସ୍କରଣ ସୂଚନା ଦେଖାନ୍ତୁ"
374362
375 #: ../src/virt-viewer-app.c:2590
363 #: src/virt-viewer-app.c:2842
376364 msgid "Zoom level of window, in percentage"
377365 msgstr "ୱିଣ୍ଡୋର ଆକାର ବୃଦ୍ଧି ସ୍ତର, ଶତକଡ଼ାରେ"
378366
379 #: ../src/virt-viewer-app.c:2592
367 #: src/virt-viewer-app.c:2844
380368 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
381369 msgstr "ସମ୍ପୂର୍ଣ୍ଣ ପରଦା ଧାରାରେ ଖୋଲନ୍ତୁ (ଅତିଥି ବିଭେଦନକୁ କ୍ଲାଏଣ୍ଟ ସହିତ ମେଳାଇଥାଏ)।"
382370
383 #: ../src/virt-viewer-app.c:2594
371 #: src/virt-viewer-app.c:2846
384372 msgid "Customise hotkeys"
385373 msgstr "ହଟ-କିଗୁଡ଼ିକୁ ଇଚ୍ଛାମୁତାବକ କରନ୍ତୁ"
386374
387 #: ../src/virt-viewer-app.c:2596
375 #: src/virt-viewer-app.c:2848
388376 msgid "Enable kiosk mode"
389377 msgstr "kiosk ଧାରାକୁ ସକ୍ରିୟ କରନ୍ତୁ"
390378
391 #: ../src/virt-viewer-app.c:2598
379 #: src/virt-viewer-app.c:2850
392380 msgid "Quit on given condition in kiosk mode"
393381 msgstr "kiosk ଧାରାରେ ଦିଆଯାଇଥିବା ସର୍ତ୍ତରେ ବିଦାୟ ନିଅନ୍ତୁ"
394382
395 #: ../src/virt-viewer-app.c:2598
383 #: src/virt-viewer-app.c:2850
396384 msgid "<never|on-disconnect>"
397385 msgstr "<never|on-disconnect>"
398386
399 #: ../src/virt-viewer-app.c:2600
387 #: src/virt-viewer-app.c:2852
400388 msgid "Display verbose information"
401389 msgstr "ଶବ୍ଦାଡ଼ମ୍ବରପୂର୍ଣ୍ଣ ସୂଚନା ଦର୍ଶାନ୍ତୁ"
402390
403 #: ../src/virt-viewer-app.c:2602
391 #: src/virt-viewer-app.c:2854
404392 msgid "Display debugging information"
405393 msgstr "ତ୍ରୁଟିନିବାରଣ ସୂଚନା ଦର୍ଶାନ୍ତୁ"
406394
407 #: ../src/virt-viewer-auth.c:89
395 #: src/virt-viewer-auth.c:89
408396 #, c-format
409397 msgid ""
410398 "Authentication is required for the %s connection to:\n"
413401 "\n"
414402 msgstr ""
415403
416 #: ../src/virt-viewer-auth.c:93
404 #: src/virt-viewer-auth.c:93
417405 #, c-format
418406 msgid "Authentication is required for the %s connection:\n"
419407 msgstr ""
420408
421 #.
422 #. * Local variables:
423 #. * c-indent-level: 4
424 #. * c-basic-offset: 4
425 #. * indent-tabs-mode: nil
426 #. * End:
427 #.
428 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
409 #: src/resources/ui/virt-viewer-auth.ui:7
429410 msgid "Authentication required"
430411 msgstr "ବୈଧିକରଣ ଆବଶ୍ଯକ"
431412
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
413 #: src/resources/ui/virt-viewer-auth.ui:42
433414 msgid "_OK"
434415 msgstr ""
435416
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
437 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
438 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
417 #: src/resources/ui/virt-viewer-auth.ui:71
418 #: src/resources/ui/virt-viewer-guest-details.ui:82
419 #: src/resources/ui/virt-viewer-guest-details.ui:96
420 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
439421 msgid "label"
440422 msgstr "ନାମପଟି"
441423
442 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
424 #: src/resources/ui/virt-viewer-auth.ui:93
443425 msgid "Password:"
444426 msgstr "ପ୍ରବେଶ ସଙ୍କେତ:"
445427
446 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
428 #: src/resources/ui/virt-viewer-auth.ui:105
447429 msgid "Username:"
448430 msgstr "ଚାଳକ ନାମ:"
449431
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
432 #: src/resources/ui/virt-viewer-auth.ui:137
451433 msgid "Show password"
452434 msgstr ""
453435
454 #: ../src/virt-viewer-display-vnc.c:134
436 #: src/virt-viewer-display-vnc.c:130
455437 msgid "VNC does not provide GUID"
456438 msgstr ""
457439
458 #: ../src/virt-viewer-file-transfer-dialog.c:128
440 #: src/virt-viewer-display-vte.c:181
441 msgid "Console support is compiled out!"
442 msgstr ""
443
444 #: src/virt-viewer-file-transfer-dialog.c:124
459445 msgid "File Transfers"
460446 msgstr ""
461447
462 #: ../src/virt-viewer-file-transfer-dialog.c:154
448 #: src/virt-viewer-file-transfer-dialog.c:150
463449 msgid "Transferring 1 file..."
464450 msgstr ""
465451
466 #: ../src/virt-viewer-file-transfer-dialog.c:156
467 #, c-format
468 msgid "Transferring %d file of %d..."
469 msgid_plural "Transferring %d files of %d..."
452 #: src/virt-viewer-file-transfer-dialog.c:152
453 #, c-format
454 msgid "Transferring %u file of %u..."
455 msgid_plural "Transferring %u files of %u..."
470456 msgstr[0] ""
471
472 #: ../src/virt-viewer-file-transfer-dialog.c:228
473 #, c-format
474 msgid "An error caused the following file transfers to fail:%s"
475 msgstr ""
476
477 #: ../src/virt-viewer-main.c:38
457 msgstr[1] ""
458
459 #: src/virt-viewer-file-transfer-dialog.c:225
460 msgid "An error caused the following file transfers to fail:"
461 msgstr ""
462
463 #: src/virt-viewer-main.c:38
478464 msgid "Virt Viewer"
479465 msgstr "Virt ପ୍ରଦର୍ଶିକା"
480466
481 #: ../src/virt-viewer-session-spice.c:704
467 #: src/virt-viewer-session-spice.c:731
482468 msgid "Invalid password"
483469 msgstr ""
484470
485 #. Create the widgets
486 #: ../src/virt-viewer-session-spice.c:802
471 #: src/virt-viewer-session-spice.c:829
487472 msgid "Select USB devices for redirection"
488473 msgstr "ଦିଗ ପରିବର୍ତ୍ତନ ପାଇଁ USB ଉପକରଣଗୁଡ଼ିକୁ ବାଛନ୍ତୁ"
489474
490 #: ../src/virt-viewer-session-spice.c:804
491 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
475 #: src/virt-viewer-session-spice.c:831
476 #: src/resources/ui/virt-viewer-guest-details.ui:23
492477 msgid "_Close"
493478 msgstr ""
494479
495 #: ../src/virt-viewer-session-vnc.c:162
496 #, c-format
497 msgid "Unsupported authentication type %d"
498 msgstr "ଅସମର୍ଥିତ ପ୍ରାଧିକରଣ ପ୍ରକାର %d"
499
500 #: ../src/virt-viewer-vm-connection.c:64
480 #: src/virt-viewer-session-spice.c:1019
481 msgid "Serial"
482 msgstr ""
483
484 #: src/virt-viewer-session-spice.c:1021
485 msgid "QEMU human monitor"
486 msgstr ""
487
488 #: src/virt-viewer-session-spice.c:1023
489 msgid "QEMU debug console"
490 msgstr ""
491
492 #: src/virt-viewer-session-vnc.c:158
493 #, c-format
494 msgid "Unsupported authentication type %u"
495 msgstr ""
496
497 #: src/virt-viewer-vm-connection.c:64
501498 msgid "No running virtual machine found"
502499 msgstr ""
503500
504 #: ../src/virt-viewer-vm-connection.c:93
501 #: src/virt-viewer-vm-connection.c:93
505502 msgid "No virtual machine was chosen"
506503 msgstr ""
507504
508 #: ../src/virt-viewer-window.c:544
505 #: src/virt-viewer-window.c:621
509506 msgid "Ctrl+Alt+_Del"
510507 msgstr "Ctrl+Alt+_Del"
511508
512 #: ../src/virt-viewer-window.c:545
509 #: src/virt-viewer-window.c:622
513510 msgid "Ctrl+Alt+_Backspace"
514511 msgstr "Ctrl+Alt+_Backspace"
515512
516 #: ../src/virt-viewer-window.c:547
513 #: src/virt-viewer-window.c:624
517514 msgid "Ctrl+Alt+F_1"
518515 msgstr "Ctrl+Alt+F_1"
519516
520 #: ../src/virt-viewer-window.c:548
517 #: src/virt-viewer-window.c:625
521518 msgid "Ctrl+Alt+F_2"
522519 msgstr "Ctrl+Alt+F_2"
523520
524 #: ../src/virt-viewer-window.c:549
521 #: src/virt-viewer-window.c:626
525522 msgid "Ctrl+Alt+F_3"
526523 msgstr "Ctrl+Alt+F_3"
527524
528 #: ../src/virt-viewer-window.c:550
525 #: src/virt-viewer-window.c:627
529526 msgid "Ctrl+Alt+F_4"
530527 msgstr "Ctrl+Alt+F_4"
531528
532 #: ../src/virt-viewer-window.c:551
529 #: src/virt-viewer-window.c:628
533530 msgid "Ctrl+Alt+F_5"
534531 msgstr "Ctrl+Alt+F_5"
535532
536 #: ../src/virt-viewer-window.c:552
533 #: src/virt-viewer-window.c:629
537534 msgid "Ctrl+Alt+F_6"
538535 msgstr "Ctrl+Alt+F_6"
539536
540 #: ../src/virt-viewer-window.c:553
537 #: src/virt-viewer-window.c:630
541538 msgid "Ctrl+Alt+F_7"
542539 msgstr "Ctrl+Alt+F_7"
543540
544 #: ../src/virt-viewer-window.c:554
541 #: src/virt-viewer-window.c:631
545542 msgid "Ctrl+Alt+F_8"
546543 msgstr "Ctrl+Alt+F_8"
547544
548 #: ../src/virt-viewer-window.c:555
545 #: src/virt-viewer-window.c:632
549546 msgid "Ctrl+Alt+F_9"
550547 msgstr "Ctrl+Alt+F_9"
551548
552 #: ../src/virt-viewer-window.c:556
549 #: src/virt-viewer-window.c:633
553550 msgid "Ctrl+Alt+F1_0"
554551 msgstr "Ctrl+Alt+F1_0"
555552
556 #: ../src/virt-viewer-window.c:557
553 #: src/virt-viewer-window.c:634
557554 msgid "Ctrl+Alt+F11"
558555 msgstr "Ctrl+Alt+F11"
559556
560 #: ../src/virt-viewer-window.c:558
557 #: src/virt-viewer-window.c:635
561558 msgid "Ctrl+Alt+F12"
562559 msgstr "Ctrl+Alt+F12"
563560
564 #: ../src/virt-viewer-window.c:953
561 #: src/virt-viewer-window.c:637
562 msgid "_PrintScreen"
563 msgstr ""
564
565 #: src/virt-viewer-window.c:1030
565566 #, c-format
566567 msgid "Unable to determine image format for file '%s'"
567568 msgstr ""
568569
569 #: ../src/virt-viewer-window.c:980
570 #: src/virt-viewer-window.c:1053
571 msgid "Save screenshot"
572 msgstr ""
573
574 #: src/virt-viewer-window.c:1057
570575 msgid "_Save"
571576 msgstr ""
572577
573 #: ../src/virt-viewer-window.c:988
578 #: src/virt-viewer-window.c:1065
574579 msgid "Screenshot.png"
575580 msgstr ""
576581
577 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
582 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
578583 msgid "Unknown"
579584 msgstr ""
580585
581 #: ../src/virt-viewer-window.c:1152
586 #: src/virt-viewer-window.c:1237
582587 msgid "Unable to connnect to oVirt"
583588 msgstr ""
584589
585 #: ../src/virt-viewer-window.c:1175
590 #: src/virt-viewer-window.c:1260
586591 msgid "Disconnect"
587592 msgstr "ସଂଯୋଗ ବିଚ୍ଛିନ୍ନ ହୋଇଛି"
588593
589 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
594 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
590595 msgid "USB device selection"
591596 msgstr "USB ଉପକରଣ ଚୟନ"
592597
593 #: ../src/virt-viewer-window.c:1193
598 #: src/virt-viewer-window.c:1278
594599 msgid "Send key combination"
595600 msgstr "କି ଯୁଗଳକୁ ପଠାନ୍ତୁ"
596601
597 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
602 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
598603 msgid "Leave fullscreen"
599604 msgstr "ସମ୍ପୁର୍ଣ୍ଣ ପରଦା ଛାଡ଼ି ଦିଅନ୍ତୁ"
600605
601 #: ../src/virt-viewer-window.c:1279
606 #: src/virt-viewer-window.c:1364
602607 msgid "Ctrl+Alt"
603608 msgstr "Ctrl+Alt"
604609
605 #: ../src/virt-viewer-window.c:1282
610 #: src/virt-viewer-window.c:1367
606611 #, c-format
607612 msgid "(Press %s to release pointer)"
608613 msgstr "(ସୂଚକକୁ ଛାଡ଼ିବା ପାଇଁ %s କୁ ଦବାନ୍ତୁ)"
609614
610 #. translators:
611 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
612 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
613 #.
614 #: ../src/virt-viewer-window.c:1293
615 #: src/virt-viewer-window.c:1378
615616 #, c-format
616617 msgid "%s%s%s - %s"
617618 msgstr "%s%s%s - %s"
618619
619 #. translators: <space>
620 #: ../src/virt-viewer-window.c:1297
620 #: src/virt-viewer-window.c:1382
621621 msgid " "
622622 msgstr " "
623623
624 #: ../src/virt-viewer-file.c:862
624 #: src/virt-viewer-file.c:875
625625 #, c-format
626626 msgid ""
627627 "At least %s version %s is required to setup this connection, see %s for "
628628 "details"
629629 msgstr ""
630630
631 #: ../src/virt-viewer-file.c:870
631 #: src/virt-viewer-file.c:883
632632 #, c-format
633633 msgid "At least %s version %s is required to setup this connection"
634634 msgstr "ଏହି ସଂଯୋଗକୁ ବ୍ୟବସ୍ଥା କରିବା ପାଇଁ ଅତିକମରେ %s ସଂସ୍କରଣ %s ଆବଶ୍ୟକ କରିଥାଏ"
635635
636 #: ../src/virt-viewer.c:133
636 #: src/virt-viewer.c:131
637637 msgid "Direct connection with no automatic tunnels"
638638 msgstr "ସ୍ୱୟଂଚାଳିତ ଟନେଲ ବିନା ସିଧାସଳଖ ସଂଯୋଗ"
639639
640 #: ../src/virt-viewer.c:135
640 #: src/virt-viewer.c:133
641641 msgid "Attach to the local display using libvirt"
642642 msgstr "libvirt ବ୍ୟବହାର କରି ସ୍ଥାନୀୟ ପ୍ରଦର୍ଶନୀ ସହିତ ସଂଲଗ୍ନ ହୋଇଛି"
643643
644 #: ../src/virt-viewer.c:137
644 #: src/virt-viewer.c:135
645645 msgid "Connect to hypervisor"
646646 msgstr "hypervisor ସହିତ ସଂଯୋଗ କରନ୍ତୁ"
647647
648 #: ../src/virt-viewer.c:139
648 #: src/virt-viewer.c:137
649649 msgid "Wait for domain to start"
650650 msgstr "ଡମେନକୁ ଆରମ୍ଭ ହେବା ପାଇଁ ଅପେକ୍ଷା କରନ୍ତୁ"
651651
652 #: ../src/virt-viewer.c:141
652 #: src/virt-viewer.c:139
653653 msgid "Reconnect to domain upon restart"
654654 msgstr "ପୁନଃଚାଳନ ପରେ ଡମେନ ସହିତ ପୁଣି ସଂଯୁକ୍ତ ହୋଇଛି"
655655
656 #: ../src/virt-viewer.c:143
656 #: src/virt-viewer.c:141
657657 msgid "Select the virtual machine only by its name"
658658 msgstr ""
659659
660 #: ../src/virt-viewer.c:145
660 #: src/virt-viewer.c:143
661661 msgid "Select the virtual machine only by its id"
662662 msgstr ""
663663
664 #: ../src/virt-viewer.c:147
664 #: src/virt-viewer.c:145
665665 msgid "Select the virtual machine only by its uuid"
666666 msgstr ""
667667
668 #: ../src/virt-viewer.c:154
668 #: src/virt-viewer.c:152
669669 msgid "Virtual machine graphical console"
670670 msgstr ""
671671
672 #: ../src/virt-viewer.c:173
672 #: src/virt-viewer.c:171
673673 #, c-format
674674 msgid ""
675675 "\n"
677677 "\n"
678678 msgstr ""
679679
680 #: ../src/virt-viewer.c:185
680 #: src/virt-viewer.c:183
681681 #, c-format
682682 msgid ""
683683 "\n"
685685 "\n"
686686 msgstr ""
687687
688 #: ../src/virt-viewer.c:300
688 #: src/virt-viewer.c:296
689689 msgid "Waiting for guest domain to re-start"
690690 msgstr "ପୁନଚାଳନ ପାଇଁ ଅତିଥି ଡମେନକୁ ଅପେକ୍ଷା କରିଛି"
691691
692 #: ../src/virt-viewer.c:554
692 #: src/virt-viewer.c:550
693693 #, c-format
694694 msgid "Cannot determine the graphic type for the guest %s"
695695 msgstr "ଅତିଥି %s ପାଇଁ ଆଲେଖିକ ପ୍ରକାରକୁ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ"
696696
697 #: ../src/virt-viewer.c:603
697 #: src/virt-viewer.c:599
698698 #, c-format
699699 msgid "Cannot determine the host for the guest %s"
700700 msgstr "ଅତିଥି %s ପାଇଁ ହୋଷ୍ଟ ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ"
701701
702 #: ../src/virt-viewer.c:631
702 #: src/virt-viewer.c:627
703703 #, c-format
704704 msgid "Guest '%s' is not reachable"
705705 msgstr ""
706706
707 #: ../src/virt-viewer.c:860
707 #: src/virt-viewer.c:856
708708 #, c-format
709709 msgid "Virtual machine %s is not running"
710710 msgstr ""
711711
712 #: ../src/virt-viewer.c:884
712 #: src/virt-viewer.c:881
713713 msgid "Waiting for libvirt to start"
714714 msgstr "libvirt କୁ ଆରମ୍ଭ ହେବା ପାଇଁ ଅପେକ୍ଷା କରୁଅଛି"
715715
716 #: ../src/virt-viewer.c:888
716 #: src/virt-viewer.c:885
717717 msgid "Finding guest domain"
718718 msgstr "ଅତିଥି ଡମେନକୁ ଖୋଜୁଅଛି"
719719
720 #: ../src/virt-viewer.c:892
720 #: src/virt-viewer.c:889
721721 msgid "Waiting for guest domain to be created"
722722 msgstr "ନିର୍ମାଣ କରିବା ପାଇଁ ଅତିଥି ଡମେନକୁ ଅପେକ୍ଷା କରିଛି"
723723
724 #: ../src/virt-viewer.c:918
724 #: src/virt-viewer.c:921
725725 msgid "Checking guest domain status"
726726 msgstr "ଅତିଥି ଡମେନ ସ୍ଥିତିକୁ ଯାଞ୍ଚ କରୁଅଛି"
727727
728 #: ../src/virt-viewer.c:921
728 #: src/virt-viewer.c:924
729729 msgid "Cannot get guest state"
730730 msgstr ""
731731
732 #: ../src/virt-viewer.c:927
732 #: src/virt-viewer.c:930
733733 msgid "Waiting for guest domain to start"
734734 msgstr "ଅତିଥି ଡମେନ ଆରମ୍ଭ ହେବାକୁ ଯାଉଛି"
735735
736 #: ../src/virt-viewer.c:1040
736 #: src/virt-viewer.c:1044
737737 #, c-format
738738 msgid "Unable to connect to libvirt with URI: %s."
739739 msgstr ""
740740
741 #: ../src/virt-viewer.c:1041
741 #: src/virt-viewer.c:1045
742742 msgid "[none]"
743743 msgstr "[କିଛି ନାହିଁ]"
744744
745 #: ../src/virt-viewer.c:1048
745 #: src/virt-viewer.c:1052
746746 msgid "Authentication failed."
747747 msgstr ""
748748
749 #: ../src/virt-viewer.c:1108
749 #: src/virt-viewer.c:1112
750750 msgid "Failed to connect: "
751751 msgstr ""
752752
753 #.
754 #. * Local variables:
755 #. * c-indent-level: 4
756 #. * c-basic-offset: 4
757 #. * indent-tabs-mode: nil
758 #. * End:
759 #.
760 #: ../src/resources/ui/virt-viewer.ui.h:1
753 #: src/resources/ui/virt-viewer.ui:28
761754 msgid "_File"
762755 msgstr "ଫାଇଲ (_F)"
763756
764 #: ../src/resources/ui/virt-viewer.ui.h:2
757 #: src/resources/ui/virt-viewer.ui:41
765758 msgid "_Screenshot"
766759 msgstr ""
767760
768 #: ../src/resources/ui/virt-viewer.ui.h:3
761 #: src/resources/ui/virt-viewer.ui:52
769762 msgid "_USB device selection"
770763 msgstr ""
771764
772 #: ../src/resources/ui/virt-viewer.ui.h:4
765 #: src/resources/ui/virt-viewer.ui:62
773766 msgid "Smartcard insertion"
774767 msgstr "ସ୍ମାର୍ଟକାର୍ଡ ଭର୍ତ୍ତିକରିବା"
775768
776 #: ../src/resources/ui/virt-viewer.ui.h:5
769 #: src/resources/ui/virt-viewer.ui:72
777770 msgid "Smartcard removal"
778771 msgstr "ସ୍ମାର୍ଟକାର୍ଡ ବାହାର କରିବା "
779772
780 #: ../src/resources/ui/virt-viewer.ui.h:6
773 #: src/resources/ui/virt-viewer.ui:80
781774 msgid "_Change CD"
782775 msgstr ""
783776
784 #: ../src/resources/ui/virt-viewer.ui.h:7
777 #: src/resources/ui/virt-viewer.ui:90
785778 msgid "_Preferences"
786779 msgstr ""
787780
788 #: ../src/resources/ui/virt-viewer.ui.h:8
781 #: src/resources/ui/virt-viewer.ui:103
789782 msgid "_Quit"
790783 msgstr ""
791784
792 #: ../src/resources/ui/virt-viewer.ui.h:9
785 #: src/resources/ui/virt-viewer.ui:119
786 msgid "_Machine"
787 msgstr ""
788
789 #: src/resources/ui/virt-viewer.ui:129
790 msgid "_Pause"
791 msgstr ""
792
793 #: src/resources/ui/virt-viewer.ui:144
794 msgid "_Reset"
795 msgstr ""
796
797 #: src/resources/ui/virt-viewer.ui:153
798 msgid "_Power down"
799 msgstr ""
800
801 #: src/resources/ui/virt-viewer.ui:167
793802 msgid "_View"
794803 msgstr "ଦୃଶ୍ଯ (_V)"
795804
796 #: ../src/resources/ui/virt-viewer.ui.h:10
805 #: src/resources/ui/virt-viewer.ui:180
797806 msgid "_Full screen"
798807 msgstr ""
799808
800 #: ../src/resources/ui/virt-viewer.ui.h:11
809 #: src/resources/ui/virt-viewer.ui:191
801810 msgid "_Zoom"
802811 msgstr "ବଡ଼ କରନ୍ତୁ (_Z)"
803812
804 #: ../src/resources/ui/virt-viewer.ui.h:12
813 #: src/resources/ui/virt-viewer.ui:201
805814 msgid "Zoom _In"
806815 msgstr ""
807816
808 #: ../src/resources/ui/virt-viewer.ui.h:13
817 #: src/resources/ui/virt-viewer.ui:212
809818 msgid "Zoom _Out"
810819 msgstr ""
811820
812 #: ../src/resources/ui/virt-viewer.ui.h:14
821 #: src/resources/ui/virt-viewer.ui:229
813822 msgid "_Normal Size"
814823 msgstr ""
815824
816 #: ../src/resources/ui/virt-viewer.ui.h:15
825 #: src/resources/ui/virt-viewer.ui:246
817826 msgid "_Displays"
818827 msgstr ""
819828
820 #: ../src/resources/ui/virt-viewer.ui.h:16
829 #: src/resources/ui/virt-viewer.ui:255
821830 msgid "Release cursor"
822831 msgstr "ସୂଚକକୁ ଛାଡ଼ନ୍ତୁ"
823832
824 #: ../src/resources/ui/virt-viewer.ui.h:17
833 #: src/resources/ui/virt-viewer.ui:270
825834 msgid "_Send key"
826835 msgstr "କି ପଠାନ୍ତୁ (_S)"
827836
828 #: ../src/resources/ui/virt-viewer.ui.h:18
837 #: src/resources/ui/virt-viewer.ui:279
829838 msgid "_Help"
830839 msgstr "ସହାୟତା (_H)"
831840
832 #: ../src/resources/ui/virt-viewer.ui.h:19
841 #: src/resources/ui/virt-viewer.ui:290
833842 msgid "_Guest Details"
834843 msgstr ""
835844
836 #: ../src/resources/ui/virt-viewer.ui.h:20
845 #: src/resources/ui/virt-viewer.ui:297
837846 msgid "_About"
838847 msgstr ""
839848
840 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
849 #: src/resources/ui/virt-viewer-guest-details.ui:7
841850 msgid "Guest Details"
842851 msgstr ""
843852
844 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
853 #: src/resources/ui/virt-viewer-guest-details.ui:56
845854 msgid "Name:"
846855 msgstr ""
847856
848 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
857 #: src/resources/ui/virt-viewer-guest-details.ui:68
849858 msgid "GUID:"
850859 msgstr ""
851860
852 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
861 #: src/resources/ui/virt-viewer-vm-connection.ui:7
853862 msgid "Choose a virtual machine"
854863 msgstr ""
855864
856 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
865 #: src/resources/ui/virt-viewer-vm-connection.ui:96
857866 msgid "Available virtual machines"
858867 msgstr ""
859868
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
869 #: src/resources/ui/virt-viewer-preferences.ui:8
861870 msgid "Preferences"
862871 msgstr ""
863872
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
873 #: src/resources/ui/virt-viewer-preferences.ui:48
865874 msgid "Folder sharing"
866875 msgstr ""
867876
868 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
877 #: src/resources/ui/virt-viewer-preferences.ui:70
869878 msgid "Share folder"
870879 msgstr ""
871880
872 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
881 #: src/resources/ui/virt-viewer-preferences.ui:82
873882 msgid "Read-only"
874883 msgstr ""
875884
876 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
885 #: src/resources/ui/virt-viewer-preferences.ui:96
886 msgid "Share clipboard"
887 msgstr ""
888
889 #: src/resources/ui/virt-viewer-preferences.ui:132
877890 msgid "Spice"
878891 msgstr ""
892
893 #~ msgid "virt-manager.org"
894 #~ msgstr "virt-manager.org"
Binary diff not shown
+269
-253
po/pa.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Jaswinder Singh <jsingh@redhat.com>, 2010,2012
77 msgid ""
88 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
12 "PO-Revision-Date: 2015-02-20 08:10-0500\n"
9 "Project-Id-Version: virt-viewer 9.0\n"
10 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
11 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
12 "PO-Revision-Date: 2015-02-20 08:10+0000\n"
1313 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1414 "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/virt-"
1515 "viewer/language/pa/)\n"
1818 "Content-Type: text/plain; charset=UTF-8\n"
1919 "Content-Transfer-Encoding: 8bit\n"
2020 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21 "X-Generator: Zanata 3.9.6\n"
22
23 #: ../data/remote-viewer.appdata.xml.in.h:1
24 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
21 "X-Generator: Zanata 4.6.2\n"
22
23 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
24 #: src/remote-viewer-main.c:39
2525 msgid "Remote Viewer"
2626 msgstr "ਰਿਮੋਟ ਦਰਸ਼ਕ"
2727
28 #: ../data/remote-viewer.appdata.xml.in.h:2
28 #: data/remote-viewer.appdata.xml.in:7
2929 msgid "Remotely access virtual machines"
3030 msgstr ""
3131
32 #: ../data/remote-viewer.appdata.xml.in.h:3
32 #: data/remote-viewer.appdata.xml.in:9
3333 msgid ""
3434 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3535 "time it supports guest OS using the VNC or SPICE protocols. Further "
3838 "using SSL/TLS encryption."
3939 msgstr ""
4040
41 #: ../data/remote-viewer.desktop.in.h:2
41 #: data/remote-viewer.desktop.in:4
4242 msgid "Access remote desktops"
4343 msgstr "ਦੁਰੇਡੇ ਡੈਸਕਟਾਪਾਂ ਵਿੱਚ ਦਖਲ ਦਿਓ"
4444
45 #: ../data/virt-viewer-mime.xml.in.h:1
46 msgid "Virt-Viewer connection file"
47 msgstr "Virt-Viewer ਸੰਪਰਕ ਫਾਈਲ"
48
49 #: ../src/remote-viewer-iso-list-dialog.c:160
45 #: src/remote-viewer-iso-list-dialog.c:156
5046 msgid "Failed to fetch CD names"
5147 msgstr ""
5248
53 #: ../src/remote-viewer-iso-list-dialog.c:212
49 #: src/remote-viewer-iso-list-dialog.c:205
5450 msgid "<b>Loading...</b>"
5551 msgstr ""
5652
57 #: ../src/remote-viewer-iso-list-dialog.c:285
53 #: src/remote-viewer-iso-list-dialog.c:276
5854 msgid "Refresh"
5955 msgstr ""
6056
61 #: ../src/remote-viewer-iso-list-dialog.c:286
57 #: src/remote-viewer-iso-list-dialog.c:277
6258 msgid "Close"
6359 msgstr ""
6460
65 #: ../src/remote-viewer-iso-list-dialog.c:306
61 #: src/remote-viewer-iso-list-dialog.c:297
6662 msgid "Unspecified error"
6763 msgstr ""
6864
69 #: ../src/remote-viewer-iso-list-dialog.c:328
65 #: src/remote-viewer-iso-list-dialog.c:318
7066 msgid "Failed to change CD"
7167 msgstr ""
7268
73 #: ../src/remote-viewer-iso-list-dialog.c:380
69 #: src/remote-viewer-iso-list-dialog.c:370
7470 msgid "Change CD"
7571 msgstr ""
7672
77 #: ../src/remote-viewer.c:118
73 #: src/remote-viewer.c:116
7874 msgid "Set window title"
7975 msgstr "ਵਿੰਡੋ ਦਾ ਸਿਰਲੇਖ ਨਿਰਧਾਰਿਤ ਕਰੋ"
8076
81 #: ../src/remote-viewer.c:125
77 #: src/remote-viewer.c:123
8278 msgid "Remote viewer client"
8379 msgstr ""
8480
85 #: ../src/remote-viewer.c:150
86 #, c-format
81 #: src/remote-viewer.c:148
8782 msgid ""
8883 "\n"
8984 "Error: can't handle multiple URIs\n"
9085 "\n"
9186 msgstr ""
9287
93 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
88 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9489 #, c-format
9590 msgid "Run '%s --help' to see a full list of available command line options\n"
9691 msgstr ""
9792
98 #: ../src/remote-viewer.c:435
93 #: src/remote-viewer.c:429
9994 msgid "failed to parse ovirt uri"
10095 msgstr ""
10196
102 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
97 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10398 msgid "Authentication was cancelled"
10499 msgstr ""
105100
106 #: ../src/remote-viewer.c:480
101 #: src/remote-viewer.c:472
107102 #, c-format
108103 msgid "oVirt VM %s is not running"
109104 msgstr ""
110105
111 #: ../src/remote-viewer.c:494
106 #: src/remote-viewer.c:486
112107 #, c-format
113108 msgid "oVirt VM %s has no display"
114109 msgstr ""
115110
116 #: ../src/remote-viewer.c:520
111 #: src/remote-viewer.c:512
117112 #, c-format
118113 msgid "oVirt VM %s has no host information"
119114 msgstr ""
120115
121 #: ../src/remote-viewer.c:531
122 #, c-format
123 msgid "oVirt VM %s has unknown display type: %d"
124 msgstr ""
125
126 #: ../src/remote-viewer.c:713
116 #: src/remote-viewer.c:523
117 #, c-format
118 msgid "oVirt VM %s has unknown display type: %u"
119 msgstr ""
120
121 #: src/remote-viewer.c:690
122 msgid "Couldn't open oVirt session: "
123 msgstr ""
124
125 #: src/remote-viewer.c:718
127126 msgid "Failed to initiate connection"
128127 msgstr "ਸੰਪਰਕ ਚਾਲੂ ਕਰਨ ਵਿੱਚ ਅਸਫਲ"
129128
130 #: ../src/remote-viewer.c:742
129 #: src/remote-viewer.c:747
131130 msgid "No connection was chosen"
132131 msgstr ""
133132
134 #: ../src/remote-viewer.c:759
133 #: src/remote-viewer.c:764
135134 msgid "Failed to read stdin: "
136135 msgstr ""
137136
138 #: ../src/remote-viewer.c:776
137 #: src/remote-viewer.c:781
139138 #, c-format
140139 msgid "Invalid file %s: "
141140 msgstr ""
142141
143 #: ../src/remote-viewer.c:786
142 #: src/remote-viewer.c:791
144143 msgid "Cannot determine the connection type from URI"
145144 msgstr "URI ਤੋਂ ਕੁਨੈਕਸ਼ਨ ਜਾਣਕਾਰੀ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕਰ ਸਕਦਾ"
146145
147 #: ../src/remote-viewer.c:792
148 msgid "Couldn't open oVirt session: "
149 msgstr ""
150
151 #: ../src/remote-viewer.c:815
146 #: src/remote-viewer.c:810
152147 #, c-format
153148 msgid "Unable to connect: %s"
154149 msgstr ""
155150
156 #.
157 #. * Local variables:
158 #. * c-indent-level: 4
159 #. * c-basic-offset: 4
160 #. * indent-tabs-mode: nil
161 #. * End:
162 #.
163 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
151 #: src/resources/ui/remote-viewer-connect.ui:6
164152 msgid "Connection details"
165153 msgstr "ਕੁਨੈਕਸ਼ਨ ਵੇਰਵੇ"
166154
167 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
155 #: src/resources/ui/remote-viewer-connect.ui:24
168156 msgid "Connection _Address"
169157 msgstr ""
170158
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
159 #: src/resources/ui/remote-viewer-connect.ui:54
172160 msgid "For example, spice://foo.example.org:5900"
173161 msgstr ""
174162
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
163 #: src/resources/ui/remote-viewer-connect.ui:78
176164 msgid "Recent connections"
177165 msgstr ""
178166
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
180 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
181 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
182 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
167 #: src/resources/ui/remote-viewer-connect.ui:120
168 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
169 #: src/resources/ui/virt-viewer-vm-connection.ui:24
170 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
183171 msgid "_Cancel"
184172 msgstr ""
185173
186 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
187 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
174 #: src/resources/ui/remote-viewer-connect.ui:134
175 #: src/resources/ui/virt-viewer-vm-connection.ui:38
188176 msgid "C_onnect"
189177 msgstr ""
190178
191 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
179 #: src/resources/ui/remote-viewer-iso-list.ui:28
192180 msgid "Loading..."
193181 msgstr ""
194182
195 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
183 #: src/resources/ui/remote-viewer-iso-list.ui:78
196184 msgid "Select ISO"
197185 msgstr ""
198186
199 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
187 #: src/resources/ui/remote-viewer-iso-list.ui:116
200188 msgid "Selected"
201189 msgstr ""
202190
203 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
204 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
191 #: src/resources/ui/remote-viewer-iso-list.ui:129
192 #: src/resources/ui/virt-viewer-vm-connection.ui:72
205193 msgid "Name"
206194 msgstr ""
207195
208 #: ../src/resources/ui/virt-viewer-about.ui.h:1
196 #: src/resources/ui/virt-viewer-about.ui:7
209197 msgid "About Virt-Viewer"
210198 msgstr ""
211199
212 #: ../src/resources/ui/virt-viewer-about.ui.h:2
200 #: src/resources/ui/virt-viewer-about.ui:16
213201 msgid ""
214202 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
215203 "Copyright (C) 2007-2014 Red Hat, Inc."
216204 msgstr ""
217205
218 #: ../src/resources/ui/virt-viewer-about.ui.h:4
206 #: src/resources/ui/virt-viewer-about.ui:18
219207 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
220208 msgstr "ਰਿਮੋਟ ਡੈਸਕਟਾਪ ਕਲਾਈਂਟ GTK-VNC, SPICE-GTK ਅਤੇ libvirt ਨਾਲ ਬਣਾਇਆ ਗਿਆ ਹੈ"
221209
222 #: ../src/resources/ui/virt-viewer-about.ui.h:5
223 msgid "virt-manager.org"
224 msgstr "virt-manager.org"
225
226 #: ../src/resources/ui/virt-viewer-about.ui.h:6
210 #: src/resources/ui/virt-viewer-about.ui:20
211 msgid "gitlab.com/virt-viewer/virt-viewer"
212 msgstr ""
213
214 #: src/resources/ui/virt-viewer-about.ui:21
227215 msgid ""
228216 "This program is free software; you can redistribute it and/or modify\n"
229217 "it under the terms of the GNU General Public License as published by\n"
253241 "ਮਿਲਣੀ ਚਾਹੀਦੀ ਹੈ; ਜੇ ਨਹੀਂ, ਤਾਂ ਫਰੀ ਸਾਫਟਵੇਅਰ ਫਾਈਊਨਡੇਸ਼ਨ,\n"
254242 "Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ਨੂੰ ਲਿਖੋ\n"
255243
256 #: ../src/resources/ui/virt-viewer-about.ui.h:20
244 #: src/resources/ui/virt-viewer-about.ui:38
257245 msgid "The Fedora Translation Team"
258246 msgstr "ਫੇਡੋਰਾ ਅਨੁਵਾਦ ਟੀਮ"
259247
260 #: ../src/virt-viewer-app.c:459
248 #: src/virt-viewer-app.c:594
261249 msgid "Do you want to close the session?"
262250 msgstr "ਕੀ ਤੁਸੀਂ ਸੈਸ਼ਨ ਬੰਦ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?"
263251
264 #: ../src/virt-viewer-app.c:461
252 #: src/virt-viewer-app.c:596
265253 msgid "Do not ask me again"
266254 msgstr "ਮੈਨੂੰ ਦੁਬਾਰਾ ਨਾ ਪੁੱਛਿਓ"
267255
268 #: ../src/virt-viewer-app.c:655
256 #: src/virt-viewer-app.c:767
269257 #, c-format
270258 msgid "Address is too long for unix socket_path: %s"
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:665
261 #: src/virt-viewer-app.c:777
274262 #, c-format
275263 msgid "Creating unix socket failed: %s"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:671
266 #: src/virt-viewer-app.c:783
279267 #, c-format
280268 msgid "Connecting to unix socket failed: %s"
281269 msgstr ""
282270
283 #: ../src/virt-viewer-app.c:955
271 #: src/virt-viewer-app.c:1077
284272 #, c-format
285273 msgid "Waiting for display %d..."
286274 msgstr "ਝਲਕ %d ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ..."
287275
288 #: ../src/virt-viewer-app.c:1062
276 #: src/virt-viewer-app.c:1193
289277 #, c-format
290278 msgid "Unsupported graphic type '%s'"
291279 msgstr ""
292280
293 #: ../src/virt-viewer-app.c:1146
281 #: src/virt-viewer-app.c:1277
294282 msgid "Connect to ssh failed."
295283 msgstr "ssh ਨਾਲ ਜੁੜਨ ਤੋਂ ਅਸਫਲ ਹੋਇਆ।"
296284
297 #: ../src/virt-viewer-app.c:1161
285 #: src/virt-viewer-app.c:1292
298286 #, c-format
299287 msgid "Can't connect to channel: %s"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1163
290 #: src/virt-viewer-app.c:1294
303291 msgid "only SSH or unix socket connection supported."
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1176
294 #: src/virt-viewer-app.c:1311
307295 msgid "Connect to channel unsupported."
308296 msgstr "ਚੈਨਲ ਨਾਲ ਜੁੜਨ ਨੂੰ ਸਮਰਥਨ ਨਹੀਂ ਹੈ।"
309297
310 #: ../src/virt-viewer-app.c:1238
298 #: src/virt-viewer-app.c:1376
311299 msgid "Display can only be attached through libvirt with --attach"
312300 msgstr ""
313301
314 #: ../src/virt-viewer-app.c:1263
302 #: src/virt-viewer-app.c:1401
315303 msgid "Connecting to graphic server"
316304 msgstr "ਗਰਾਫਿਕਸ ਸਰਵਰ ਨਾਲ ਜੁੜ ਰਿਹਾ ਹੈ"
317305
318 #: ../src/virt-viewer-app.c:1362
306 #: src/virt-viewer-app.c:1500
319307 msgid "Guest domain has shutdown"
320308 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਸ਼ੱਟ-ਡਾਊਨ ਹੋ ਗਿਆ ਹੈ"
321309
322 #: ../src/virt-viewer-app.c:1423
310 #: src/virt-viewer-app.c:1561
323311 msgid "Connected to graphic server"
324312 msgstr "ਗਰਾਫਿਕਸ ਸਰਵਰ ਨਾਲ ਜੁੜ ਗਿਆ"
325313
326 #: ../src/virt-viewer-app.c:1452
314 #: src/virt-viewer-app.c:1590
327315 #, c-format
328316 msgid "Unable to connect to the graphic server %s"
329317 msgstr "ਗਰਾਫਿਕਸ ਸਰਵਰ %s ਨਾਲ ਜੁੜਨ ਤੋਂ ਅਸਮਰਥ"
330318
331 #: ../src/virt-viewer-app.c:1478
319 #: src/virt-viewer-app.c:1616
332320 #, c-format
333321 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1492
324 #: src/virt-viewer-app.c:1630
337325 #, c-format
338326 msgid "Unable to authenticate with remote desktop server: %s"
339327 msgstr "ਰਿਮੋਟ ਸਰਵਰ ਨਾਲ ਪ੍ਰਮਾਣਿਤ ਕਰਨ ਤੋਂ ਅਸਮਰਥ: %s"
340328
341 #: ../src/virt-viewer-app.c:1500
329 #: src/virt-viewer-app.c:1638
342330 #, c-format
343331 msgid "USB redirection error: %s"
344332 msgstr "USB ਰੀਡਾਇਰੈਕਸ਼ਨ ਗਲਤੀ: %s"
345333
346 #: ../src/virt-viewer-app.c:1834
334 #: src/virt-viewer-app.c:2026
347335 #, c-format
348336 msgid "Zoom level must be within %d-%d\n"
349337 msgstr "ਜ਼ੂਮ ਪੱਧਰ %d-%d ਵਿਚਕਾਰ ਹੋਣਾ ਜਰੂਰੀ ਹੈ\n"
350338
351 #: ../src/virt-viewer-app.c:1887
339 #: src/virt-viewer-app.c:2081
352340 #, c-format
353341 msgid "%s\n"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:1897
344 #: src/virt-viewer-app.c:2091
357345 #, c-format
358346 msgid "%s version %s"
359347 msgstr ""
360348
361 #: ../src/virt-viewer-app.c:2321
349 #: src/virt-viewer-app.c:2545
362350 #, c-format
363351 msgid "Display _%d"
364352 msgstr ""
365353
366 #: ../src/virt-viewer-app.c:2577
354 #: src/virt-viewer-app.c:2829
367355 #, c-format
368356 msgid "Invalid kiosk-quit argument: %s"
369357 msgstr "ਅਯੋਗ kiosk-quit ਆਰਗੂਮੈਂਟ: %s"
370358
371 #: ../src/virt-viewer-app.c:2588
359 #: src/virt-viewer-app.c:2840
372360 msgid "Display version information"
373361 msgstr "ਸੰਸਕਰਣ ਜਾਣਕਾਰੀ ਵਿਖਾਓ"
374362
375 #: ../src/virt-viewer-app.c:2590
363 #: src/virt-viewer-app.c:2842
376364 msgid "Zoom level of window, in percentage"
377365 msgstr "ਵਿੰਡੋ ਦਾ ਜ਼ੂਮ ਪੱਧਰ, ਪ੍ਰਤੀਸ਼ਤ ਵਿੱਚ"
378366
379 #: ../src/virt-viewer-app.c:2592
367 #: src/virt-viewer-app.c:2844
380368 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2594
371 #: src/virt-viewer-app.c:2846
384372 msgid "Customise hotkeys"
385373 msgstr "hotkeys ਚੁਣਿੰਦਾਪਨ ਕਰੋ"
386374
387 #: ../src/virt-viewer-app.c:2596
375 #: src/virt-viewer-app.c:2848
388376 msgid "Enable kiosk mode"
389377 msgstr "kiosk ਮੋਡ ਯੋਗ ਕਰੋ"
390378
391 #: ../src/virt-viewer-app.c:2598
379 #: src/virt-viewer-app.c:2850
392380 msgid "Quit on given condition in kiosk mode"
393381 msgstr "kiosk ਮੋਡ ਵਿੱਚ ਦਿੱਤੀ ਗਈ ਸਥਿਤੀ ਆਉਣ ਤੇ ਛੱਡ ਦਿਓ"
394382
395 #: ../src/virt-viewer-app.c:2598
383 #: src/virt-viewer-app.c:2850
396384 msgid "<never|on-disconnect>"
397385 msgstr "<never|on-disconnect>"
398386
399 #: ../src/virt-viewer-app.c:2600
387 #: src/virt-viewer-app.c:2852
400388 msgid "Display verbose information"
401389 msgstr "ਵਰਬੋਜ਼ ਜਾਣਕਾਰੀ ਵਿਖਾਓ"
402390
403 #: ../src/virt-viewer-app.c:2602
391 #: src/virt-viewer-app.c:2854
404392 msgid "Display debugging information"
405393 msgstr "ਡੀਬੱਗਿੰਗ ਜਾਣਕਾਰੀ ਵਿਖਾਓ"
406394
407 #: ../src/virt-viewer-auth.c:89
395 #: src/virt-viewer-auth.c:89
408396 #, c-format
409397 msgid ""
410398 "Authentication is required for the %s connection to:\n"
413401 "\n"
414402 msgstr ""
415403
416 #: ../src/virt-viewer-auth.c:93
404 #: src/virt-viewer-auth.c:93
417405 #, c-format
418406 msgid "Authentication is required for the %s connection:\n"
419407 msgstr ""
420408
421 #.
422 #. * Local variables:
423 #. * c-indent-level: 4
424 #. * c-basic-offset: 4
425 #. * indent-tabs-mode: nil
426 #. * End:
427 #.
428 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
409 #: src/resources/ui/virt-viewer-auth.ui:7
429410 msgid "Authentication required"
430411 msgstr "ਪ੍ਰਮਾਣਿਕਤਾ ਲੋੜੀਂਦੀ ਹੈ"
431412
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
413 #: src/resources/ui/virt-viewer-auth.ui:42
433414 msgid "_OK"
434415 msgstr ""
435416
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
437 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
438 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
417 #: src/resources/ui/virt-viewer-auth.ui:71
418 #: src/resources/ui/virt-viewer-guest-details.ui:82
419 #: src/resources/ui/virt-viewer-guest-details.ui:96
420 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
439421 msgid "label"
440422 msgstr "ਲੇਬਲ"
441423
442 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
424 #: src/resources/ui/virt-viewer-auth.ui:93
443425 msgid "Password:"
444426 msgstr "ਗੁਪਤ-ਸ਼ਬਦ:"
445427
446 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
428 #: src/resources/ui/virt-viewer-auth.ui:105
447429 msgid "Username:"
448430 msgstr "ਯੂਜ਼ਰ ਨਾਂ:"
449431
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
432 #: src/resources/ui/virt-viewer-auth.ui:137
451433 msgid "Show password"
452434 msgstr ""
453435
454 #: ../src/virt-viewer-display-vnc.c:134
436 #: src/virt-viewer-display-vnc.c:130
455437 msgid "VNC does not provide GUID"
456438 msgstr ""
457439
458 #: ../src/virt-viewer-file-transfer-dialog.c:128
440 #: src/virt-viewer-display-vte.c:181
441 msgid "Console support is compiled out!"
442 msgstr ""
443
444 #: src/virt-viewer-file-transfer-dialog.c:124
459445 msgid "File Transfers"
460446 msgstr ""
461447
462 #: ../src/virt-viewer-file-transfer-dialog.c:154
448 #: src/virt-viewer-file-transfer-dialog.c:150
463449 msgid "Transferring 1 file..."
464450 msgstr ""
465451
466 #: ../src/virt-viewer-file-transfer-dialog.c:156
467 #, c-format
468 msgid "Transferring %d file of %d..."
469 msgid_plural "Transferring %d files of %d..."
452 #: src/virt-viewer-file-transfer-dialog.c:152
453 #, c-format
454 msgid "Transferring %u file of %u..."
455 msgid_plural "Transferring %u files of %u..."
470456 msgstr[0] ""
471
472 #: ../src/virt-viewer-file-transfer-dialog.c:228
473 #, c-format
474 msgid "An error caused the following file transfers to fail:%s"
475 msgstr ""
476
477 #: ../src/virt-viewer-main.c:38
457 msgstr[1] ""
458
459 #: src/virt-viewer-file-transfer-dialog.c:225
460 msgid "An error caused the following file transfers to fail:"
461 msgstr ""
462
463 #: src/virt-viewer-main.c:38
478464 msgid "Virt Viewer"
479465 msgstr "Virt ਝਲਕਾਰਾ"
480466
481 #: ../src/virt-viewer-session-spice.c:704
467 #: src/virt-viewer-session-spice.c:731
482468 msgid "Invalid password"
483469 msgstr ""
484470
485 #. Create the widgets
486 #: ../src/virt-viewer-session-spice.c:802
471 #: src/virt-viewer-session-spice.c:829
487472 msgid "Select USB devices for redirection"
488473 msgstr "ਰੀਡਾਇਰੈਕਸ਼ਨ ਲਈ USB ਜੰਤਰ ਚੁਣੋ"
489474
490 #: ../src/virt-viewer-session-spice.c:804
491 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
475 #: src/virt-viewer-session-spice.c:831
476 #: src/resources/ui/virt-viewer-guest-details.ui:23
492477 msgid "_Close"
493478 msgstr ""
494479
495 #: ../src/virt-viewer-session-vnc.c:162
496 #, c-format
497 msgid "Unsupported authentication type %d"
498 msgstr "ਅਸਮਰਥਿਤ ਪ੍ਰਮਾਣਿਕਤਾ ਕਿਸਮ %d"
499
500 #: ../src/virt-viewer-vm-connection.c:64
480 #: src/virt-viewer-session-spice.c:1019
481 msgid "Serial"
482 msgstr ""
483
484 #: src/virt-viewer-session-spice.c:1021
485 msgid "QEMU human monitor"
486 msgstr ""
487
488 #: src/virt-viewer-session-spice.c:1023
489 msgid "QEMU debug console"
490 msgstr ""
491
492 #: src/virt-viewer-session-vnc.c:158
493 #, c-format
494 msgid "Unsupported authentication type %u"
495 msgstr ""
496
497 #: src/virt-viewer-vm-connection.c:64
501498 msgid "No running virtual machine found"
502499 msgstr ""
503500
504 #: ../src/virt-viewer-vm-connection.c:93
501 #: src/virt-viewer-vm-connection.c:93
505502 msgid "No virtual machine was chosen"
506503 msgstr ""
507504
508 #: ../src/virt-viewer-window.c:544
505 #: src/virt-viewer-window.c:621
509506 msgid "Ctrl+Alt+_Del"
510507 msgstr "Ctrl+Alt+_Del"
511508
512 #: ../src/virt-viewer-window.c:545
509 #: src/virt-viewer-window.c:622
513510 msgid "Ctrl+Alt+_Backspace"
514511 msgstr "Ctrl+Alt+_Backspace"
515512
516 #: ../src/virt-viewer-window.c:547
513 #: src/virt-viewer-window.c:624
517514 msgid "Ctrl+Alt+F_1"
518515 msgstr "Ctrl+Alt+F_1"
519516
520 #: ../src/virt-viewer-window.c:548
517 #: src/virt-viewer-window.c:625
521518 msgid "Ctrl+Alt+F_2"
522519 msgstr "Ctrl+Alt+F_2"
523520
524 #: ../src/virt-viewer-window.c:549
521 #: src/virt-viewer-window.c:626
525522 msgid "Ctrl+Alt+F_3"
526523 msgstr "Ctrl+Alt+F_3"
527524
528 #: ../src/virt-viewer-window.c:550
525 #: src/virt-viewer-window.c:627
529526 msgid "Ctrl+Alt+F_4"
530527 msgstr "Ctrl+Alt+F_4"
531528
532 #: ../src/virt-viewer-window.c:551
529 #: src/virt-viewer-window.c:628
533530 msgid "Ctrl+Alt+F_5"
534531 msgstr "Ctrl+Alt+F_5"
535532
536 #: ../src/virt-viewer-window.c:552
533 #: src/virt-viewer-window.c:629
537534 msgid "Ctrl+Alt+F_6"
538535 msgstr "Ctrl+Alt+F_6"
539536
540 #: ../src/virt-viewer-window.c:553
537 #: src/virt-viewer-window.c:630
541538 msgid "Ctrl+Alt+F_7"
542539 msgstr "Ctrl+Alt+F_7"
543540
544 #: ../src/virt-viewer-window.c:554
541 #: src/virt-viewer-window.c:631
545542 msgid "Ctrl+Alt+F_8"
546543 msgstr "Ctrl+Alt+F_8"
547544
548 #: ../src/virt-viewer-window.c:555
545 #: src/virt-viewer-window.c:632
549546 msgid "Ctrl+Alt+F_9"
550547 msgstr "Ctrl+Alt+F_9"
551548
552 #: ../src/virt-viewer-window.c:556
549 #: src/virt-viewer-window.c:633
553550 msgid "Ctrl+Alt+F1_0"
554551 msgstr "Ctrl+Alt+F1_0"
555552
556 #: ../src/virt-viewer-window.c:557
553 #: src/virt-viewer-window.c:634
557554 msgid "Ctrl+Alt+F11"
558555 msgstr "Ctrl+Alt+F11"
559556
560 #: ../src/virt-viewer-window.c:558
557 #: src/virt-viewer-window.c:635
561558 msgid "Ctrl+Alt+F12"
562559 msgstr "Ctrl+Alt+F12"
563560
564 #: ../src/virt-viewer-window.c:953
561 #: src/virt-viewer-window.c:637
562 msgid "_PrintScreen"
563 msgstr ""
564
565 #: src/virt-viewer-window.c:1030
565566 #, c-format
566567 msgid "Unable to determine image format for file '%s'"
567568 msgstr ""
568569
569 #: ../src/virt-viewer-window.c:980
570 #: src/virt-viewer-window.c:1053
571 msgid "Save screenshot"
572 msgstr ""
573
574 #: src/virt-viewer-window.c:1057
570575 msgid "_Save"
571576 msgstr ""
572577
573 #: ../src/virt-viewer-window.c:988
578 #: src/virt-viewer-window.c:1065
574579 msgid "Screenshot.png"
575580 msgstr ""
576581
577 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
582 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
578583 msgid "Unknown"
579584 msgstr ""
580585
581 #: ../src/virt-viewer-window.c:1152
586 #: src/virt-viewer-window.c:1237
582587 msgid "Unable to connnect to oVirt"
583588 msgstr ""
584589
585 #: ../src/virt-viewer-window.c:1175
590 #: src/virt-viewer-window.c:1260
586591 msgid "Disconnect"
587592 msgstr "ਸੰਪਰਕ ਤੋੜੋ"
588593
589 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
594 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
590595 msgid "USB device selection"
591596 msgstr "USB ਜੰਤਰ ਚੋਣ"
592597
593 #: ../src/virt-viewer-window.c:1193
598 #: src/virt-viewer-window.c:1278
594599 msgid "Send key combination"
595600 msgstr "ਚਾਬੀ ਮਿਸ਼ਰਨ ਭੇਜੋ"
596601
597 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
602 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
598603 msgid "Leave fullscreen"
599604 msgstr "ਪੂਰੀ ਸਕਰੀਨ ਛੱਡੋ"
600605
601 #: ../src/virt-viewer-window.c:1279
606 #: src/virt-viewer-window.c:1364
602607 msgid "Ctrl+Alt"
603608 msgstr "Ctrl+Alt"
604609
605 #: ../src/virt-viewer-window.c:1282
610 #: src/virt-viewer-window.c:1367
606611 #, c-format
607612 msgid "(Press %s to release pointer)"
608613 msgstr "(ਪੁਆਇੰਟਰ ਛੱਡਣ ਲਈ %s ਦੱਬੋ)"
609614
610 #. translators:
611 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
612 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
613 #.
614 #: ../src/virt-viewer-window.c:1293
615 #: src/virt-viewer-window.c:1378
615616 #, c-format
616617 msgid "%s%s%s - %s"
617618 msgstr "%s%s%s - %s"
618619
619 #. translators: <space>
620 #: ../src/virt-viewer-window.c:1297
620 #: src/virt-viewer-window.c:1382
621621 msgid " "
622622 msgstr " "
623623
624 #: ../src/virt-viewer-file.c:862
624 #: src/virt-viewer-file.c:875
625625 #, c-format
626626 msgid ""
627627 "At least %s version %s is required to setup this connection, see %s for "
628628 "details"
629629 msgstr ""
630630
631 #: ../src/virt-viewer-file.c:870
631 #: src/virt-viewer-file.c:883
632632 #, c-format
633633 msgid "At least %s version %s is required to setup this connection"
634634 msgstr "ਇਸ ਸੰਪਰਕ ਦੇ ਸੈੱਟਅੱਪ ਲਈ ਘੱਟੋ-ਘੱਟ %s ਸੰਸਕਰਣ %s ਲੋੜੀਂਦਾ ਹੈ"
635635
636 #: ../src/virt-viewer.c:133
636 #: src/virt-viewer.c:131
637637 msgid "Direct connection with no automatic tunnels"
638638 msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸ੍ਵੈ-ਚਲਿਤ ਸੁਰੰਗ ਦੇ ਸਿੱਧਾ ਸੰਪਰਕ"
639639
640 #: ../src/virt-viewer.c:135
640 #: src/virt-viewer.c:133
641641 msgid "Attach to the local display using libvirt"
642642 msgstr "libvirt ਵਰਤ ਕੇ ਸਥਾਨਕ ਡਿਸਪਲੇਅ ਨਾਲ ਜੁੜੋ"
643643
644 #: ../src/virt-viewer.c:137
644 #: src/virt-viewer.c:135
645645 msgid "Connect to hypervisor"
646646 msgstr "ਹਾਈਪਰਵਾਈਸਰ ਨਾਲ ਜੋੜੋ"
647647
648 #: ../src/virt-viewer.c:139
648 #: src/virt-viewer.c:137
649649 msgid "Wait for domain to start"
650650 msgstr "ਡੋਮੇਲ ਚਾਲੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕਰੋ"
651651
652 #: ../src/virt-viewer.c:141
652 #: src/virt-viewer.c:139
653653 msgid "Reconnect to domain upon restart"
654654 msgstr "ਮੁੜ-ਚਾਲੂ ਹੋਣ ਤੇ ਡੋਮੇਨ ਨਾਲ ਮੁੜ-ਜੁੜੋ"
655655
656 #: ../src/virt-viewer.c:143
656 #: src/virt-viewer.c:141
657657 msgid "Select the virtual machine only by its name"
658658 msgstr ""
659659
660 #: ../src/virt-viewer.c:145
660 #: src/virt-viewer.c:143
661661 msgid "Select the virtual machine only by its id"
662662 msgstr ""
663663
664 #: ../src/virt-viewer.c:147
664 #: src/virt-viewer.c:145
665665 msgid "Select the virtual machine only by its uuid"
666666 msgstr ""
667667
668 #: ../src/virt-viewer.c:154
668 #: src/virt-viewer.c:152
669669 msgid "Virtual machine graphical console"
670670 msgstr ""
671671
672 #: ../src/virt-viewer.c:173
672 #: src/virt-viewer.c:171
673673 #, c-format
674674 msgid ""
675675 "\n"
677677 "\n"
678678 msgstr ""
679679
680 #: ../src/virt-viewer.c:185
680 #: src/virt-viewer.c:183
681681 #, c-format
682682 msgid ""
683683 "\n"
685685 "\n"
686686 msgstr ""
687687
688 #: ../src/virt-viewer.c:300
688 #: src/virt-viewer.c:296
689689 msgid "Waiting for guest domain to re-start"
690690 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੇ ਮੁੜ-ਚਾਲੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ"
691691
692 #: ../src/virt-viewer.c:554
692 #: src/virt-viewer.c:550
693693 #, c-format
694694 msgid "Cannot determine the graphic type for the guest %s"
695695 msgstr "ਪ੍ਰਾਹੁਣਾ %s ਲਈ ਗਰਾਫਿਕ ਕਿਸਮ ਪਤਾ ਨਹੀਂ ਕਰ ਸਕਦਾ"
696696
697 #: ../src/virt-viewer.c:603
697 #: src/virt-viewer.c:599
698698 #, c-format
699699 msgid "Cannot determine the host for the guest %s"
700700 msgstr "ਪ੍ਰਾਹੁਣਾ %s ਲਈ ਹੋਸਟ ਪਤਾ ਨਹੀਂ ਕਰ ਸਕਦਾ"
701701
702 #: ../src/virt-viewer.c:631
702 #: src/virt-viewer.c:627
703703 #, c-format
704704 msgid "Guest '%s' is not reachable"
705705 msgstr ""
706706
707 #: ../src/virt-viewer.c:860
707 #: src/virt-viewer.c:856
708708 #, c-format
709709 msgid "Virtual machine %s is not running"
710710 msgstr ""
711711
712 #: ../src/virt-viewer.c:884
712 #: src/virt-viewer.c:881
713713 msgid "Waiting for libvirt to start"
714714 msgstr "libvirt ਦੇ ਸ਼ੁਰੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ"
715715
716 #: ../src/virt-viewer.c:888
716 #: src/virt-viewer.c:885
717717 msgid "Finding guest domain"
718718 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਲੱਭ ਰਿਹਾ ਹੈ"
719719
720 #: ../src/virt-viewer.c:892
720 #: src/virt-viewer.c:889
721721 msgid "Waiting for guest domain to be created"
722722 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੇ ਬਣਾਏ ਜਾਣ ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ"
723723
724 #: ../src/virt-viewer.c:918
724 #: src/virt-viewer.c:921
725725 msgid "Checking guest domain status"
726726 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੀ ਹਾਲਤ ਜਾਂਚ ਰਿਹਾ ਹੈ"
727727
728 #: ../src/virt-viewer.c:921
728 #: src/virt-viewer.c:924
729729 msgid "Cannot get guest state"
730730 msgstr ""
731731
732 #: ../src/virt-viewer.c:927
732 #: src/virt-viewer.c:930
733733 msgid "Waiting for guest domain to start"
734734 msgstr "ਪ੍ਰਾਹੁਣਾ ਡੋਮੇਨ ਦੇ ਚਾਲੂ ਹੋਣ ਦੀ ਉਡੀਕ ਕਰ ਰਿਹਾ ਹੈ"
735735
736 #: ../src/virt-viewer.c:1040
736 #: src/virt-viewer.c:1044
737737 #, c-format
738738 msgid "Unable to connect to libvirt with URI: %s."
739739 msgstr ""
740740
741 #: ../src/virt-viewer.c:1041
741 #: src/virt-viewer.c:1045
742742 msgid "[none]"
743743 msgstr "[ਕੋਈ ਨਹੀਂ]"
744744
745 #: ../src/virt-viewer.c:1048
745 #: src/virt-viewer.c:1052
746746 msgid "Authentication failed."
747747 msgstr ""
748748
749 #: ../src/virt-viewer.c:1108
749 #: src/virt-viewer.c:1112
750750 msgid "Failed to connect: "
751751 msgstr ""
752752
753 #.
754 #. * Local variables:
755 #. * c-indent-level: 4
756 #. * c-basic-offset: 4
757 #. * indent-tabs-mode: nil
758 #. * End:
759 #.
760 #: ../src/resources/ui/virt-viewer.ui.h:1
753 #: src/resources/ui/virt-viewer.ui:28
761754 msgid "_File"
762755 msgstr "ਫਾਈਲ (_F)"
763756
764 #: ../src/resources/ui/virt-viewer.ui.h:2
757 #: src/resources/ui/virt-viewer.ui:41
765758 msgid "_Screenshot"
766759 msgstr ""
767760
768 #: ../src/resources/ui/virt-viewer.ui.h:3
761 #: src/resources/ui/virt-viewer.ui:52
769762 msgid "_USB device selection"
770763 msgstr ""
771764
772 #: ../src/resources/ui/virt-viewer.ui.h:4
765 #: src/resources/ui/virt-viewer.ui:62
773766 msgid "Smartcard insertion"
774767 msgstr "ਸਮਾਰਟ-ਕਾਰਡ ਅੰਦਰ ਪਾਉਣਾ"
775768
776 #: ../src/resources/ui/virt-viewer.ui.h:5
769 #: src/resources/ui/virt-viewer.ui:72
777770 msgid "Smartcard removal"
778771 msgstr "ਸਮਾਰਡ-ਕਾਰਡ ਹਟਾਉਣਾ"
779772
780 #: ../src/resources/ui/virt-viewer.ui.h:6
773 #: src/resources/ui/virt-viewer.ui:80
781774 msgid "_Change CD"
782775 msgstr ""
783776
784 #: ../src/resources/ui/virt-viewer.ui.h:7
777 #: src/resources/ui/virt-viewer.ui:90
785778 msgid "_Preferences"
786779 msgstr ""
787780
788 #: ../src/resources/ui/virt-viewer.ui.h:8
781 #: src/resources/ui/virt-viewer.ui:103
789782 msgid "_Quit"
790783 msgstr ""
791784
792 #: ../src/resources/ui/virt-viewer.ui.h:9
785 #: src/resources/ui/virt-viewer.ui:119
786 msgid "_Machine"
787 msgstr ""
788
789 #: src/resources/ui/virt-viewer.ui:129
790 msgid "_Pause"
791 msgstr ""
792
793 #: src/resources/ui/virt-viewer.ui:144
794 msgid "_Reset"
795 msgstr ""
796
797 #: src/resources/ui/virt-viewer.ui:153
798 msgid "_Power down"
799 msgstr ""
800
801 #: src/resources/ui/virt-viewer.ui:167
793802 msgid "_View"
794803 msgstr "ਵੇਖੋ (_V)"
795804
796 #: ../src/resources/ui/virt-viewer.ui.h:10
805 #: src/resources/ui/virt-viewer.ui:180
797806 msgid "_Full screen"
798807 msgstr ""
799808
800 #: ../src/resources/ui/virt-viewer.ui.h:11
809 #: src/resources/ui/virt-viewer.ui:191
801810 msgid "_Zoom"
802811 msgstr "ਜ਼ੂਮ (_Z)"
803812
804 #: ../src/resources/ui/virt-viewer.ui.h:12
813 #: src/resources/ui/virt-viewer.ui:201
805814 msgid "Zoom _In"
806815 msgstr ""
807816
808 #: ../src/resources/ui/virt-viewer.ui.h:13
817 #: src/resources/ui/virt-viewer.ui:212
809818 msgid "Zoom _Out"
810819 msgstr ""
811820
812 #: ../src/resources/ui/virt-viewer.ui.h:14
821 #: src/resources/ui/virt-viewer.ui:229
813822 msgid "_Normal Size"
814823 msgstr ""
815824
816 #: ../src/resources/ui/virt-viewer.ui.h:15
825 #: src/resources/ui/virt-viewer.ui:246
817826 msgid "_Displays"
818827 msgstr ""
819828
820 #: ../src/resources/ui/virt-viewer.ui.h:16
829 #: src/resources/ui/virt-viewer.ui:255
821830 msgid "Release cursor"
822831 msgstr "ਕਰਸਰ ਛੱਡੋ"
823832
824 #: ../src/resources/ui/virt-viewer.ui.h:17
833 #: src/resources/ui/virt-viewer.ui:270
825834 msgid "_Send key"
826835 msgstr "ਕੁੰਜੀ ਭੇਜੋ (_S)"
827836
828 #: ../src/resources/ui/virt-viewer.ui.h:18
837 #: src/resources/ui/virt-viewer.ui:279
829838 msgid "_Help"
830839 msgstr "ਮਦਦ (_H)"
831840
832 #: ../src/resources/ui/virt-viewer.ui.h:19
841 #: src/resources/ui/virt-viewer.ui:290
833842 msgid "_Guest Details"
834843 msgstr ""
835844
836 #: ../src/resources/ui/virt-viewer.ui.h:20
845 #: src/resources/ui/virt-viewer.ui:297
837846 msgid "_About"
838847 msgstr ""
839848
840 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
849 #: src/resources/ui/virt-viewer-guest-details.ui:7
841850 msgid "Guest Details"
842851 msgstr ""
843852
844 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
853 #: src/resources/ui/virt-viewer-guest-details.ui:56
845854 msgid "Name:"
846855 msgstr ""
847856
848 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
857 #: src/resources/ui/virt-viewer-guest-details.ui:68
849858 msgid "GUID:"
850859 msgstr ""
851860
852 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
861 #: src/resources/ui/virt-viewer-vm-connection.ui:7
853862 msgid "Choose a virtual machine"
854863 msgstr ""
855864
856 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
865 #: src/resources/ui/virt-viewer-vm-connection.ui:96
857866 msgid "Available virtual machines"
858867 msgstr ""
859868
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
869 #: src/resources/ui/virt-viewer-preferences.ui:8
861870 msgid "Preferences"
862871 msgstr ""
863872
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
873 #: src/resources/ui/virt-viewer-preferences.ui:48
865874 msgid "Folder sharing"
866875 msgstr ""
867876
868 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
877 #: src/resources/ui/virt-viewer-preferences.ui:70
869878 msgid "Share folder"
870879 msgstr ""
871880
872 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
881 #: src/resources/ui/virt-viewer-preferences.ui:82
873882 msgid "Read-only"
874883 msgstr ""
875884
876 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
885 #: src/resources/ui/virt-viewer-preferences.ui:96
886 msgid "Share clipboard"
887 msgstr ""
888
889 #: src/resources/ui/virt-viewer-preferences.ui:132
877890 msgid "Spice"
878891 msgstr ""
892
893 #~ msgid "virt-manager.org"
894 #~ msgstr "virt-manager.org"
Binary diff not shown
+283
-264
po/pl.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Piotr Drąg <piotrdrag@gmail.com>, 2015. #zanata
77 # Piotr Drąg <piotrdrag@gmail.com>, 2016. #zanata
88 # Piotr Drąg <piotrdrag@gmail.com>, 2017. #zanata
9 # Piotr Drąg <piotrdrag@gmail.com>, 2019. #zanata
910 msgid ""
1011 msgstr ""
11 "Project-Id-Version: PACKAGE VERSION\n"
12 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
14 "PO-Revision-Date: 2017-05-22 10:23-0400\n"
12 "Project-Id-Version: virt-viewer 9.0\n"
13 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
14 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
15 "PO-Revision-Date: 2019-02-20 08:01+0000\n"
1516 "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
1617 "Language-Team: Polish (http://www.transifex.com/projects/p/virt-viewer/"
1718 "language/pl/)\n"
2122 "Content-Transfer-Encoding: 8bit\n"
2223 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
2324 "|| n%100>=20) ? 1 : 2);\n"
24 "X-Generator: Zanata 3.9.6\n"
25
26 #: ../data/remote-viewer.appdata.xml.in.h:1
27 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
25 "X-Generator: Zanata 4.6.2\n"
26
27 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
28 #: src/remote-viewer-main.c:39
2829 msgid "Remote Viewer"
2930 msgstr "Zdalne przeglądanie"
3031
31 #: ../data/remote-viewer.appdata.xml.in.h:2
32 #: data/remote-viewer.appdata.xml.in:7
3233 msgid "Remotely access virtual machines"
3334 msgstr "Zdalny dostęp do maszyn wirtualnych"
3435
35 #: ../data/remote-viewer.appdata.xml.in.h:3
36 #: data/remote-viewer.appdata.xml.in:9
3637 msgid ""
3738 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3839 "time it supports guest OS using the VNC or SPICE protocols. Further "
4546 "nie zapotrzebowanie. Przeglądarka może łączyć się bezpośrednio z lokalnymi "
4647 "i zdalnymi gośćmi za pomocą szyfrowania SSL/TLS."
4748
48 #: ../data/remote-viewer.desktop.in.h:2
49 #: data/remote-viewer.desktop.in:4
4950 msgid "Access remote desktops"
5051 msgstr "Dostęp do zdalnych pulpitów"
5152
52 #: ../data/virt-viewer-mime.xml.in.h:1
53 msgid "Virt-Viewer connection file"
54 msgstr "Plik połączenia programu Virt-Viewer"
55
56 #: ../src/remote-viewer-iso-list-dialog.c:160
53 #: src/remote-viewer-iso-list-dialog.c:156
5754 msgid "Failed to fetch CD names"
5855 msgstr "Pobranie nazw płyt CD się nie powiodło"
5956
60 #: ../src/remote-viewer-iso-list-dialog.c:212
57 #: src/remote-viewer-iso-list-dialog.c:205
6158 msgid "<b>Loading...</b>"
6259 msgstr "<b>Wczytywanie…</b>"
6360
64 #: ../src/remote-viewer-iso-list-dialog.c:285
61 #: src/remote-viewer-iso-list-dialog.c:276
6562 msgid "Refresh"
6663 msgstr "Odśwież"
6764
68 #: ../src/remote-viewer-iso-list-dialog.c:286
65 #: src/remote-viewer-iso-list-dialog.c:277
6966 msgid "Close"
7067 msgstr "Zamknij"
7168
72 #: ../src/remote-viewer-iso-list-dialog.c:306
69 #: src/remote-viewer-iso-list-dialog.c:297
7370 msgid "Unspecified error"
7471 msgstr "Nieokreślony błąd"
7572
76 #: ../src/remote-viewer-iso-list-dialog.c:328
73 #: src/remote-viewer-iso-list-dialog.c:318
7774 msgid "Failed to change CD"
7875 msgstr "Zmiana płyty CD się nie powiodła"
7976
80 #: ../src/remote-viewer-iso-list-dialog.c:380
77 #: src/remote-viewer-iso-list-dialog.c:370
8178 msgid "Change CD"
8279 msgstr "Zmień płytę CD"
8380
84 #: ../src/remote-viewer.c:118
81 #: src/remote-viewer.c:116
8582 msgid "Set window title"
8683 msgstr "Ustawia tytuł okna"
8784
88 #: ../src/remote-viewer.c:125
85 #: src/remote-viewer.c:123
8986 msgid "Remote viewer client"
9087 msgstr "Klient zdalnej przeglądarki"
9188
92 #: ../src/remote-viewer.c:150
93 #, c-format
89 #: src/remote-viewer.c:148
9490 msgid ""
9591 "\n"
9692 "Error: can't handle multiple URIs\n"
10096 "Błąd: nie można obsłużyć wielu adresów URI\n"
10197 "\n"
10298
103 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
99 #: src/remote-viewer.c:162 src/virt-viewer.c:200
104100 #, c-format
105101 msgid "Run '%s --help' to see a full list of available command line options\n"
106102 msgstr ""
107103 "Polecenie „%s --help” wyświetli pełną listę dostępnych opcji wiersza "
108104 "poleceń\n"
109105
110 #: ../src/remote-viewer.c:435
106 #: src/remote-viewer.c:429
111107 msgid "failed to parse ovirt uri"
112108 msgstr "przetworzenie adresu URI oVirt się nie powiodło"
113109
114 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
110 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
115111 msgid "Authentication was cancelled"
116112 msgstr "Anulowano uwierzytelnianie"
117113
118 #: ../src/remote-viewer.c:480
114 #: src/remote-viewer.c:472
119115 #, c-format
120116 msgid "oVirt VM %s is not running"
121117 msgstr "Maszyna wirtualna oVirt %s nie jest uruchomiona"
122118
123 #: ../src/remote-viewer.c:494
119 #: src/remote-viewer.c:486
124120 #, c-format
125121 msgid "oVirt VM %s has no display"
126122 msgstr "Maszyna wirtualna oVirt %s nie ma ekranu"
127123
128 #: ../src/remote-viewer.c:520
124 #: src/remote-viewer.c:512
129125 #, c-format
130126 msgid "oVirt VM %s has no host information"
131127 msgstr "Maszyna wirtualna oVirt %s nie ma informacji o komputerze"
132128
133 #: ../src/remote-viewer.c:531
134 #, c-format
135 msgid "oVirt VM %s has unknown display type: %d"
136 msgstr "Maszyna wirtualna oVirt %s ma nieznany typ ekranu: %d"
137
138 #: ../src/remote-viewer.c:713
129 #: src/remote-viewer.c:523
130 #, c-format
131 msgid "oVirt VM %s has unknown display type: %u"
132 msgstr "Maszyna wirtualna oVirt %s ma nieznany typ ekranu: %u"
133
134 #: src/remote-viewer.c:690
135 msgid "Couldn't open oVirt session: "
136 msgstr "Nie można otworzyć sesji oVirt: "
137
138 #: src/remote-viewer.c:718
139139 msgid "Failed to initiate connection"
140140 msgstr "Zainicjowanie połączenia się nie powiodło"
141141
142 #: ../src/remote-viewer.c:742
142 #: src/remote-viewer.c:747
143143 msgid "No connection was chosen"
144144 msgstr "Nie wybrano połączenia"
145145
146 #: ../src/remote-viewer.c:759
146 #: src/remote-viewer.c:764
147147 msgid "Failed to read stdin: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:776
148 msgstr "Odczytanie standardowego wejścia się nie powiodło: "
149
150 #: src/remote-viewer.c:781
151151 #, c-format
152152 msgid "Invalid file %s: "
153153 msgstr "Nieprawidłowy plik %s: "
154154
155 #: ../src/remote-viewer.c:786
155 #: src/remote-viewer.c:791
156156 msgid "Cannot determine the connection type from URI"
157157 msgstr "Nie można ustalić typu połączenia z adresu URI"
158158
159 #: ../src/remote-viewer.c:792
160 msgid "Couldn't open oVirt session: "
161 msgstr "Nie można otworzyć sesji oVirt: "
162
163 #: ../src/remote-viewer.c:815
159 #: src/remote-viewer.c:810
164160 #, c-format
165161 msgid "Unable to connect: %s"
166162 msgstr "Nie można połączyć: %s"
167163
168 #.
169 #. * Local variables:
170 #. * c-indent-level: 4
171 #. * c-basic-offset: 4
172 #. * indent-tabs-mode: nil
173 #. * End:
174 #.
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:6
176165 msgid "Connection details"
177166 msgstr "Szczegóły połączenia"
178167
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
168 #: src/resources/ui/remote-viewer-connect.ui:24
180169 msgid "Connection _Address"
181170 msgstr "_Adres połączenia"
182171
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:54
184173 msgid "For example, spice://foo.example.org:5900"
185174 msgstr "Na przykład spice://foo.example.org:5900"
186175
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
176 #: src/resources/ui/remote-viewer-connect.ui:78
188177 msgid "Recent connections"
189178 msgstr "Ostatnie połączania"
190179
191 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
192 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
193 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
194 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
180 #: src/resources/ui/remote-viewer-connect.ui:120
181 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
182 #: src/resources/ui/virt-viewer-vm-connection.ui:24
183 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
195184 msgid "_Cancel"
196185 msgstr "_Anuluj"
197186
198 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
199 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
187 #: src/resources/ui/remote-viewer-connect.ui:134
188 #: src/resources/ui/virt-viewer-vm-connection.ui:38
200189 msgid "C_onnect"
201190 msgstr "P_ołącz"
202191
203 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
192 #: src/resources/ui/remote-viewer-iso-list.ui:28
204193 msgid "Loading..."
205194 msgstr "Wczytywanie…"
206195
207 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
196 #: src/resources/ui/remote-viewer-iso-list.ui:78
208197 msgid "Select ISO"
209198 msgstr "Wybierz plik ISO"
210199
211 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
200 #: src/resources/ui/remote-viewer-iso-list.ui:116
212201 msgid "Selected"
213202 msgstr "Wybrane"
214203
215 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
216 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
204 #: src/resources/ui/remote-viewer-iso-list.ui:129
205 #: src/resources/ui/virt-viewer-vm-connection.ui:72
217206 msgid "Name"
218207 msgstr "Nazwa"
219208
220 #: ../src/resources/ui/virt-viewer-about.ui.h:1
209 #: src/resources/ui/virt-viewer-about.ui:7
221210 msgid "About Virt-Viewer"
222211 msgstr "O programie Virt-Viewer"
223212
224 #: ../src/resources/ui/virt-viewer-about.ui.h:2
213 #: src/resources/ui/virt-viewer-about.ui:16
225214 msgid ""
226215 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
227216 "Copyright (C) 2007-2014 Red Hat, Inc."
229218 "Copyright © 2007-2012 Daniel P. Berrange\n"
230219 "Copyright © 2007-2014 Red Hat, Inc."
231220
232 #: ../src/resources/ui/virt-viewer-about.ui.h:4
221 #: src/resources/ui/virt-viewer-about.ui:18
233222 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
234223 msgstr ""
235224 "Klient zdalnego pulpitu zbudowany za pomocą bibliotek GTK-VNC, SPICE-GTK "
236225 "i libvirt"
237226
238 #: ../src/resources/ui/virt-viewer-about.ui.h:5
239 msgid "virt-manager.org"
240 msgstr "virt-manager.org"
241
242 #: ../src/resources/ui/virt-viewer-about.ui.h:6
227 #: src/resources/ui/virt-viewer-about.ui:20
228 msgid "gitlab.com/virt-viewer/virt-viewer"
229 msgstr ""
230
231 #: src/resources/ui/virt-viewer-about.ui:21
243232 msgid ""
244233 "This program is free software; you can redistribute it and/or modify\n"
245234 "it under the terms of the GNU General Public License as published by\n"
271260 "— proszę napisać do Free Software Foundation, Inc., 59 Temple Place, Suite\n"
272261 "330, Boston, MA 02111-1307, USA.\n"
273262
274 #: ../src/resources/ui/virt-viewer-about.ui.h:20
263 #: src/resources/ui/virt-viewer-about.ui:38
275264 msgid "The Fedora Translation Team"
276265 msgstr "Zespół tłumaczenia Fedory"
277266
278 #: ../src/virt-viewer-app.c:459
267 #: src/virt-viewer-app.c:594
279268 msgid "Do you want to close the session?"
280269 msgstr "Zamknąć sesję?"
281270
282 #: ../src/virt-viewer-app.c:461
271 #: src/virt-viewer-app.c:596
283272 msgid "Do not ask me again"
284273 msgstr "Bez pytania ponownie"
285274
286 #: ../src/virt-viewer-app.c:655
275 #: src/virt-viewer-app.c:767
287276 #, c-format
288277 msgid "Address is too long for unix socket_path: %s"
289278 msgstr "Adres jest za długi dla ścieżki gniazda uniksowego: %s"
290279
291 #: ../src/virt-viewer-app.c:665
280 #: src/virt-viewer-app.c:777
292281 #, c-format
293282 msgid "Creating unix socket failed: %s"
294283 msgstr "Utworzenie gniazda uniksowego się nie powiodło: %s"
295284
296 #: ../src/virt-viewer-app.c:671
285 #: src/virt-viewer-app.c:783
297286 #, c-format
298287 msgid "Connecting to unix socket failed: %s"
299288 msgstr "Połączenie z gniazdem uniksowym się nie powiodło: %s"
300289
301 #: ../src/virt-viewer-app.c:955
290 #: src/virt-viewer-app.c:1077
302291 #, c-format
303292 msgid "Waiting for display %d..."
304293 msgstr "Oczekiwanie na %d. ekran…"
305294
306 #: ../src/virt-viewer-app.c:1062
295 #: src/virt-viewer-app.c:1193
307296 #, c-format
308297 msgid "Unsupported graphic type '%s'"
309298 msgstr "Nieobsługiwany typ grafiki „%s”"
310299
311 #: ../src/virt-viewer-app.c:1146
300 #: src/virt-viewer-app.c:1277
312301 msgid "Connect to ssh failed."
313302 msgstr "Połączenie z usługą ssh się nie powiodło."
314303
315 #: ../src/virt-viewer-app.c:1161
304 #: src/virt-viewer-app.c:1292
316305 #, c-format
317306 msgid "Can't connect to channel: %s"
318307 msgstr "Nie można połączyć z kanałem: %s"
319308
320 #: ../src/virt-viewer-app.c:1163
309 #: src/virt-viewer-app.c:1294
321310 msgid "only SSH or unix socket connection supported."
322311 msgstr "obsługiwane są tylko połączenia gniazd SSH lub UNIX"
323312
324 #: ../src/virt-viewer-app.c:1176
313 #: src/virt-viewer-app.c:1311
325314 msgid "Connect to channel unsupported."
326315 msgstr "Łączenie z kanałem jest nieobsługiwane."
327316
328 #: ../src/virt-viewer-app.c:1238
317 #: src/virt-viewer-app.c:1376
329318 msgid "Display can only be attached through libvirt with --attach"
330319 msgstr ""
331320 "Ekran może zostać podłączony tylko przez bibliotekę libvirt za pomocą opcji "
332321 "--attach"
333322
334 #: ../src/virt-viewer-app.c:1263
323 #: src/virt-viewer-app.c:1401
335324 msgid "Connecting to graphic server"
336325 msgstr "Łączenie z serwerem grafiki"
337326
338 #: ../src/virt-viewer-app.c:1362
327 #: src/virt-viewer-app.c:1500
339328 msgid "Guest domain has shutdown"
340329 msgstr "Domena gościa została wyłączona"
341330
342 #: ../src/virt-viewer-app.c:1423
331 #: src/virt-viewer-app.c:1561
343332 msgid "Connected to graphic server"
344333 msgstr "Połączono z serwerem grafiki"
345334
346 #: ../src/virt-viewer-app.c:1452
335 #: src/virt-viewer-app.c:1590
347336 #, c-format
348337 msgid "Unable to connect to the graphic server %s"
349338 msgstr "Nie można połączyć się z serwerem grafiki %s"
350339
351 #: ../src/virt-viewer-app.c:1478
340 #: src/virt-viewer-app.c:1616
352341 #, c-format
353342 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
354343 msgstr "Nie można uwierzytelnić ze zdalnym serwerem pulpitu w %s: %s\n"
355344
356 #: ../src/virt-viewer-app.c:1492
345 #: src/virt-viewer-app.c:1630
357346 #, c-format
358347 msgid "Unable to authenticate with remote desktop server: %s"
359348 msgstr "Nie można uwierzytelnić z serwerem zdalnego pulpitu: %s"
360349
361 #: ../src/virt-viewer-app.c:1500
350 #: src/virt-viewer-app.c:1638
362351 #, c-format
363352 msgid "USB redirection error: %s"
364353 msgstr "Błąd przekierowania USB: %s"
365354
366 #: ../src/virt-viewer-app.c:1834
355 #: src/virt-viewer-app.c:2026
367356 #, c-format
368357 msgid "Zoom level must be within %d-%d\n"
369358 msgstr "Poziom powiększenia musi być w zakresie %d-%d\n"
370359
371 #: ../src/virt-viewer-app.c:1887
360 #: src/virt-viewer-app.c:2081
372361 #, c-format
373362 msgid "%s\n"
374363 msgstr "%s\n"
375364
376 #: ../src/virt-viewer-app.c:1897
365 #: src/virt-viewer-app.c:2091
377366 #, c-format
378367 msgid "%s version %s"
379368 msgstr "%s w wersji %s"
380369
381 #: ../src/virt-viewer-app.c:2321
370 #: src/virt-viewer-app.c:2545
382371 #, c-format
383372 msgid "Display _%d"
384373 msgstr "_%d. ekran"
385374
386 #: ../src/virt-viewer-app.c:2577
375 #: src/virt-viewer-app.c:2829
387376 #, c-format
388377 msgid "Invalid kiosk-quit argument: %s"
389378 msgstr "Nieprawidłowy parametr kiosk-quit: %s"
390379
391 #: ../src/virt-viewer-app.c:2588
380 #: src/virt-viewer-app.c:2840
392381 msgid "Display version information"
393382 msgstr "Wyświetla informację o wersji"
394383
395 #: ../src/virt-viewer-app.c:2590
384 #: src/virt-viewer-app.c:2842
396385 msgid "Zoom level of window, in percentage"
397386 msgstr "Poziom powiększenia okna, w procentach"
398387
399 #: ../src/virt-viewer-app.c:2592
388 #: src/virt-viewer-app.c:2844
400389 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
401390 msgstr ""
402391 "Otwiera w trybie pełnoekranowym (dostosowuje rozdzielczość gościa, aby "
403392 "pasowała do klienta)"
404393
405 #: ../src/virt-viewer-app.c:2594
394 #: src/virt-viewer-app.c:2846
406395 msgid "Customise hotkeys"
407396 msgstr "Dostosowuje skróty"
408397
409 #: ../src/virt-viewer-app.c:2596
398 #: src/virt-viewer-app.c:2848
410399 msgid "Enable kiosk mode"
411400 msgstr "Włącza tryb kiosku"
412401
413 #: ../src/virt-viewer-app.c:2598
402 #: src/virt-viewer-app.c:2850
414403 msgid "Quit on given condition in kiosk mode"
415404 msgstr "Kończy działanie po podanym warunku w trybie kiosku"
416405
417 #: ../src/virt-viewer-app.c:2598
406 #: src/virt-viewer-app.c:2850
418407 msgid "<never|on-disconnect>"
419408 msgstr "<never|on-disconnect>"
420409
421 #: ../src/virt-viewer-app.c:2600
410 #: src/virt-viewer-app.c:2852
422411 msgid "Display verbose information"
423412 msgstr "Wyświetla więcej informacji"
424413
425 #: ../src/virt-viewer-app.c:2602
414 #: src/virt-viewer-app.c:2854
426415 msgid "Display debugging information"
427416 msgstr "Wyświetla informacje o debugowaniu"
428417
429 #: ../src/virt-viewer-auth.c:89
418 #: src/virt-viewer-auth.c:89
430419 #, c-format
431420 msgid ""
432421 "Authentication is required for the %s connection to:\n"
439428 "<b>%s</b>\n"
440429 "\n"
441430
442 #: ../src/virt-viewer-auth.c:93
431 #: src/virt-viewer-auth.c:93
443432 #, c-format
444433 msgid "Authentication is required for the %s connection:\n"
445434 msgstr "Wymagane jest uwierzytelnienie dla połączenia %s:\n"
446435
447 #.
448 #. * Local variables:
449 #. * c-indent-level: 4
450 #. * c-basic-offset: 4
451 #. * indent-tabs-mode: nil
452 #. * End:
453 #.
454 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
436 #: src/resources/ui/virt-viewer-auth.ui:7
455437 msgid "Authentication required"
456438 msgstr "Wymagane jest uwierzytelnienie"
457439
458 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
440 #: src/resources/ui/virt-viewer-auth.ui:42
459441 msgid "_OK"
460442 msgstr "_OK"
461443
462 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
463 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
464 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
444 #: src/resources/ui/virt-viewer-auth.ui:71
445 #: src/resources/ui/virt-viewer-guest-details.ui:82
446 #: src/resources/ui/virt-viewer-guest-details.ui:96
447 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
465448 msgid "label"
466449 msgstr "etykieta"
467450
468 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
451 #: src/resources/ui/virt-viewer-auth.ui:93
469452 msgid "Password:"
470453 msgstr "Hasło:"
471454
472 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
455 #: src/resources/ui/virt-viewer-auth.ui:105
473456 msgid "Username:"
474457 msgstr "Nazwa użytkownika:"
475458
476 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
459 #: src/resources/ui/virt-viewer-auth.ui:137
477460 msgid "Show password"
478461 msgstr "Wyświetlanie hasła"
479462
480 #: ../src/virt-viewer-display-vnc.c:134
463 #: src/virt-viewer-display-vnc.c:130
481464 msgid "VNC does not provide GUID"
482465 msgstr "VNC nie podaje GUID"
483466
484 #: ../src/virt-viewer-file-transfer-dialog.c:128
467 #: src/virt-viewer-display-vte.c:181
468 msgid "Console support is compiled out!"
469 msgstr "Obsługa konsoli nie jest skompilowana."
470
471 #: src/virt-viewer-file-transfer-dialog.c:124
485472 msgid "File Transfers"
486473 msgstr "Przesyłanie plików"
487474
488 #: ../src/virt-viewer-file-transfer-dialog.c:154
475 #: src/virt-viewer-file-transfer-dialog.c:150
489476 msgid "Transferring 1 file..."
490477 msgstr "Przesyłanie 1 pliku…"
491478
492 #: ../src/virt-viewer-file-transfer-dialog.c:156
493 #, c-format
494 msgid "Transferring %d file of %d..."
495 msgid_plural "Transferring %d files of %d..."
496 msgstr[0] "Przesyłanie %d pliku z %d…"
497 msgstr[1] "Przesyłanie %d plików z %d…"
498 msgstr[2] "Przesyłanie %d plików z %d…"
499
500 #: ../src/virt-viewer-file-transfer-dialog.c:228
501 #, c-format
502 msgid "An error caused the following file transfers to fail:%s"
503 msgstr "Błąd spowodował niepowodzenie przesłania poniższych plików:%s"
504
505 #: ../src/virt-viewer-main.c:38
479 #: src/virt-viewer-file-transfer-dialog.c:152
480 #, c-format
481 msgid "Transferring %u file of %u..."
482 msgid_plural "Transferring %u files of %u..."
483 msgstr[0] "Przesyłanie %u pliku z %u…"
484 msgstr[1] "Przesyłanie %u plików z %u…"
485 msgstr[2] "Przesyłanie %u plików z %u…"
486
487 #: src/virt-viewer-file-transfer-dialog.c:225
488 msgid "An error caused the following file transfers to fail:"
489 msgstr ""
490
491 #: src/virt-viewer-main.c:38
506492 msgid "Virt Viewer"
507493 msgstr "Przeglądarka wirtualizacji"
508494
509 #: ../src/virt-viewer-session-spice.c:704
495 #: src/virt-viewer-session-spice.c:731
510496 msgid "Invalid password"
511497 msgstr "Nieprawidłowe hasło"
512498
513 #. Create the widgets
514 #: ../src/virt-viewer-session-spice.c:802
499 #: src/virt-viewer-session-spice.c:829
515500 msgid "Select USB devices for redirection"
516501 msgstr "Wybór urządzeń USB do przekierowania"
517502
518 #: ../src/virt-viewer-session-spice.c:804
519 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
503 #: src/virt-viewer-session-spice.c:831
504 #: src/resources/ui/virt-viewer-guest-details.ui:23
520505 msgid "_Close"
521506 msgstr "Za_mknij"
522507
523 #: ../src/virt-viewer-session-vnc.c:162
524 #, c-format
525 msgid "Unsupported authentication type %d"
526 msgstr "Nieobsługiwany typ uwierzytelnienia %d"
527
528 #: ../src/virt-viewer-vm-connection.c:64
508 #: src/virt-viewer-session-spice.c:1019
509 msgid "Serial"
510 msgstr "Szeregowo"
511
512 #: src/virt-viewer-session-spice.c:1021
513 msgid "QEMU human monitor"
514 msgstr "Monitorowanie człowieka QEMU"
515
516 #: src/virt-viewer-session-spice.c:1023
517 msgid "QEMU debug console"
518 msgstr "Konsola debugowania QEMU"
519
520 #: src/virt-viewer-session-vnc.c:158
521 #, c-format
522 msgid "Unsupported authentication type %u"
523 msgstr "Nieobsługiwany typ uwierzytelnienia %u"
524
525 #: src/virt-viewer-vm-connection.c:64
529526 msgid "No running virtual machine found"
530 msgstr ""
531
532 #: ../src/virt-viewer-vm-connection.c:93
527 msgstr "Nie odnaleziono żadnej uruchomionej maszyny wirtualnej"
528
529 #: src/virt-viewer-vm-connection.c:93
533530 msgid "No virtual machine was chosen"
534531 msgstr "Nie wybrano maszyny wirtualnej"
535532
536 #: ../src/virt-viewer-window.c:544
533 #: src/virt-viewer-window.c:621
537534 msgid "Ctrl+Alt+_Del"
538535 msgstr "Ctrl+Alt+_Del"
539536
540 #: ../src/virt-viewer-window.c:545
537 #: src/virt-viewer-window.c:622
541538 msgid "Ctrl+Alt+_Backspace"
542539 msgstr "Ctrl+Alt+_Backspace"
543540
544 #: ../src/virt-viewer-window.c:547
541 #: src/virt-viewer-window.c:624
545542 msgid "Ctrl+Alt+F_1"
546543 msgstr "Ctrl+Alt+F_1"
547544
548 #: ../src/virt-viewer-window.c:548
545 #: src/virt-viewer-window.c:625
549546 msgid "Ctrl+Alt+F_2"
550547 msgstr "Ctrl+Alt+F_2"
551548
552 #: ../src/virt-viewer-window.c:549
549 #: src/virt-viewer-window.c:626
553550 msgid "Ctrl+Alt+F_3"
554551 msgstr "Ctrl+Alt+F_3"
555552
556 #: ../src/virt-viewer-window.c:550
553 #: src/virt-viewer-window.c:627
557554 msgid "Ctrl+Alt+F_4"
558555 msgstr "Ctrl+Alt+F_4"
559556
560 #: ../src/virt-viewer-window.c:551
557 #: src/virt-viewer-window.c:628
561558 msgid "Ctrl+Alt+F_5"
562559 msgstr "Ctrl+Alt+F_5"
563560
564 #: ../src/virt-viewer-window.c:552
561 #: src/virt-viewer-window.c:629
565562 msgid "Ctrl+Alt+F_6"
566563 msgstr "Ctrl+Alt+F_6"
567564
568 #: ../src/virt-viewer-window.c:553
565 #: src/virt-viewer-window.c:630
569566 msgid "Ctrl+Alt+F_7"
570567 msgstr "Ctrl+Alt+F_7"
571568
572 #: ../src/virt-viewer-window.c:554
569 #: src/virt-viewer-window.c:631
573570 msgid "Ctrl+Alt+F_8"
574571 msgstr "Ctrl+Alt+F_8"
575572
576 #: ../src/virt-viewer-window.c:555
573 #: src/virt-viewer-window.c:632
577574 msgid "Ctrl+Alt+F_9"
578575 msgstr "Ctrl+Alt+F_9"
579576
580 #: ../src/virt-viewer-window.c:556
577 #: src/virt-viewer-window.c:633
581578 msgid "Ctrl+Alt+F1_0"
582579 msgstr "Ctrl+Alt+F1_0"
583580
584 #: ../src/virt-viewer-window.c:557
581 #: src/virt-viewer-window.c:634
585582 msgid "Ctrl+Alt+F11"
586583 msgstr "Ctrl+Alt+F11"
587584
588 #: ../src/virt-viewer-window.c:558
585 #: src/virt-viewer-window.c:635
589586 msgid "Ctrl+Alt+F12"
590587 msgstr "Ctrl+Alt+F12"
591588
592 #: ../src/virt-viewer-window.c:953
589 #: src/virt-viewer-window.c:637
590 msgid "_PrintScreen"
591 msgstr ""
592
593 #: src/virt-viewer-window.c:1030
593594 #, c-format
594595 msgid "Unable to determine image format for file '%s'"
595 msgstr ""
596
597 #: ../src/virt-viewer-window.c:980
596 msgstr "Nie można ustalić formatu obrazu dla pliku „%s”"
597
598 #: src/virt-viewer-window.c:1053
599 msgid "Save screenshot"
600 msgstr ""
601
602 #: src/virt-viewer-window.c:1057
598603 msgid "_Save"
599604 msgstr "_Zapisz"
600605
601 #: ../src/virt-viewer-window.c:988
606 #: src/virt-viewer-window.c:1065
602607 msgid "Screenshot.png"
603 msgstr ""
604
605 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
608 msgstr "Zrzut ekranu.png"
609
610 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
606611 msgid "Unknown"
607612 msgstr "Nieznane"
608613
609 #: ../src/virt-viewer-window.c:1152
614 #: src/virt-viewer-window.c:1237
610615 msgid "Unable to connnect to oVirt"
611616 msgstr "Nie można połączyć z oVirt"
612617
613 #: ../src/virt-viewer-window.c:1175
618 #: src/virt-viewer-window.c:1260
614619 msgid "Disconnect"
615620 msgstr "Rozłącza"
616621
617 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
622 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
618623 msgid "USB device selection"
619624 msgstr "Wybór urządzenia USB"
620625
621 #: ../src/virt-viewer-window.c:1193
626 #: src/virt-viewer-window.c:1278
622627 msgid "Send key combination"
623628 msgstr "Wysyła kombinację klawiszy"
624629
625 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
630 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
626631 msgid "Leave fullscreen"
627632 msgstr "Opuszcza pełny ekran"
628633
629 #: ../src/virt-viewer-window.c:1279
634 #: src/virt-viewer-window.c:1364
630635 msgid "Ctrl+Alt"
631636 msgstr "Ctrl+Alt"
632637
633 #: ../src/virt-viewer-window.c:1282
638 #: src/virt-viewer-window.c:1367
634639 #, c-format
635640 msgid "(Press %s to release pointer)"
636641 msgstr "(Naciśnięcie klawiszy %s uwalnia wskaźnik)"
637642
638 #. translators:
639 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
640 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
641 #.
642 #: ../src/virt-viewer-window.c:1293
643 #: src/virt-viewer-window.c:1378
643644 #, c-format
644645 msgid "%s%s%s - %s"
645646 msgstr "%s%s%s — %s"
646647
647 #. translators: <space>
648 #: ../src/virt-viewer-window.c:1297
648 #: src/virt-viewer-window.c:1382
649649 msgid " "
650650 msgstr " "
651651
652 #: ../src/virt-viewer-file.c:862
652 #: src/virt-viewer-file.c:875
653653 #, c-format
654654 msgid ""
655655 "At least %s version %s is required to setup this connection, see %s for "
658658 "Wymagane jest %s co najmniej w wersji %s, aby ustawić to połączenie. Więcej "
659659 "informacji: %s"
660660
661 #: ../src/virt-viewer-file.c:870
661 #: src/virt-viewer-file.c:883
662662 #, c-format
663663 msgid "At least %s version %s is required to setup this connection"
664664 msgstr "Wymagane jest %s co najmniej w wersji %s, aby ustawić to połączenie"
665665
666 #: ../src/virt-viewer.c:133
666 #: src/virt-viewer.c:131
667667 msgid "Direct connection with no automatic tunnels"
668668 msgstr "Bezpośrednie połączenie bez automatycznych tuneli"
669669
670 #: ../src/virt-viewer.c:135
670 #: src/virt-viewer.c:133
671671 msgid "Attach to the local display using libvirt"
672672 msgstr "Łączy z lokalnym ekranem za pomocą biblioteki libvirt"
673673
674 #: ../src/virt-viewer.c:137
674 #: src/virt-viewer.c:135
675675 msgid "Connect to hypervisor"
676676 msgstr "Łączy z nadzorcą"
677677
678 #: ../src/virt-viewer.c:139
678 #: src/virt-viewer.c:137
679679 msgid "Wait for domain to start"
680680 msgstr "Oczekuje na uruchomienie domeny"
681681
682 #: ../src/virt-viewer.c:141
682 #: src/virt-viewer.c:139
683683 msgid "Reconnect to domain upon restart"
684684 msgstr "Ponownie łączy z domeną po ponownym uruchomieniu"
685685
686 #: ../src/virt-viewer.c:143
686 #: src/virt-viewer.c:141
687687 msgid "Select the virtual machine only by its name"
688688 msgstr "Wybierz maszynę wirtualną tylko przez jej nazwę"
689689
690 #: ../src/virt-viewer.c:145
690 #: src/virt-viewer.c:143
691691 msgid "Select the virtual machine only by its id"
692692 msgstr "Wybierz maszynę wirtualną tylko przez jej identyfikator"
693693
694 #: ../src/virt-viewer.c:147
694 #: src/virt-viewer.c:145
695695 msgid "Select the virtual machine only by its uuid"
696696 msgstr "Wybierz maszynę wirtualną tylko przez jej UUID"
697697
698 #: ../src/virt-viewer.c:154
698 #: src/virt-viewer.c:152
699699 msgid "Virtual machine graphical console"
700700 msgstr "Graficzna konsola maszyny wirtualnej"
701701
702 #: ../src/virt-viewer.c:173
702 #: src/virt-viewer.c:171
703703 #, c-format
704704 msgid ""
705705 "\n"
710710 "Użycie: %s [OPCJE] [IDENTYFIKATOR|UUID|NAZWA-DOMENY]\n"
711711 "\n"
712712
713 #: ../src/virt-viewer.c:185
713 #: src/virt-viewer.c:183
714714 #, c-format
715715 msgid ""
716716 "\n"
721721 "Nie podano IDENTYFIKATORA|UUID|NAZWY-DOMENY dla „%s”\n"
722722 "\n"
723723
724 #: ../src/virt-viewer.c:300
724 #: src/virt-viewer.c:296
725725 msgid "Waiting for guest domain to re-start"
726726 msgstr "Oczekiwanie na ponowne uruchomienie domeny gościa"
727727
728 #: ../src/virt-viewer.c:554
728 #: src/virt-viewer.c:550
729729 #, c-format
730730 msgid "Cannot determine the graphic type for the guest %s"
731731 msgstr "Nie można określić typu grafiki dla gościa %s"
732732
733 #: ../src/virt-viewer.c:603
733 #: src/virt-viewer.c:599
734734 #, c-format
735735 msgid "Cannot determine the host for the guest %s"
736736 msgstr "Nie można określić gospodarza dla gościa %s"
737737
738 #: ../src/virt-viewer.c:631
738 #: src/virt-viewer.c:627
739739 #, c-format
740740 msgid "Guest '%s' is not reachable"
741741 msgstr "Nie można uzyskać dostępu do gościa „%s”"
742742
743 #: ../src/virt-viewer.c:860
743 #: src/virt-viewer.c:856
744744 #, c-format
745745 msgid "Virtual machine %s is not running"
746746 msgstr "Maszyna wirtualna %s nie jest uruchomiona"
747747
748 #: ../src/virt-viewer.c:884
748 #: src/virt-viewer.c:881
749749 msgid "Waiting for libvirt to start"
750750 msgstr "Oczekiwanie na uruchomienie biblioteki libvirt"
751751
752 #: ../src/virt-viewer.c:888
752 #: src/virt-viewer.c:885
753753 msgid "Finding guest domain"
754754 msgstr "Wyszukiwanie domeny gościa"
755755
756 #: ../src/virt-viewer.c:892
756 #: src/virt-viewer.c:889
757757 msgid "Waiting for guest domain to be created"
758758 msgstr "Oczekiwanie na utworzenie domeny gościa"
759759
760 #: ../src/virt-viewer.c:918
760 #: src/virt-viewer.c:921
761761 msgid "Checking guest domain status"
762762 msgstr "Sprawdzanie stanu domeny gościa"
763763
764 #: ../src/virt-viewer.c:921
764 #: src/virt-viewer.c:924
765765 msgid "Cannot get guest state"
766766 msgstr "Nie można uzyskać stanu gościa"
767767
768 #: ../src/virt-viewer.c:927
768 #: src/virt-viewer.c:930
769769 msgid "Waiting for guest domain to start"
770770 msgstr "Oczekiwanie na uruchomienie domeny gościa"
771771
772 #: ../src/virt-viewer.c:1040
772 #: src/virt-viewer.c:1044
773773 #, c-format
774774 msgid "Unable to connect to libvirt with URI: %s."
775775 msgstr "Nie można połączyć się z biblioteką libvirt za pomocą adresu URI: %s."
776776
777 #: ../src/virt-viewer.c:1041
777 #: src/virt-viewer.c:1045
778778 msgid "[none]"
779779 msgstr "[brak]"
780780
781 #: ../src/virt-viewer.c:1048
781 #: src/virt-viewer.c:1052
782782 msgid "Authentication failed."
783783 msgstr "Uwierzytelnienie się nie powiodło."
784784
785 #: ../src/virt-viewer.c:1108
785 #: src/virt-viewer.c:1112
786786 msgid "Failed to connect: "
787787 msgstr "Połączenie się nie powiodło: "
788788
789 #.
790 #. * Local variables:
791 #. * c-indent-level: 4
792 #. * c-basic-offset: 4
793 #. * indent-tabs-mode: nil
794 #. * End:
795 #.
796 #: ../src/resources/ui/virt-viewer.ui.h:1
789 #: src/resources/ui/virt-viewer.ui:28
797790 msgid "_File"
798791 msgstr "_Plik"
799792
800 #: ../src/resources/ui/virt-viewer.ui.h:2
793 #: src/resources/ui/virt-viewer.ui:41
801794 msgid "_Screenshot"
802795 msgstr "Z_rzut ekranu"
803796
804 #: ../src/resources/ui/virt-viewer.ui.h:3
797 #: src/resources/ui/virt-viewer.ui:52
805798 msgid "_USB device selection"
806799 msgstr "Wybór urządzenia _USB"
807800
808 #: ../src/resources/ui/virt-viewer.ui.h:4
801 #: src/resources/ui/virt-viewer.ui:62
809802 msgid "Smartcard insertion"
810803 msgstr "Włożenie karty smartcard"
811804
812 #: ../src/resources/ui/virt-viewer.ui.h:5
805 #: src/resources/ui/virt-viewer.ui:72
813806 msgid "Smartcard removal"
814807 msgstr "Usunięcie karty smartcard"
815808
816 #: ../src/resources/ui/virt-viewer.ui.h:6
809 #: src/resources/ui/virt-viewer.ui:80
817810 msgid "_Change CD"
818811 msgstr "_Zmień płytę CD"
819812
820 #: ../src/resources/ui/virt-viewer.ui.h:7
813 #: src/resources/ui/virt-viewer.ui:90
821814 msgid "_Preferences"
822815 msgstr "_Preferencje"
823816
824 #: ../src/resources/ui/virt-viewer.ui.h:8
817 #: src/resources/ui/virt-viewer.ui:103
825818 msgid "_Quit"
826819 msgstr "Za_kończ"
827820
828 #: ../src/resources/ui/virt-viewer.ui.h:9
821 #: src/resources/ui/virt-viewer.ui:119
822 msgid "_Machine"
823 msgstr "_Maszyna"
824
825 #: src/resources/ui/virt-viewer.ui:129
826 msgid "_Pause"
827 msgstr "_Wstrzymaj"
828
829 #: src/resources/ui/virt-viewer.ui:144
830 msgid "_Reset"
831 msgstr "_Przywróć"
832
833 #: src/resources/ui/virt-viewer.ui:153
834 msgid "_Power down"
835 msgstr "Wyłą_cz"
836
837 #: src/resources/ui/virt-viewer.ui:167
829838 msgid "_View"
830839 msgstr "_Widok"
831840
832 #: ../src/resources/ui/virt-viewer.ui.h:10
841 #: src/resources/ui/virt-viewer.ui:180
833842 msgid "_Full screen"
834843 msgstr "Pełny _ekran"
835844
836 #: ../src/resources/ui/virt-viewer.ui.h:11
845 #: src/resources/ui/virt-viewer.ui:191
837846 msgid "_Zoom"
838847 msgstr "P_owiększenie"
839848
840 #: ../src/resources/ui/virt-viewer.ui.h:12
849 #: src/resources/ui/virt-viewer.ui:201
841850 msgid "Zoom _In"
842851 msgstr "Przy_bliż"
843852
844 #: ../src/resources/ui/virt-viewer.ui.h:13
853 #: src/resources/ui/virt-viewer.ui:212
845854 msgid "Zoom _Out"
846855 msgstr "_Oddal"
847856
848 #: ../src/resources/ui/virt-viewer.ui.h:14
857 #: src/resources/ui/virt-viewer.ui:229
849858 msgid "_Normal Size"
850859 msgstr "Z_wykły rozmiar"
851860
852 #: ../src/resources/ui/virt-viewer.ui.h:15
861 #: src/resources/ui/virt-viewer.ui:246
853862 msgid "_Displays"
854863 msgstr "_Ekrany"
855864
856 #: ../src/resources/ui/virt-viewer.ui.h:16
865 #: src/resources/ui/virt-viewer.ui:255
857866 msgid "Release cursor"
858867 msgstr "Zwolnienie kursora"
859868
860 #: ../src/resources/ui/virt-viewer.ui.h:17
869 #: src/resources/ui/virt-viewer.ui:270
861870 msgid "_Send key"
862871 msgstr "Wyślij klawi_sz"
863872
864 #: ../src/resources/ui/virt-viewer.ui.h:18
873 #: src/resources/ui/virt-viewer.ui:279
865874 msgid "_Help"
866875 msgstr "Pomo_c"
867876
868 #: ../src/resources/ui/virt-viewer.ui.h:19
877 #: src/resources/ui/virt-viewer.ui:290
869878 msgid "_Guest Details"
870879 msgstr "_Informacje o gościu"
871880
872 #: ../src/resources/ui/virt-viewer.ui.h:20
881 #: src/resources/ui/virt-viewer.ui:297
873882 msgid "_About"
874883 msgstr "_O programie"
875884
876 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
885 #: src/resources/ui/virt-viewer-guest-details.ui:7
877886 msgid "Guest Details"
878887 msgstr "Informacje o gościu"
879888
880 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
889 #: src/resources/ui/virt-viewer-guest-details.ui:56
881890 msgid "Name:"
882891 msgstr "Nazwa:"
883892
884 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
893 #: src/resources/ui/virt-viewer-guest-details.ui:68
885894 msgid "GUID:"
886895 msgstr "GUID:"
887896
888 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
897 #: src/resources/ui/virt-viewer-vm-connection.ui:7
889898 msgid "Choose a virtual machine"
890899 msgstr "Wybór maszyny wirtualnej"
891900
892 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
901 #: src/resources/ui/virt-viewer-vm-connection.ui:96
893902 msgid "Available virtual machines"
894903 msgstr "Dostępne maszyny wirtualne"
895904
896 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
905 #: src/resources/ui/virt-viewer-preferences.ui:8
897906 msgid "Preferences"
898907 msgstr "Preferencje"
899908
900 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
909 #: src/resources/ui/virt-viewer-preferences.ui:48
901910 msgid "Folder sharing"
902911 msgstr "Współdzielenie katalogów"
903912
904 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
913 #: src/resources/ui/virt-viewer-preferences.ui:70
905914 msgid "Share folder"
906915 msgstr "Współdziel katalog"
907916
908 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
917 #: src/resources/ui/virt-viewer-preferences.ui:82
909918 msgid "Read-only"
910919 msgstr "Tylko do odczytu"
911920
912 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
921 #: src/resources/ui/virt-viewer-preferences.ui:96
922 msgid "Share clipboard"
923 msgstr ""
924
925 #: src/resources/ui/virt-viewer-preferences.ui:132
913926 msgid "Spice"
914927 msgstr "Spice"
928
929 #~ msgid "virt-manager.org"
930 #~ msgstr "virt-manager.org"
931
932 #~ msgid "virt-viewer"
933 #~ msgstr "virt-viewer"
Binary diff not shown
+266
-253
po/pt.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Rodrigo de Araujo Sousa Fonseca <rodrigodearaujo@fedoraproject.org>, 2017. #zanata
77 msgid ""
88 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "Report-Msgid-Bugs-To: \n"
11 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
12 "PO-Revision-Date: 2017-01-29 10:04-0500\n"
9 "Project-Id-Version: virt-viewer 9.0\n"
10 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
11 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
12 "PO-Revision-Date: 2017-01-29 10:04+0000\n"
1313 "Last-Translator: Rodrigo de Araujo Sousa Fonseca "
1414 "<rodrigodearaujo@fedoraproject.org>\n"
1515 "Language-Team: Portuguese (http://www.transifex.com/projects/p/virt-viewer/"
1919 "Content-Type: text/plain; charset=UTF-8\n"
2020 "Content-Transfer-Encoding: 8bit\n"
2121 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22 "X-Generator: Zanata 3.9.6\n"
23
24 #: ../data/remote-viewer.appdata.xml.in.h:1
25 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
22 "X-Generator: Zanata 4.6.2\n"
23
24 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
25 #: src/remote-viewer-main.c:39
2626 msgid "Remote Viewer"
2727 msgstr "Visualizador Remoto "
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:2
29 #: data/remote-viewer.appdata.xml.in:7
3030 msgid "Remotely access virtual machines"
3131 msgstr ""
3232
33 #: ../data/remote-viewer.appdata.xml.in.h:3
33 #: data/remote-viewer.appdata.xml.in:9
3434 msgid ""
3535 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3636 "time it supports guest OS using the VNC or SPICE protocols. Further "
3939 "using SSL/TLS encryption."
4040 msgstr ""
4141
42 #: ../data/remote-viewer.desktop.in.h:2
42 #: data/remote-viewer.desktop.in:4
4343 msgid "Access remote desktops"
4444 msgstr ""
4545
46 #: ../data/virt-viewer-mime.xml.in.h:1
47 msgid "Virt-Viewer connection file"
48 msgstr ""
49
50 #: ../src/remote-viewer-iso-list-dialog.c:160
46 #: src/remote-viewer-iso-list-dialog.c:156
5147 msgid "Failed to fetch CD names"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:212
50 #: src/remote-viewer-iso-list-dialog.c:205
5551 msgid "<b>Loading...</b>"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:285
54 #: src/remote-viewer-iso-list-dialog.c:276
5955 msgid "Refresh"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:286
58 #: src/remote-viewer-iso-list-dialog.c:277
6359 msgid "Close"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:306
62 #: src/remote-viewer-iso-list-dialog.c:297
6763 msgid "Unspecified error"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:328
66 #: src/remote-viewer-iso-list-dialog.c:318
7167 msgid "Failed to change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer-iso-list-dialog.c:380
70 #: src/remote-viewer-iso-list-dialog.c:370
7571 msgid "Change CD"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:118
74 #: src/remote-viewer.c:116
7975 msgid "Set window title"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:125
78 #: src/remote-viewer.c:123
8379 msgid "Remote viewer client"
8480 msgstr ""
8581
86 #: ../src/remote-viewer.c:150
87 #, c-format
82 #: src/remote-viewer.c:148
8883 msgid ""
8984 "\n"
9085 "Error: can't handle multiple URIs\n"
9186 "\n"
9287 msgstr ""
9388
94 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
89 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9590 #, c-format
9691 msgid "Run '%s --help' to see a full list of available command line options\n"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:435
94 #: src/remote-viewer.c:429
10095 msgid "failed to parse ovirt uri"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
98 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10499 msgid "Authentication was cancelled"
105100 msgstr ""
106101
107 #: ../src/remote-viewer.c:480
102 #: src/remote-viewer.c:472
108103 #, c-format
109104 msgid "oVirt VM %s is not running"
110105 msgstr ""
111106
112 #: ../src/remote-viewer.c:494
107 #: src/remote-viewer.c:486
113108 #, c-format
114109 msgid "oVirt VM %s has no display"
115110 msgstr ""
116111
117 #: ../src/remote-viewer.c:520
112 #: src/remote-viewer.c:512
118113 #, c-format
119114 msgid "oVirt VM %s has no host information"
120115 msgstr ""
121116
122 #: ../src/remote-viewer.c:531
123 #, c-format
124 msgid "oVirt VM %s has unknown display type: %d"
125 msgstr ""
126
127 #: ../src/remote-viewer.c:713
117 #: src/remote-viewer.c:523
118 #, c-format
119 msgid "oVirt VM %s has unknown display type: %u"
120 msgstr ""
121
122 #: src/remote-viewer.c:690
123 msgid "Couldn't open oVirt session: "
124 msgstr ""
125
126 #: src/remote-viewer.c:718
128127 msgid "Failed to initiate connection"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:742
130 #: src/remote-viewer.c:747
132131 msgid "No connection was chosen"
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:759
134 #: src/remote-viewer.c:764
136135 msgid "Failed to read stdin: "
137136 msgstr ""
138137
139 #: ../src/remote-viewer.c:776
138 #: src/remote-viewer.c:781
140139 #, c-format
141140 msgid "Invalid file %s: "
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:786
143 #: src/remote-viewer.c:791
145144 msgid "Cannot determine the connection type from URI"
146145 msgstr ""
147146
148 #: ../src/remote-viewer.c:792
149 msgid "Couldn't open oVirt session: "
150 msgstr ""
151
152 #: ../src/remote-viewer.c:815
147 #: src/remote-viewer.c:810
153148 #, c-format
154149 msgid "Unable to connect: %s"
155150 msgstr ""
156151
157 #.
158 #. * Local variables:
159 #. * c-indent-level: 4
160 #. * c-basic-offset: 4
161 #. * indent-tabs-mode: nil
162 #. * End:
163 #.
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
152 #: src/resources/ui/remote-viewer-connect.ui:6
165153 msgid "Connection details"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
156 #: src/resources/ui/remote-viewer-connect.ui:24
169157 msgid "Connection _Address"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
160 #: src/resources/ui/remote-viewer-connect.ui:54
173161 msgid "For example, spice://foo.example.org:5900"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
164 #: src/resources/ui/remote-viewer-connect.ui:78
177165 msgid "Recent connections"
178166 msgstr ""
179167
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
181 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
182 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
183 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
168 #: src/resources/ui/remote-viewer-connect.ui:120
169 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
170 #: src/resources/ui/virt-viewer-vm-connection.ui:24
171 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
184172 msgid "_Cancel"
185173 msgstr ""
186174
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
188 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:134
176 #: src/resources/ui/virt-viewer-vm-connection.ui:38
189177 msgid "C_onnect"
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
180 #: src/resources/ui/remote-viewer-iso-list.ui:28
193181 msgid "Loading..."
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
184 #: src/resources/ui/remote-viewer-iso-list.ui:78
197185 msgid "Select ISO"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
188 #: src/resources/ui/remote-viewer-iso-list.ui:116
201189 msgid "Selected"
202190 msgstr ""
203191
204 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
205 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
192 #: src/resources/ui/remote-viewer-iso-list.ui:129
193 #: src/resources/ui/virt-viewer-vm-connection.ui:72
206194 msgid "Name"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:1
197 #: src/resources/ui/virt-viewer-about.ui:7
210198 msgid "About Virt-Viewer"
211199 msgstr ""
212200
213 #: ../src/resources/ui/virt-viewer-about.ui.h:2
201 #: src/resources/ui/virt-viewer-about.ui:16
214202 msgid ""
215203 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
216204 "Copyright (C) 2007-2014 Red Hat, Inc."
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:4
207 #: src/resources/ui/virt-viewer-about.ui:18
220208 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
221209 msgstr ""
222210
223 #: ../src/resources/ui/virt-viewer-about.ui.h:5
224 msgid "virt-manager.org"
225 msgstr ""
226
227 #: ../src/resources/ui/virt-viewer-about.ui.h:6
211 #: src/resources/ui/virt-viewer-about.ui:20
212 msgid "gitlab.com/virt-viewer/virt-viewer"
213 msgstr ""
214
215 #: src/resources/ui/virt-viewer-about.ui:21
228216 msgid ""
229217 "This program is free software; you can redistribute it and/or modify\n"
230218 "it under the terms of the GNU General Public License as published by\n"
241229 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
242230 msgstr ""
243231
244 #: ../src/resources/ui/virt-viewer-about.ui.h:20
232 #: src/resources/ui/virt-viewer-about.ui:38
245233 msgid "The Fedora Translation Team"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:459
236 #: src/virt-viewer-app.c:594
249237 msgid "Do you want to close the session?"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:461
240 #: src/virt-viewer-app.c:596
253241 msgid "Do not ask me again"
254242 msgstr ""
255243
256 #: ../src/virt-viewer-app.c:655
244 #: src/virt-viewer-app.c:767
257245 #, c-format
258246 msgid "Address is too long for unix socket_path: %s"
259247 msgstr ""
260248
261 #: ../src/virt-viewer-app.c:665
249 #: src/virt-viewer-app.c:777
262250 #, c-format
263251 msgid "Creating unix socket failed: %s"
264252 msgstr ""
265253
266 #: ../src/virt-viewer-app.c:671
254 #: src/virt-viewer-app.c:783
267255 #, c-format
268256 msgid "Connecting to unix socket failed: %s"
269257 msgstr ""
270258
271 #: ../src/virt-viewer-app.c:955
259 #: src/virt-viewer-app.c:1077
272260 #, c-format
273261 msgid "Waiting for display %d..."
274262 msgstr ""
275263
276 #: ../src/virt-viewer-app.c:1062
264 #: src/virt-viewer-app.c:1193
277265 #, c-format
278266 msgid "Unsupported graphic type '%s'"
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1146
269 #: src/virt-viewer-app.c:1277
282270 msgid "Connect to ssh failed."
283271 msgstr ""
284272
285 #: ../src/virt-viewer-app.c:1161
273 #: src/virt-viewer-app.c:1292
286274 #, c-format
287275 msgid "Can't connect to channel: %s"
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1163
278 #: src/virt-viewer-app.c:1294
291279 msgid "only SSH or unix socket connection supported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1176
282 #: src/virt-viewer-app.c:1311
295283 msgid "Connect to channel unsupported."
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1238
286 #: src/virt-viewer-app.c:1376
299287 msgid "Display can only be attached through libvirt with --attach"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1263
290 #: src/virt-viewer-app.c:1401
303291 msgid "Connecting to graphic server"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1362
294 #: src/virt-viewer-app.c:1500
307295 msgid "Guest domain has shutdown"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1423
298 #: src/virt-viewer-app.c:1561
311299 msgid "Connected to graphic server"
312300 msgstr ""
313301
314 #: ../src/virt-viewer-app.c:1452
302 #: src/virt-viewer-app.c:1590
315303 #, c-format
316304 msgid "Unable to connect to the graphic server %s"
317305 msgstr ""
318306
319 #: ../src/virt-viewer-app.c:1478
307 #: src/virt-viewer-app.c:1616
320308 #, c-format
321309 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
322310 msgstr ""
323311
324 #: ../src/virt-viewer-app.c:1492
312 #: src/virt-viewer-app.c:1630
325313 #, c-format
326314 msgid "Unable to authenticate with remote desktop server: %s"
327315 msgstr ""
328316
329 #: ../src/virt-viewer-app.c:1500
317 #: src/virt-viewer-app.c:1638
330318 #, c-format
331319 msgid "USB redirection error: %s"
332320 msgstr ""
333321
334 #: ../src/virt-viewer-app.c:1834
322 #: src/virt-viewer-app.c:2026
335323 #, c-format
336324 msgid "Zoom level must be within %d-%d\n"
337325 msgstr ""
338326
339 #: ../src/virt-viewer-app.c:1887
327 #: src/virt-viewer-app.c:2081
340328 #, c-format
341329 msgid "%s\n"
342330 msgstr ""
343331
344 #: ../src/virt-viewer-app.c:1897
332 #: src/virt-viewer-app.c:2091
345333 #, c-format
346334 msgid "%s version %s"
347335 msgstr ""
348336
349 #: ../src/virt-viewer-app.c:2321
337 #: src/virt-viewer-app.c:2545
350338 #, c-format
351339 msgid "Display _%d"
352340 msgstr ""
353341
354 #: ../src/virt-viewer-app.c:2577
342 #: src/virt-viewer-app.c:2829
355343 #, c-format
356344 msgid "Invalid kiosk-quit argument: %s"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2588
347 #: src/virt-viewer-app.c:2840
360348 msgid "Display version information"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2590
351 #: src/virt-viewer-app.c:2842
364352 msgid "Zoom level of window, in percentage"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2592
355 #: src/virt-viewer-app.c:2844
368356 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2594
359 #: src/virt-viewer-app.c:2846
372360 msgid "Customise hotkeys"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2596
363 #: src/virt-viewer-app.c:2848
376364 msgid "Enable kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "Quit on given condition in kiosk mode"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2598
371 #: src/virt-viewer-app.c:2850
384372 msgid "<never|on-disconnect>"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2600
375 #: src/virt-viewer-app.c:2852
388376 msgid "Display verbose information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-app.c:2602
379 #: src/virt-viewer-app.c:2854
392380 msgid "Display debugging information"
393381 msgstr ""
394382
395 #: ../src/virt-viewer-auth.c:89
383 #: src/virt-viewer-auth.c:89
396384 #, c-format
397385 msgid ""
398386 "Authentication is required for the %s connection to:\n"
401389 "\n"
402390 msgstr ""
403391
404 #: ../src/virt-viewer-auth.c:93
392 #: src/virt-viewer-auth.c:93
405393 #, c-format
406394 msgid "Authentication is required for the %s connection:\n"
407395 msgstr ""
408396
409 #.
410 #. * Local variables:
411 #. * c-indent-level: 4
412 #. * c-basic-offset: 4
413 #. * indent-tabs-mode: nil
414 #. * End:
415 #.
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
397 #: src/resources/ui/virt-viewer-auth.ui:7
417398 msgid "Authentication required"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
401 #: src/resources/ui/virt-viewer-auth.ui:42
421402 msgid "_OK"
422403 msgstr ""
423404
424 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
425 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
426 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
405 #: src/resources/ui/virt-viewer-auth.ui:71
406 #: src/resources/ui/virt-viewer-guest-details.ui:82
407 #: src/resources/ui/virt-viewer-guest-details.ui:96
408 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
427409 msgid "label"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
412 #: src/resources/ui/virt-viewer-auth.ui:93
431413 msgid "Password:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
416 #: src/resources/ui/virt-viewer-auth.ui:105
435417 msgid "Username:"
436418 msgstr ""
437419
438 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
420 #: src/resources/ui/virt-viewer-auth.ui:137
439421 msgid "Show password"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-display-vnc.c:134
424 #: src/virt-viewer-display-vnc.c:130
443425 msgid "VNC does not provide GUID"
444426 msgstr ""
445427
446 #: ../src/virt-viewer-file-transfer-dialog.c:128
428 #: src/virt-viewer-display-vte.c:181
429 msgid "Console support is compiled out!"
430 msgstr ""
431
432 #: src/virt-viewer-file-transfer-dialog.c:124
447433 msgid "File Transfers"
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:154
436 #: src/virt-viewer-file-transfer-dialog.c:150
451437 msgid "Transferring 1 file..."
452438 msgstr ""
453439
454 #: ../src/virt-viewer-file-transfer-dialog.c:156
455 #, c-format
456 msgid "Transferring %d file of %d..."
457 msgid_plural "Transferring %d files of %d..."
440 #: src/virt-viewer-file-transfer-dialog.c:152
441 #, c-format
442 msgid "Transferring %u file of %u..."
443 msgid_plural "Transferring %u files of %u..."
458444 msgstr[0] ""
459
460 #: ../src/virt-viewer-file-transfer-dialog.c:228
461 #, c-format
462 msgid "An error caused the following file transfers to fail:%s"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:38
445 msgstr[1] ""
446
447 #: src/virt-viewer-file-transfer-dialog.c:225
448 msgid "An error caused the following file transfers to fail:"
449 msgstr ""
450
451 #: src/virt-viewer-main.c:38
466452 msgid "Virt Viewer"
467453 msgstr ""
468454
469 #: ../src/virt-viewer-session-spice.c:704
455 #: src/virt-viewer-session-spice.c:731
470456 msgid "Invalid password"
471457 msgstr ""
472458
473 #. Create the widgets
474 #: ../src/virt-viewer-session-spice.c:802
459 #: src/virt-viewer-session-spice.c:829
475460 msgid "Select USB devices for redirection"
476461 msgstr ""
477462
478 #: ../src/virt-viewer-session-spice.c:804
479 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
463 #: src/virt-viewer-session-spice.c:831
464 #: src/resources/ui/virt-viewer-guest-details.ui:23
480465 msgid "_Close"
481466 msgstr ""
482467
483 #: ../src/virt-viewer-session-vnc.c:162
484 #, c-format
485 msgid "Unsupported authentication type %d"
486 msgstr ""
487
488 #: ../src/virt-viewer-vm-connection.c:64
468 #: src/virt-viewer-session-spice.c:1019
469 msgid "Serial"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1021
473 msgid "QEMU human monitor"
474 msgstr ""
475
476 #: src/virt-viewer-session-spice.c:1023
477 msgid "QEMU debug console"
478 msgstr ""
479
480 #: src/virt-viewer-session-vnc.c:158
481 #, c-format
482 msgid "Unsupported authentication type %u"
483 msgstr ""
484
485 #: src/virt-viewer-vm-connection.c:64
489486 msgid "No running virtual machine found"
490487 msgstr ""
491488
492 #: ../src/virt-viewer-vm-connection.c:93
489 #: src/virt-viewer-vm-connection.c:93
493490 msgid "No virtual machine was chosen"
494491 msgstr ""
495492
496 #: ../src/virt-viewer-window.c:544
493 #: src/virt-viewer-window.c:621
497494 msgid "Ctrl+Alt+_Del"
498495 msgstr ""
499496
500 #: ../src/virt-viewer-window.c:545
497 #: src/virt-viewer-window.c:622
501498 msgid "Ctrl+Alt+_Backspace"
502499 msgstr ""
503500
504 #: ../src/virt-viewer-window.c:547
501 #: src/virt-viewer-window.c:624
505502 msgid "Ctrl+Alt+F_1"
506503 msgstr "Ctrl+Alt+F_1"
507504
508 #: ../src/virt-viewer-window.c:548
505 #: src/virt-viewer-window.c:625
509506 msgid "Ctrl+Alt+F_2"
510507 msgstr "Ctrl+Alt+F_2"
511508
512 #: ../src/virt-viewer-window.c:549
509 #: src/virt-viewer-window.c:626
513510 msgid "Ctrl+Alt+F_3"
514511 msgstr "Ctrl+Alt+F_3"
515512
516 #: ../src/virt-viewer-window.c:550
513 #: src/virt-viewer-window.c:627
517514 msgid "Ctrl+Alt+F_4"
518515 msgstr "Ctrl+Alt+F_4"
519516
520 #: ../src/virt-viewer-window.c:551
517 #: src/virt-viewer-window.c:628
521518 msgid "Ctrl+Alt+F_5"
522519 msgstr "Ctrl+Alt+F_5"
523520
524 #: ../src/virt-viewer-window.c:552
521 #: src/virt-viewer-window.c:629
525522 msgid "Ctrl+Alt+F_6"
526523 msgstr "Ctrl+Alt+F_6"
527524
528 #: ../src/virt-viewer-window.c:553
525 #: src/virt-viewer-window.c:630
529526 msgid "Ctrl+Alt+F_7"
530527 msgstr "Ctrl+Alt+F_7"
531528
532 #: ../src/virt-viewer-window.c:554
529 #: src/virt-viewer-window.c:631
533530 msgid "Ctrl+Alt+F_8"
534531 msgstr "Ctrl+Alt+F_8"
535532
536 #: ../src/virt-viewer-window.c:555
533 #: src/virt-viewer-window.c:632
537534 msgid "Ctrl+Alt+F_9"
538535 msgstr "Ctrl+Alt+F_9"
539536
540 #: ../src/virt-viewer-window.c:556
537 #: src/virt-viewer-window.c:633
541538 msgid "Ctrl+Alt+F1_0"
542539 msgstr "Ctrl+Alt+F1_0"
543540
544 #: ../src/virt-viewer-window.c:557
541 #: src/virt-viewer-window.c:634
545542 msgid "Ctrl+Alt+F11"
546543 msgstr "Ctrl+Alt+F11"
547544
548 #: ../src/virt-viewer-window.c:558
545 #: src/virt-viewer-window.c:635
549546 msgid "Ctrl+Alt+F12"
550547 msgstr "Ctrl+Alt+F12"
551548
552 #: ../src/virt-viewer-window.c:953
549 #: src/virt-viewer-window.c:637
550 msgid "_PrintScreen"
551 msgstr ""
552
553 #: src/virt-viewer-window.c:1030
553554 #, c-format
554555 msgid "Unable to determine image format for file '%s'"
555556 msgstr ""
556557
557 #: ../src/virt-viewer-window.c:980
558 #: src/virt-viewer-window.c:1053
559 msgid "Save screenshot"
560 msgstr ""
561
562 #: src/virt-viewer-window.c:1057
558563 msgid "_Save"
559564 msgstr ""
560565
561 #: ../src/virt-viewer-window.c:988
566 #: src/virt-viewer-window.c:1065
562567 msgid "Screenshot.png"
563568 msgstr ""
564569
565 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
570 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
566571 msgid "Unknown"
567572 msgstr ""
568573
569 #: ../src/virt-viewer-window.c:1152
574 #: src/virt-viewer-window.c:1237
570575 msgid "Unable to connnect to oVirt"
571576 msgstr ""
572577
573 #: ../src/virt-viewer-window.c:1175
578 #: src/virt-viewer-window.c:1260
574579 msgid "Disconnect"
575580 msgstr ""
576581
577 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
582 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
578583 msgid "USB device selection"
579584 msgstr ""
580585
581 #: ../src/virt-viewer-window.c:1193
586 #: src/virt-viewer-window.c:1278
582587 msgid "Send key combination"
583588 msgstr ""
584589
585 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
590 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
586591 msgid "Leave fullscreen"
587592 msgstr ""
588593
589 #: ../src/virt-viewer-window.c:1279
594 #: src/virt-viewer-window.c:1364
590595 msgid "Ctrl+Alt"
591596 msgstr "Ctrl+Alt"
592597
593 #: ../src/virt-viewer-window.c:1282
598 #: src/virt-viewer-window.c:1367
594599 #, c-format
595600 msgid "(Press %s to release pointer)"
596601 msgstr ""
597602
598 #. translators:
599 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601 #.
602 #: ../src/virt-viewer-window.c:1293
603 #: src/virt-viewer-window.c:1378
603604 #, c-format
604605 msgid "%s%s%s - %s"
605606 msgstr ""
606607
607 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1297
608 #: src/virt-viewer-window.c:1382
609609 msgid " "
610610 msgstr ""
611611
612 #: ../src/virt-viewer-file.c:862
612 #: src/virt-viewer-file.c:875
613613 #, c-format
614614 msgid ""
615615 "At least %s version %s is required to setup this connection, see %s for "
616616 "details"
617617 msgstr ""
618618
619 #: ../src/virt-viewer-file.c:870
619 #: src/virt-viewer-file.c:883
620620 #, c-format
621621 msgid "At least %s version %s is required to setup this connection"
622622 msgstr ""
623623
624 #: ../src/virt-viewer.c:133
624 #: src/virt-viewer.c:131
625625 msgid "Direct connection with no automatic tunnels"
626626 msgstr ""
627627
628 #: ../src/virt-viewer.c:135
628 #: src/virt-viewer.c:133
629629 msgid "Attach to the local display using libvirt"
630630 msgstr ""
631631
632 #: ../src/virt-viewer.c:137
632 #: src/virt-viewer.c:135
633633 msgid "Connect to hypervisor"
634634 msgstr ""
635635
636 #: ../src/virt-viewer.c:139
636 #: src/virt-viewer.c:137
637637 msgid "Wait for domain to start"
638638 msgstr ""
639639
640 #: ../src/virt-viewer.c:141
640 #: src/virt-viewer.c:139
641641 msgid "Reconnect to domain upon restart"
642642 msgstr ""
643643
644 #: ../src/virt-viewer.c:143
644 #: src/virt-viewer.c:141
645645 msgid "Select the virtual machine only by its name"
646646 msgstr ""
647647
648 #: ../src/virt-viewer.c:145
648 #: src/virt-viewer.c:143
649649 msgid "Select the virtual machine only by its id"
650650 msgstr ""
651651
652 #: ../src/virt-viewer.c:147
652 #: src/virt-viewer.c:145
653653 msgid "Select the virtual machine only by its uuid"
654654 msgstr ""
655655
656 #: ../src/virt-viewer.c:154
656 #: src/virt-viewer.c:152
657657 msgid "Virtual machine graphical console"
658658 msgstr ""
659659
660 #: ../src/virt-viewer.c:173
660 #: src/virt-viewer.c:171
661661 #, c-format
662662 msgid ""
663663 "\n"
665665 "\n"
666666 msgstr ""
667667
668 #: ../src/virt-viewer.c:185
668 #: src/virt-viewer.c:183
669669 #, c-format
670670 msgid ""
671671 "\n"
673673 "\n"
674674 msgstr ""
675675
676 #: ../src/virt-viewer.c:300
676 #: src/virt-viewer.c:296
677677 msgid "Waiting for guest domain to re-start"
678678 msgstr ""
679679
680 #: ../src/virt-viewer.c:554
680 #: src/virt-viewer.c:550
681681 #, c-format
682682 msgid "Cannot determine the graphic type for the guest %s"
683683 msgstr ""
684684
685 #: ../src/virt-viewer.c:603
685 #: src/virt-viewer.c:599
686686 #, c-format
687687 msgid "Cannot determine the host for the guest %s"
688688 msgstr ""
689689
690 #: ../src/virt-viewer.c:631
690 #: src/virt-viewer.c:627
691691 #, c-format
692692 msgid "Guest '%s' is not reachable"
693693 msgstr ""
694694
695 #: ../src/virt-viewer.c:860
695 #: src/virt-viewer.c:856
696696 #, c-format
697697 msgid "Virtual machine %s is not running"
698698 msgstr ""
699699
700 #: ../src/virt-viewer.c:884
700 #: src/virt-viewer.c:881
701701 msgid "Waiting for libvirt to start"
702702 msgstr ""
703703
704 #: ../src/virt-viewer.c:888
704 #: src/virt-viewer.c:885
705705 msgid "Finding guest domain"
706706 msgstr ""
707707
708 #: ../src/virt-viewer.c:892
708 #: src/virt-viewer.c:889
709709 msgid "Waiting for guest domain to be created"
710710 msgstr ""
711711
712 #: ../src/virt-viewer.c:918
712 #: src/virt-viewer.c:921
713713 msgid "Checking guest domain status"
714714 msgstr ""
715715
716 #: ../src/virt-viewer.c:921
716 #: src/virt-viewer.c:924
717717 msgid "Cannot get guest state"
718718 msgstr ""
719719
720 #: ../src/virt-viewer.c:927
720 #: src/virt-viewer.c:930
721721 msgid "Waiting for guest domain to start"
722722 msgstr ""
723723
724 #: ../src/virt-viewer.c:1040
724 #: src/virt-viewer.c:1044
725725 #, c-format
726726 msgid "Unable to connect to libvirt with URI: %s."
727727 msgstr ""
728728
729 #: ../src/virt-viewer.c:1041
729 #: src/virt-viewer.c:1045
730730 msgid "[none]"
731731 msgstr ""
732732
733 #: ../src/virt-viewer.c:1048
733 #: src/virt-viewer.c:1052
734734 msgid "Authentication failed."
735735 msgstr ""
736736
737 #: ../src/virt-viewer.c:1108
737 #: src/virt-viewer.c:1112
738738 msgid "Failed to connect: "
739739 msgstr ""
740740
741 #.
742 #. * Local variables:
743 #. * c-indent-level: 4
744 #. * c-basic-offset: 4
745 #. * indent-tabs-mode: nil
746 #. * End:
747 #.
748 #: ../src/resources/ui/virt-viewer.ui.h:1
741 #: src/resources/ui/virt-viewer.ui:28
749742 msgid "_File"
750743 msgstr ""
751744
752 #: ../src/resources/ui/virt-viewer.ui.h:2
745 #: src/resources/ui/virt-viewer.ui:41
753746 msgid "_Screenshot"
754747 msgstr ""
755748
756 #: ../src/resources/ui/virt-viewer.ui.h:3
749 #: src/resources/ui/virt-viewer.ui:52
757750 msgid "_USB device selection"
758751 msgstr ""
759752
760 #: ../src/resources/ui/virt-viewer.ui.h:4
753 #: src/resources/ui/virt-viewer.ui:62
761754 msgid "Smartcard insertion"
762755 msgstr ""
763756
764 #: ../src/resources/ui/virt-viewer.ui.h:5
757 #: src/resources/ui/virt-viewer.ui:72
765758 msgid "Smartcard removal"
766759 msgstr ""
767760
768 #: ../src/resources/ui/virt-viewer.ui.h:6
761 #: src/resources/ui/virt-viewer.ui:80
769762 msgid "_Change CD"
770763 msgstr ""
771764
772 #: ../src/resources/ui/virt-viewer.ui.h:7
765 #: src/resources/ui/virt-viewer.ui:90
773766 msgid "_Preferences"
774767 msgstr ""
775768
776 #: ../src/resources/ui/virt-viewer.ui.h:8
769 #: src/resources/ui/virt-viewer.ui:103
777770 msgid "_Quit"
778771 msgstr ""
779772
780 #: ../src/resources/ui/virt-viewer.ui.h:9
773 #: src/resources/ui/virt-viewer.ui:119
774 msgid "_Machine"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:129
778 msgid "_Pause"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:144
782 msgid "_Reset"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:153
786 msgid "_Power down"
787 msgstr ""
788
789 #: src/resources/ui/virt-viewer.ui:167
781790 msgid "_View"
782791 msgstr ""
783792
784 #: ../src/resources/ui/virt-viewer.ui.h:10
793 #: src/resources/ui/virt-viewer.ui:180
785794 msgid "_Full screen"
786795 msgstr ""
787796
788 #: ../src/resources/ui/virt-viewer.ui.h:11
797 #: src/resources/ui/virt-viewer.ui:191
789798 msgid "_Zoom"
790799 msgstr ""
791800
792 #: ../src/resources/ui/virt-viewer.ui.h:12
801 #: src/resources/ui/virt-viewer.ui:201
793802 msgid "Zoom _In"
794803 msgstr ""
795804
796 #: ../src/resources/ui/virt-viewer.ui.h:13
805 #: src/resources/ui/virt-viewer.ui:212
797806 msgid "Zoom _Out"
798807 msgstr ""
799808
800 #: ../src/resources/ui/virt-viewer.ui.h:14
809 #: src/resources/ui/virt-viewer.ui:229
801810 msgid "_Normal Size"
802811 msgstr ""
803812
804 #: ../src/resources/ui/virt-viewer.ui.h:15
813 #: src/resources/ui/virt-viewer.ui:246
805814 msgid "_Displays"
806815 msgstr ""
807816
808 #: ../src/resources/ui/virt-viewer.ui.h:16
817 #: src/resources/ui/virt-viewer.ui:255
809818 msgid "Release cursor"
810819 msgstr ""
811820
812 #: ../src/resources/ui/virt-viewer.ui.h:17
821 #: src/resources/ui/virt-viewer.ui:270
813822 msgid "_Send key"
814823 msgstr ""
815824
816 #: ../src/resources/ui/virt-viewer.ui.h:18
825 #: src/resources/ui/virt-viewer.ui:279
817826 msgid "_Help"
818827 msgstr ""
819828
820 #: ../src/resources/ui/virt-viewer.ui.h:19
829 #: src/resources/ui/virt-viewer.ui:290
821830 msgid "_Guest Details"
822831 msgstr ""
823832
824 #: ../src/resources/ui/virt-viewer.ui.h:20
833 #: src/resources/ui/virt-viewer.ui:297
825834 msgid "_About"
826835 msgstr ""
827836
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
837 #: src/resources/ui/virt-viewer-guest-details.ui:7
829838 msgid "Guest Details"
830839 msgstr ""
831840
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
841 #: src/resources/ui/virt-viewer-guest-details.ui:56
833842 msgid "Name:"
834843 msgstr ""
835844
836 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
845 #: src/resources/ui/virt-viewer-guest-details.ui:68
837846 msgid "GUID:"
838847 msgstr ""
839848
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
849 #: src/resources/ui/virt-viewer-vm-connection.ui:7
841850 msgid "Choose a virtual machine"
842851 msgstr ""
843852
844 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
853 #: src/resources/ui/virt-viewer-vm-connection.ui:96
845854 msgid "Available virtual machines"
846855 msgstr ""
847856
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
857 #: src/resources/ui/virt-viewer-preferences.ui:8
849858 msgid "Preferences"
850859 msgstr ""
851860
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
861 #: src/resources/ui/virt-viewer-preferences.ui:48
853862 msgid "Folder sharing"
854863 msgstr ""
855864
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
865 #: src/resources/ui/virt-viewer-preferences.ui:70
857866 msgid "Share folder"
858867 msgstr ""
859868
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
869 #: src/resources/ui/virt-viewer-preferences.ui:82
861870 msgid "Read-only"
862871 msgstr ""
863872
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
873 #: src/resources/ui/virt-viewer-preferences.ui:96
874 msgid "Share clipboard"
875 msgstr ""
876
877 #: src/resources/ui/virt-viewer-preferences.ui:132
865878 msgid "Spice"
866879 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
88 # Paulo Sergio Klaus <klauspaulo@gmail.com>, 2014
99 # Daniel Lara <danniel@fedoraproject.org>, 2016. #zanata
1010 # Frederico Henrique Gonçalves Lima <fred@fredericolima.com.br>, 2016. #zanata
11 # Henrique Montemor Junqueira <hickijunqueira@hotmail.com>, 2018. #zanata
1112 msgid ""
1213 msgstr ""
13 "Project-Id-Version: PACKAGE VERSION\n"
14 "Report-Msgid-Bugs-To: \n"
15 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
16 "PO-Revision-Date: 2016-07-26 09:34-0400\n"
17 "Last-Translator: Daniel Lara <danniel@fedoraproject.org>\n"
14 "Project-Id-Version: virt-viewer 9.0\n"
15 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
16 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
17 "PO-Revision-Date: 2018-04-02 12:44+0000\n"
18 "Last-Translator: Henrique Montemor Junqueira <hickijunqueira@hotmail.com>\n"
1819 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/virt-"
1920 "viewer/language/pt_BR/)\n"
20 "Language: pt-BR\n"
21 "Language: pt_BR\n"
2122 "MIME-Version: 1.0\n"
2223 "Content-Type: text/plain; charset=UTF-8\n"
2324 "Content-Transfer-Encoding: 8bit\n"
2425 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
25 "X-Generator: Zanata 3.9.6\n"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:1
28 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
26 "X-Generator: Zanata 4.6.2\n"
27
28 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
29 #: src/remote-viewer-main.c:39
2930 msgid "Remote Viewer"
3031 msgstr "Visualizador remoto"
3132
32 #: ../data/remote-viewer.appdata.xml.in.h:2
33 #: data/remote-viewer.appdata.xml.in:7
3334 msgid "Remotely access virtual machines"
3435 msgstr "Acessar remotamente máquinas virtuais"
3536
36 #: ../data/remote-viewer.appdata.xml.in.h:3
37 #: data/remote-viewer.appdata.xml.in:9
3738 msgid ""
3839 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3940 "time it supports guest OS using the VNC or SPICE protocols. Further "
4849 "pode se conectar diretamente ao local e remotamente hospedado sistema "
4950 "operacional convidado, opcionalmente usando criptografia SSL / TLS."
5051
51 #: ../data/remote-viewer.desktop.in.h:2
52 #: data/remote-viewer.desktop.in:4
5253 msgid "Access remote desktops"
5354 msgstr "Acesso remoto computadores"
5455
55 #: ../data/virt-viewer-mime.xml.in.h:1
56 msgid "Virt-Viewer connection file"
57 msgstr "Virt-Viewer arquivo conexão"
58
59 #: ../src/remote-viewer-iso-list-dialog.c:160
56 #: src/remote-viewer-iso-list-dialog.c:156
6057 msgid "Failed to fetch CD names"
61 msgstr ""
62
63 #: ../src/remote-viewer-iso-list-dialog.c:212
58 msgstr "Falha ao buscar nomes de CD"
59
60 #: src/remote-viewer-iso-list-dialog.c:205
6461 msgid "<b>Loading...</b>"
65 msgstr ""
66
67 #: ../src/remote-viewer-iso-list-dialog.c:285
62 msgstr "<b>Carregando...<b>"
63
64 #: src/remote-viewer-iso-list-dialog.c:276
6865 msgid "Refresh"
69 msgstr ""
70
71 #: ../src/remote-viewer-iso-list-dialog.c:286
66 msgstr "Recarregue"
67
68 #: src/remote-viewer-iso-list-dialog.c:277
7269 msgid "Close"
73 msgstr ""
74
75 #: ../src/remote-viewer-iso-list-dialog.c:306
70 msgstr "Feche"
71
72 #: src/remote-viewer-iso-list-dialog.c:297
7673 msgid "Unspecified error"
77 msgstr ""
78
79 #: ../src/remote-viewer-iso-list-dialog.c:328
74 msgstr "Erro não especificado"
75
76 #: src/remote-viewer-iso-list-dialog.c:318
8077 msgid "Failed to change CD"
81 msgstr ""
82
83 #: ../src/remote-viewer-iso-list-dialog.c:380
78 msgstr "Falha ao alterar o CD"
79
80 #: src/remote-viewer-iso-list-dialog.c:370
8481 msgid "Change CD"
85 msgstr ""
86
87 #: ../src/remote-viewer.c:118
82 msgstr "Altere o CD"
83
84 #: src/remote-viewer.c:116
8885 msgid "Set window title"
8986 msgstr "Setando título da janela"
9087
91 #: ../src/remote-viewer.c:125
88 #: src/remote-viewer.c:123
9289 msgid "Remote viewer client"
9390 msgstr "Visualizador remoto"
9491
95 #: ../src/remote-viewer.c:150
96 #, c-format
92 #: src/remote-viewer.c:148
9793 msgid ""
9894 "\n"
9995 "Error: can't handle multiple URIs\n"
10298 "\n"
10399 "Erro: não é possível manipular múltiplas URIs\n"
104100
105 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
101 #: src/remote-viewer.c:162 src/virt-viewer.c:200
106102 #, c-format
107103 msgid "Run '%s --help' to see a full list of available command line options\n"
108104 msgstr ""
109105 "Execute '%s --help' para ver uma lista completa das opções de linha de "
110106 "comando disponíveis\n"
111107
112 #: ../src/remote-viewer.c:435
108 #: src/remote-viewer.c:429
113109 msgid "failed to parse ovirt uri"
114110 msgstr "falha ao analisar o uri do ovirt"
115111
116 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
112 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
117113 msgid "Authentication was cancelled"
118114 msgstr "Autenticação cancelada"
119115
120 #: ../src/remote-viewer.c:480
116 #: src/remote-viewer.c:472
121117 #, c-format
122118 msgid "oVirt VM %s is not running"
123119 msgstr "A MV %s no oVirt não está em execução"
124120
125 #: ../src/remote-viewer.c:494
121 #: src/remote-viewer.c:486
126122 #, c-format
127123 msgid "oVirt VM %s has no display"
128124 msgstr "A MV %s no oVirt não possui exibição"
129125
130 #: ../src/remote-viewer.c:520
126 #: src/remote-viewer.c:512
131127 #, c-format
132128 msgid "oVirt VM %s has no host information"
133129 msgstr "A MV %s no oVirt não possui informações sobre o host "
134130
135 #: ../src/remote-viewer.c:531
136 #, c-format
137 msgid "oVirt VM %s has unknown display type: %d"
138 msgstr "A MV %s no oVirt possui um tipo de exibição desconhecido: %d"
139
140 #: ../src/remote-viewer.c:713
131 #: src/remote-viewer.c:523
132 #, c-format
133 msgid "oVirt VM %s has unknown display type: %u"
134 msgstr ""
135
136 #: src/remote-viewer.c:690
137 msgid "Couldn't open oVirt session: "
138 msgstr "não foi possível abrir a sessão do oVirt:"
139
140 #: src/remote-viewer.c:718
141141 msgid "Failed to initiate connection"
142142 msgstr "Falha ao iniciar a conexão "
143143
144 #: ../src/remote-viewer.c:742
144 #: src/remote-viewer.c:747
145145 msgid "No connection was chosen"
146146 msgstr "Nenhuma conexão selecionada"
147147
148 #: ../src/remote-viewer.c:759
148 #: src/remote-viewer.c:764
149149 msgid "Failed to read stdin: "
150 msgstr ""
151
152 #: ../src/remote-viewer.c:776
150 msgstr "Falha ao ler stdin:"
151
152 #: src/remote-viewer.c:781
153153 #, c-format
154154 msgid "Invalid file %s: "
155155 msgstr "Arquivo inválido %s: "
156156
157 #: ../src/remote-viewer.c:786
157 #: src/remote-viewer.c:791
158158 msgid "Cannot determine the connection type from URI"
159159 msgstr "Não foi possíve determinar o tipo de conexão a partir do URI"
160160
161 #: ../src/remote-viewer.c:792
162 msgid "Couldn't open oVirt session: "
163 msgstr "não foi possível abrir a sessão do oVirt:"
164
165 #: ../src/remote-viewer.c:815
161 #: src/remote-viewer.c:810
166162 #, c-format
167163 msgid "Unable to connect: %s"
168 msgstr ""
169
170 #.
171 #. * Local variables:
172 #. * c-indent-level: 4
173 #. * c-basic-offset: 4
174 #. * indent-tabs-mode: nil
175 #. * End:
176 #.
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
164 msgstr "Não foi possível conectar: %s"
165
166 #: src/resources/ui/remote-viewer-connect.ui:6
178167 msgid "Connection details"
179168 msgstr "Detalhes da conexão"
180169
181 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
170 #: src/resources/ui/remote-viewer-connect.ui:24
182171 msgid "Connection _Address"
183172 msgstr "Endereço _Conexão"
184173
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
174 #: src/resources/ui/remote-viewer-connect.ui:54
186175 msgid "For example, spice://foo.example.org:5900"
187176 msgstr "Por exemplo, spice://foo.example.org:5900"
188177
189 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
178 #: src/resources/ui/remote-viewer-connect.ui:78
190179 msgid "Recent connections"
191180 msgstr "Conexões recentes"
192181
193 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
194 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
195 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
196 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
182 #: src/resources/ui/remote-viewer-connect.ui:120
183 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
184 #: src/resources/ui/virt-viewer-vm-connection.ui:24
185 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
197186 msgid "_Cancel"
198187 msgstr "_Cancelar"
199188
200 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
189 #: src/resources/ui/remote-viewer-connect.ui:134
190 #: src/resources/ui/virt-viewer-vm-connection.ui:38
202191 msgid "C_onnect"
203192 msgstr "C_onectar"
204193
205 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
194 #: src/resources/ui/remote-viewer-iso-list.ui:28
206195 msgid "Loading..."
207 msgstr ""
208
209 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
196 msgstr "Carregando..."
197
198 #: src/resources/ui/remote-viewer-iso-list.ui:78
210199 msgid "Select ISO"
211 msgstr ""
212
213 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
200 msgstr "Selecione o arquivo ISO"
201
202 #: src/resources/ui/remote-viewer-iso-list.ui:116
214203 msgid "Selected"
215 msgstr ""
216
217 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
218 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
204 msgstr "Selecionado"
205
206 #: src/resources/ui/remote-viewer-iso-list.ui:129
207 #: src/resources/ui/virt-viewer-vm-connection.ui:72
219208 msgid "Name"
220209 msgstr "Nome"
221210
222 #: ../src/resources/ui/virt-viewer-about.ui.h:1
211 #: src/resources/ui/virt-viewer-about.ui:7
223212 msgid "About Virt-Viewer"
224213 msgstr "Sobre Virt-Viewer"
225214
226 #: ../src/resources/ui/virt-viewer-about.ui.h:2
215 #: src/resources/ui/virt-viewer-about.ui:16
227216 msgid ""
228217 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
229218 "Copyright (C) 2007-2014 Red Hat, Inc."
231220 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
232221 "Copyright (C) 2007-2014 Red Hat, Inc."
233222
234 #: ../src/resources/ui/virt-viewer-about.ui.h:4
223 #: src/resources/ui/virt-viewer-about.ui:18
235224 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
236225 msgstr ""
237226 "Um cliente de desktop remoto construído com o GTK-VNC, SPICE-GTK e libvirt"
238227
239 #: ../src/resources/ui/virt-viewer-about.ui.h:5
240 msgid "virt-manager.org"
241 msgstr "virt-manager.org"
242
243 #: ../src/resources/ui/virt-viewer-about.ui.h:6
228 #: src/resources/ui/virt-viewer-about.ui:20
229 msgid "gitlab.com/virt-viewer/virt-viewer"
230 msgstr ""
231
232 #: src/resources/ui/virt-viewer-about.ui:21
244233 msgid ""
245234 "This program is free software; you can redistribute it and/or modify\n"
246235 "it under the terms of the GNU General Public License as published by\n"
270259 "este programa; Caso não o tenha recebido, escreva para a Fundação de "
271260 "Software Livre, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
272261
273 #: ../src/resources/ui/virt-viewer-about.ui.h:20
262 #: src/resources/ui/virt-viewer-about.ui:38
274263 msgid "The Fedora Translation Team"
275264 msgstr "A equipe de Tradução do Fedora "
276265
277 #: ../src/virt-viewer-app.c:459
266 #: src/virt-viewer-app.c:594
278267 msgid "Do you want to close the session?"
279268 msgstr "Você quer fechar a sessão?"
280269
281 #: ../src/virt-viewer-app.c:461
270 #: src/virt-viewer-app.c:596
282271 msgid "Do not ask me again"
283272 msgstr "Não me pergunte novamente"
284273
285 #: ../src/virt-viewer-app.c:655
274 #: src/virt-viewer-app.c:767
286275 #, c-format
287276 msgid "Address is too long for unix socket_path: %s"
288277 msgstr ""
289
290 #: ../src/virt-viewer-app.c:665
278 "O endereço é muito longo para o unix socket_path (caminho do soquete unix) : "
279 "%s"
280
281 #: src/virt-viewer-app.c:777
291282 #, c-format
292283 msgid "Creating unix socket failed: %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:671
284 msgstr "Criação do soquete unix falhou: %s"
285
286 #: src/virt-viewer-app.c:783
296287 #, c-format
297288 msgid "Connecting to unix socket failed: %s"
298 msgstr ""
299
300 #: ../src/virt-viewer-app.c:955
289 msgstr "Conexão com o soquete do unix falhou: %s"
290
291 #: src/virt-viewer-app.c:1077
301292 #, c-format
302293 msgid "Waiting for display %d..."
303294 msgstr "Esperando pelo display %d..."
304295
305 #: ../src/virt-viewer-app.c:1062
296 #: src/virt-viewer-app.c:1193
306297 #, c-format
307298 msgid "Unsupported graphic type '%s'"
308299 msgstr "Tipo de gráfico '%s' sem suporte"
309300
310 #: ../src/virt-viewer-app.c:1146
301 #: src/virt-viewer-app.c:1277
311302 msgid "Connect to ssh failed."
312303 msgstr "Falha ao conectar com o ssh."
313304
314 #: ../src/virt-viewer-app.c:1161
305 #: src/virt-viewer-app.c:1292
315306 #, c-format
316307 msgid "Can't connect to channel: %s"
317 msgstr ""
318
319 #: ../src/virt-viewer-app.c:1163
308 msgstr "Não é possível conectar ao canal: %s"
309
310 #: src/virt-viewer-app.c:1294
320311 msgid "only SSH or unix socket connection supported."
321 msgstr ""
322
323 #: ../src/virt-viewer-app.c:1176
312 msgstr "Somente conexões SSH ou soquete unix são suportadas."
313
314 #: src/virt-viewer-app.c:1311
324315 msgid "Connect to channel unsupported."
325316 msgstr "A conexão com o canal não é suportada."
326317
327 #: ../src/virt-viewer-app.c:1238
318 #: src/virt-viewer-app.c:1376
328319 msgid "Display can only be attached through libvirt with --attach"
329320 msgstr "A exibição pode ser anexada somente através do libvirt com --attach"
330321
331 #: ../src/virt-viewer-app.c:1263
322 #: src/virt-viewer-app.c:1401
332323 msgid "Connecting to graphic server"
333324 msgstr "Conectando ao servidor de gráfico"
334325
335 #: ../src/virt-viewer-app.c:1362
326 #: src/virt-viewer-app.c:1500
336327 msgid "Guest domain has shutdown"
337328 msgstr "Domínio de convidado precisa ser fechado"
338329
339 #: ../src/virt-viewer-app.c:1423
330 #: src/virt-viewer-app.c:1561
340331 msgid "Connected to graphic server"
341332 msgstr "Conectado ao servidor de gráfico"
342333
343 #: ../src/virt-viewer-app.c:1452
334 #: src/virt-viewer-app.c:1590
344335 #, c-format
345336 msgid "Unable to connect to the graphic server %s"
346337 msgstr "Incapaz de conectar ao servidor de gráfico %s"
347338
348 #: ../src/virt-viewer-app.c:1478
339 #: src/virt-viewer-app.c:1616
349340 #, c-format
350341 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
351342 msgstr ""
352343 "Não é possível fazer a autenticação com o servidor da área de trabalho "
353344 "remota em %s: %s\n"
354345
355 #: ../src/virt-viewer-app.c:1492
346 #: src/virt-viewer-app.c:1630
356347 #, c-format
357348 msgid "Unable to authenticate with remote desktop server: %s"
358349 msgstr "Incapaz de autenticar com o servidor remoto: %s"
359350
360 #: ../src/virt-viewer-app.c:1500
351 #: src/virt-viewer-app.c:1638
361352 #, c-format
362353 msgid "USB redirection error: %s"
363354 msgstr "Erro de redirecionamento do USB:%s"
364355
365 #: ../src/virt-viewer-app.c:1834
356 #: src/virt-viewer-app.c:2026
366357 #, c-format
367358 msgid "Zoom level must be within %d-%d\n"
368359 msgstr "Zoom nível deve ser dentro de %d-%d\n"
369360
370 #: ../src/virt-viewer-app.c:1887
361 #: src/virt-viewer-app.c:2081
371362 #, c-format
372363 msgid "%s\n"
373364 msgstr "%s\n"
374365
375 #: ../src/virt-viewer-app.c:1897
366 #: src/virt-viewer-app.c:2091
376367 #, c-format
377368 msgid "%s version %s"
378369 msgstr "%s versão %s"
379370
380 #: ../src/virt-viewer-app.c:2321
371 #: src/virt-viewer-app.c:2545
381372 #, c-format
382373 msgid "Display _%d"
383374 msgstr "Display _%d"
384375
385 #: ../src/virt-viewer-app.c:2577
376 #: src/virt-viewer-app.c:2829
386377 #, c-format
387378 msgid "Invalid kiosk-quit argument: %s"
388379 msgstr "Inválido kiosk-quit argumento: %s"
389380
390 #: ../src/virt-viewer-app.c:2588
381 #: src/virt-viewer-app.c:2840
391382 msgid "Display version information"
392383 msgstr "Exibir informações de versão"
393384
394 #: ../src/virt-viewer-app.c:2590
385 #: src/virt-viewer-app.c:2842
395386 msgid "Zoom level of window, in percentage"
396387 msgstr "Nível de zoom da janela, em porcentagem"
397388
398 #: ../src/virt-viewer-app.c:2592
389 #: src/virt-viewer-app.c:2844
399390 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
400391 msgstr ""
401392 "Abra no modo tela cheia (ajusta a resolução do convidado para caber no "
402393 "cliente)"
403394
404 #: ../src/virt-viewer-app.c:2594
395 #: src/virt-viewer-app.c:2846
405396 msgid "Customise hotkeys"
406397 msgstr "Personalize teclas de atalho "
407398
408 #: ../src/virt-viewer-app.c:2596
399 #: src/virt-viewer-app.c:2848
409400 msgid "Enable kiosk mode"
410401 msgstr "Ativar kiosk modo"
411402
412 #: ../src/virt-viewer-app.c:2598
403 #: src/virt-viewer-app.c:2850
413404 msgid "Quit on given condition in kiosk mode"
414405 msgstr "Sair em determinada condição em kiosk modo "
415406
416 #: ../src/virt-viewer-app.c:2598
407 #: src/virt-viewer-app.c:2850
417408 msgid "<never|on-disconnect>"
418409 msgstr "<never|on-disconnect>"
419410
420 #: ../src/virt-viewer-app.c:2600
411 #: src/virt-viewer-app.c:2852
421412 msgid "Display verbose information"
422413 msgstr "Exibir informações de verbose"
423414
424 #: ../src/virt-viewer-app.c:2602
415 #: src/virt-viewer-app.c:2854
425416 msgid "Display debugging information"
426417 msgstr "Exibir informações de depuração"
427418
428 #: ../src/virt-viewer-auth.c:89
419 #: src/virt-viewer-auth.c:89
429420 #, c-format
430421 msgid ""
431422 "Authentication is required for the %s connection to:\n"
437428 "\n"
438429 "<b>%s</b>\n"
439430
440 #: ../src/virt-viewer-auth.c:93
431 #: src/virt-viewer-auth.c:93
441432 #, c-format
442433 msgid "Authentication is required for the %s connection:\n"
443434 msgstr "Autenticação necessária para a conexão de %s:\n"
444435
445 #.
446 #. * Local variables:
447 #. * c-indent-level: 4
448 #. * c-basic-offset: 4
449 #. * indent-tabs-mode: nil
450 #. * End:
451 #.
452 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
436 #: src/resources/ui/virt-viewer-auth.ui:7
453437 msgid "Authentication required"
454438 msgstr "Autenticação requerida"
455439
456 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
440 #: src/resources/ui/virt-viewer-auth.ui:42
457441 msgid "_OK"
458442 msgstr "_OK"
459443
460 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
461 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
462 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
444 #: src/resources/ui/virt-viewer-auth.ui:71
445 #: src/resources/ui/virt-viewer-guest-details.ui:82
446 #: src/resources/ui/virt-viewer-guest-details.ui:96
447 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
463448 msgid "label"
464449 msgstr "rótulo"
465450
466 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
451 #: src/resources/ui/virt-viewer-auth.ui:93
467452 msgid "Password:"
468453 msgstr "Senha:"
469454
470 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
455 #: src/resources/ui/virt-viewer-auth.ui:105
471456 msgid "Username:"
472457 msgstr "Nome de usuário:"
473458
474 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
459 #: src/resources/ui/virt-viewer-auth.ui:137
475460 msgid "Show password"
476461 msgstr "Exibir senha"
477462
478 #: ../src/virt-viewer-display-vnc.c:134
463 #: src/virt-viewer-display-vnc.c:130
479464 msgid "VNC does not provide GUID"
480465 msgstr "O VNC não fornece o GUID"
481466
482 #: ../src/virt-viewer-file-transfer-dialog.c:128
467 #: src/virt-viewer-display-vte.c:181
468 msgid "Console support is compiled out!"
469 msgstr ""
470
471 #: src/virt-viewer-file-transfer-dialog.c:124
483472 msgid "File Transfers"
484473 msgstr "Transferências de Arquivos"
485474
486 #: ../src/virt-viewer-file-transfer-dialog.c:154
475 #: src/virt-viewer-file-transfer-dialog.c:150
487476 msgid "Transferring 1 file..."
488 msgstr ""
489
490 #: ../src/virt-viewer-file-transfer-dialog.c:156
491 #, c-format
492 msgid "Transferring %d file of %d..."
493 msgid_plural "Transferring %d files of %d..."
477 msgstr "Transferindo 1 arquivo..."
478
479 #: src/virt-viewer-file-transfer-dialog.c:152
480 #, c-format
481 msgid "Transferring %u file of %u..."
482 msgid_plural "Transferring %u files of %u..."
494483 msgstr[0] ""
495
496 #: ../src/virt-viewer-file-transfer-dialog.c:228
497 #, c-format
498 msgid "An error caused the following file transfers to fail:%s"
499 msgstr ""
500
501 #: ../src/virt-viewer-main.c:38
484 msgstr[1] ""
485
486 #: src/virt-viewer-file-transfer-dialog.c:225
487 msgid "An error caused the following file transfers to fail:"
488 msgstr ""
489
490 #: src/virt-viewer-main.c:38
502491 msgid "Virt Viewer"
503492 msgstr "Visualizador do Virt"
504493
505 #: ../src/virt-viewer-session-spice.c:704
494 #: src/virt-viewer-session-spice.c:731
506495 msgid "Invalid password"
507496 msgstr "Senha inválida"
508497
509 #. Create the widgets
510 #: ../src/virt-viewer-session-spice.c:802
498 #: src/virt-viewer-session-spice.c:829
511499 msgid "Select USB devices for redirection"
512500 msgstr "Selecionar os dispositivos do USB para redirecionamento"
513501
514 #: ../src/virt-viewer-session-spice.c:804
515 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
502 #: src/virt-viewer-session-spice.c:831
503 #: src/resources/ui/virt-viewer-guest-details.ui:23
516504 msgid "_Close"
517505 msgstr "_Fechar"
518506
519 #: ../src/virt-viewer-session-vnc.c:162
520 #, c-format
521 msgid "Unsupported authentication type %d"
522 msgstr "Autenticação não suportada tipo %d"
523
524 #: ../src/virt-viewer-vm-connection.c:64
507 #: src/virt-viewer-session-spice.c:1019
508 msgid "Serial"
509 msgstr ""
510
511 #: src/virt-viewer-session-spice.c:1021
512 msgid "QEMU human monitor"
513 msgstr ""
514
515 #: src/virt-viewer-session-spice.c:1023
516 msgid "QEMU debug console"
517 msgstr ""
518
519 #: src/virt-viewer-session-vnc.c:158
520 #, c-format
521 msgid "Unsupported authentication type %u"
522 msgstr ""
523
524 #: src/virt-viewer-vm-connection.c:64
525525 msgid "No running virtual machine found"
526 msgstr ""
527
528 #: ../src/virt-viewer-vm-connection.c:93
526 msgstr "Nenhuma máquina virtual em execução encontrada."
527
528 #: src/virt-viewer-vm-connection.c:93
529529 msgid "No virtual machine was chosen"
530530 msgstr "Nenhuma máquina virtual foi selecionada"
531531
532 #: ../src/virt-viewer-window.c:544
532 #: src/virt-viewer-window.c:621
533533 msgid "Ctrl+Alt+_Del"
534534 msgstr "Ctrl+Alt+_Del"
535535
536 #: ../src/virt-viewer-window.c:545
536 #: src/virt-viewer-window.c:622
537537 msgid "Ctrl+Alt+_Backspace"
538538 msgstr "Ctrl+Alt+_Backspace"
539539
540 #: ../src/virt-viewer-window.c:547
540 #: src/virt-viewer-window.c:624
541541 msgid "Ctrl+Alt+F_1"
542542 msgstr "Ctrl+Alt+F_1"
543543
544 #: ../src/virt-viewer-window.c:548
544 #: src/virt-viewer-window.c:625
545545 msgid "Ctrl+Alt+F_2"
546546 msgstr "Ctrl+Alt+F_2"
547547
548 #: ../src/virt-viewer-window.c:549
548 #: src/virt-viewer-window.c:626
549549 msgid "Ctrl+Alt+F_3"
550550 msgstr "Ctrl+Alt+F_3"
551551
552 #: ../src/virt-viewer-window.c:550
552 #: src/virt-viewer-window.c:627
553553 msgid "Ctrl+Alt+F_4"
554554 msgstr "Ctrl+Alt+F_4"
555555
556 #: ../src/virt-viewer-window.c:551
556 #: src/virt-viewer-window.c:628
557557 msgid "Ctrl+Alt+F_5"
558558 msgstr "Ctrl+Alt+F_5"
559559
560 #: ../src/virt-viewer-window.c:552
560 #: src/virt-viewer-window.c:629
561561 msgid "Ctrl+Alt+F_6"
562562 msgstr "Ctrl+Alt+F_6"
563563
564 #: ../src/virt-viewer-window.c:553
564 #: src/virt-viewer-window.c:630
565565 msgid "Ctrl+Alt+F_7"
566566 msgstr "Ctrl+Alt+F_7"
567567
568 #: ../src/virt-viewer-window.c:554
568 #: src/virt-viewer-window.c:631
569569 msgid "Ctrl+Alt+F_8"
570570 msgstr "Ctrl+Alt+F_8"
571571
572 #: ../src/virt-viewer-window.c:555
572 #: src/virt-viewer-window.c:632
573573 msgid "Ctrl+Alt+F_9"
574574 msgstr "Ctrl+Alt+F_9"
575575
576 #: ../src/virt-viewer-window.c:556
576 #: src/virt-viewer-window.c:633
577577 msgid "Ctrl+Alt+F1_0"
578578 msgstr "Ctrl+Alt+F1_0"
579579
580 #: ../src/virt-viewer-window.c:557
580 #: src/virt-viewer-window.c:634
581581 msgid "Ctrl+Alt+F11"
582582 msgstr "Ctrl+Alt+F11"
583583
584 #: ../src/virt-viewer-window.c:558
584 #: src/virt-viewer-window.c:635
585585 msgid "Ctrl+Alt+F12"
586586 msgstr "Ctrl+Alt+F12"
587587
588 #: ../src/virt-viewer-window.c:953
588 #: src/virt-viewer-window.c:637
589 msgid "_PrintScreen"
590 msgstr ""
591
592 #: src/virt-viewer-window.c:1030
589593 #, c-format
590594 msgid "Unable to determine image format for file '%s'"
591 msgstr ""
592
593 #: ../src/virt-viewer-window.c:980
595 msgstr "Não é possível determinar o formato da imagem para o arquivo '%s'"
596
597 #: src/virt-viewer-window.c:1053
598 msgid "Save screenshot"
599 msgstr ""
600
601 #: src/virt-viewer-window.c:1057
594602 msgid "_Save"
595603 msgstr "_Salvar"
596604
597 #: ../src/virt-viewer-window.c:988
605 #: src/virt-viewer-window.c:1065
598606 msgid "Screenshot.png"
599 msgstr ""
600
601 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
607 msgstr "CapturaDeTela.png"
608
609 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
602610 msgid "Unknown"
603611 msgstr "Desconhecido"
604612
605 #: ../src/virt-viewer-window.c:1152
613 #: src/virt-viewer-window.c:1237
606614 msgid "Unable to connnect to oVirt"
607 msgstr ""
608
609 #: ../src/virt-viewer-window.c:1175
615 msgstr "Não é possível conectar-se ao oVirt"
616
617 #: src/virt-viewer-window.c:1260
610618 msgid "Disconnect"
611619 msgstr "Desconectar"
612620
613 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
621 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
614622 msgid "USB device selection"
615623 msgstr "Seleção de dispositivo de USB"
616624
617 #: ../src/virt-viewer-window.c:1193
625 #: src/virt-viewer-window.c:1278
618626 msgid "Send key combination"
619627 msgstr "Enviar combinação de teclas"
620628
621 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
629 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
622630 msgid "Leave fullscreen"
623631 msgstr "Deixar tela cheia"
624632
625 #: ../src/virt-viewer-window.c:1279
633 #: src/virt-viewer-window.c:1364
626634 msgid "Ctrl+Alt"
627635 msgstr "Ctrl+Alt"
628636
629 #: ../src/virt-viewer-window.c:1282
637 #: src/virt-viewer-window.c:1367
630638 #, c-format
631639 msgid "(Press %s to release pointer)"
632640 msgstr "(Pressione %s para liberar o ponteiro)"
633641
634 #. translators:
635 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
636 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
637 #.
638 #: ../src/virt-viewer-window.c:1293
642 #: src/virt-viewer-window.c:1378
639643 #, c-format
640644 msgid "%s%s%s - %s"
641645 msgstr "%s%s%s - %s"
642646
643 #. translators: <space>
644 #: ../src/virt-viewer-window.c:1297
647 #: src/virt-viewer-window.c:1382
645648 msgid " "
646649 msgstr " "
647650
648 #: ../src/virt-viewer-file.c:862
651 #: src/virt-viewer-file.c:875
649652 #, c-format
650653 msgid ""
651654 "At least %s version %s is required to setup this connection, see %s for "
654657 "É necessário pelo menos %s versão %s para configurar esta conexão, consulte "
655658 "%s para mais detalhes"
656659
657 #: ../src/virt-viewer-file.c:870
660 #: src/virt-viewer-file.c:883
658661 #, c-format
659662 msgid "At least %s version %s is required to setup this connection"
660663 msgstr "Pelo menos %s versão %s é necessária para configurar esta conexão"
661664
662 #: ../src/virt-viewer.c:133
665 #: src/virt-viewer.c:131
663666 msgid "Direct connection with no automatic tunnels"
664667 msgstr "Conexão direta com os túneis automáticos"
665668
666 #: ../src/virt-viewer.c:135
669 #: src/virt-viewer.c:133
667670 msgid "Attach to the local display using libvirt"
668671 msgstr "Anexar ao display local usando o libvirt"
669672
670 #: ../src/virt-viewer.c:137
673 #: src/virt-viewer.c:135
671674 msgid "Connect to hypervisor"
672675 msgstr "Conectar ao hypervisor"
673676
674 #: ../src/virt-viewer.c:139
677 #: src/virt-viewer.c:137
675678 msgid "Wait for domain to start"
676679 msgstr "Esperar pelo domínio para iniciar"
677680
678 #: ../src/virt-viewer.c:141
681 #: src/virt-viewer.c:139
679682 msgid "Reconnect to domain upon restart"
680683 msgstr "Reconectar ao domínio no reinício"
681684
682 #: ../src/virt-viewer.c:143
685 #: src/virt-viewer.c:141
683686 msgid "Select the virtual machine only by its name"
684 msgstr ""
685
686 #: ../src/virt-viewer.c:145
687 msgstr "Selecione a máquina virtual apenas pelo nome"
688
689 #: src/virt-viewer.c:143
687690 msgid "Select the virtual machine only by its id"
688 msgstr ""
689
690 #: ../src/virt-viewer.c:147
691 msgstr "Selecione a máquina virtual apenas pelo seu id"
692
693 #: src/virt-viewer.c:145
691694 msgid "Select the virtual machine only by its uuid"
692 msgstr ""
693
694 #: ../src/virt-viewer.c:154
695 msgstr "Selecione a máquina virtual apenas pelo seu uuid"
696
697 #: src/virt-viewer.c:152
695698 msgid "Virtual machine graphical console"
696699 msgstr "Console gráfico da máquina virtual "
697700
698 #: ../src/virt-viewer.c:173
701 #: src/virt-viewer.c:171
699702 #, c-format
700703 msgid ""
701704 "\n"
703706 "\n"
704707 msgstr ""
705708
706 #: ../src/virt-viewer.c:185
709 #: src/virt-viewer.c:183
707710 #, c-format
708711 msgid ""
709712 "\n"
711714 "\n"
712715 msgstr ""
713716
714 #: ../src/virt-viewer.c:300
717 #: src/virt-viewer.c:296
715718 msgid "Waiting for guest domain to re-start"
716719 msgstr "Esperando pelo domínio do convidado para reiniciar"
717720
718 #: ../src/virt-viewer.c:554
721 #: src/virt-viewer.c:550
719722 #, c-format
720723 msgid "Cannot determine the graphic type for the guest %s"
721724 msgstr "Não é possível determinar o tipo de gráfico para o convidado %s"
722725
723 #: ../src/virt-viewer.c:603
726 #: src/virt-viewer.c:599
724727 #, c-format
725728 msgid "Cannot determine the host for the guest %s"
726729 msgstr "Não foi possível determinar o host para os convidados %s"
727730
728 #: ../src/virt-viewer.c:631
731 #: src/virt-viewer.c:627
729732 #, c-format
730733 msgid "Guest '%s' is not reachable"
731734 msgstr "O convidado '%s' não pode ser acessado"
732735
733 #: ../src/virt-viewer.c:860
736 #: src/virt-viewer.c:856
734737 #, c-format
735738 msgid "Virtual machine %s is not running"
736739 msgstr "A máquina virtual %s não está em execução"
737740
738 #: ../src/virt-viewer.c:884
741 #: src/virt-viewer.c:881
739742 msgid "Waiting for libvirt to start"
740743 msgstr "Aguardando libvirt para iniciar"
741744
742 #: ../src/virt-viewer.c:888
745 #: src/virt-viewer.c:885
743746 msgid "Finding guest domain"
744747 msgstr "Encontrando o domínio do convidado"
745748
746 #: ../src/virt-viewer.c:892
749 #: src/virt-viewer.c:889
747750 msgid "Waiting for guest domain to be created"
748751 msgstr "Esperando pelo domínio do convidado a ser criado"
749752
750 #: ../src/virt-viewer.c:918
753 #: src/virt-viewer.c:921
751754 msgid "Checking guest domain status"
752755 msgstr "Verificando o status do domínio do convidado"
753756
754 #: ../src/virt-viewer.c:921
757 #: src/virt-viewer.c:924
755758 msgid "Cannot get guest state"
756759 msgstr "Não é possível obter o estado do convidado "
757760
758 #: ../src/virt-viewer.c:927
761 #: src/virt-viewer.c:930
759762 msgid "Waiting for guest domain to start"
760763 msgstr "Esperando pelo domínio do convidado para iniciar"
761764
762 #: ../src/virt-viewer.c:1040
765 #: src/virt-viewer.c:1044
763766 #, c-format
764767 msgid "Unable to connect to libvirt with URI: %s."
765768 msgstr "Não é possível conectar-se ao libvirt com o URI: %s."
766769
767 #: ../src/virt-viewer.c:1041
770 #: src/virt-viewer.c:1045
768771 msgid "[none]"
769772 msgstr "[nenhum]"
770773
771 #: ../src/virt-viewer.c:1048
774 #: src/virt-viewer.c:1052
772775 msgid "Authentication failed."
773776 msgstr "falha na autenticação."
774777
775 #: ../src/virt-viewer.c:1108
778 #: src/virt-viewer.c:1112
776779 msgid "Failed to connect: "
777780 msgstr "Falha ao conectar-se: "
778781
779 #.
780 #. * Local variables:
781 #. * c-indent-level: 4
782 #. * c-basic-offset: 4
783 #. * indent-tabs-mode: nil
784 #. * End:
785 #.
786 #: ../src/resources/ui/virt-viewer.ui.h:1
782 #: src/resources/ui/virt-viewer.ui:28
787783 msgid "_File"
788784 msgstr "_Arquivo"
789785
790 #: ../src/resources/ui/virt-viewer.ui.h:2
786 #: src/resources/ui/virt-viewer.ui:41
791787 msgid "_Screenshot"
792788 msgstr "_Screenshot"
793789
794 #: ../src/resources/ui/virt-viewer.ui.h:3
790 #: src/resources/ui/virt-viewer.ui:52
795791 msgid "_USB device selection"
796792 msgstr "_seleção do dispositivo USB"
797793
798 #: ../src/resources/ui/virt-viewer.ui.h:4
794 #: src/resources/ui/virt-viewer.ui:62
799795 msgid "Smartcard insertion"
800796 msgstr "Inserção do Smartcard "
801797
802 #: ../src/resources/ui/virt-viewer.ui.h:5
798 #: src/resources/ui/virt-viewer.ui:72
803799 msgid "Smartcard removal"
804800 msgstr "Remoção do Smartcard"
805801
806 #: ../src/resources/ui/virt-viewer.ui.h:6
802 #: src/resources/ui/virt-viewer.ui:80
807803 msgid "_Change CD"
808804 msgstr "Alterar _CD"
809805
810 #: ../src/resources/ui/virt-viewer.ui.h:7
806 #: src/resources/ui/virt-viewer.ui:90
811807 msgid "_Preferences"
812808 msgstr "_Preferências"
813809
814 #: ../src/resources/ui/virt-viewer.ui.h:8
810 #: src/resources/ui/virt-viewer.ui:103
815811 msgid "_Quit"
816812 msgstr "_Sair"
817813
818 #: ../src/resources/ui/virt-viewer.ui.h:9
814 #: src/resources/ui/virt-viewer.ui:119
815 msgid "_Machine"
816 msgstr ""
817
818 #: src/resources/ui/virt-viewer.ui:129
819 msgid "_Pause"
820 msgstr ""
821
822 #: src/resources/ui/virt-viewer.ui:144
823 msgid "_Reset"
824 msgstr ""
825
826 #: src/resources/ui/virt-viewer.ui:153
827 msgid "_Power down"
828 msgstr ""
829
830 #: src/resources/ui/virt-viewer.ui:167
819831 msgid "_View"
820832 msgstr "_Visualizar"
821833
822 #: ../src/resources/ui/virt-viewer.ui.h:10
834 #: src/resources/ui/virt-viewer.ui:180
823835 msgid "_Full screen"
824836 msgstr "_Full screen"
825837
826 #: ../src/resources/ui/virt-viewer.ui.h:11
838 #: src/resources/ui/virt-viewer.ui:191
827839 msgid "_Zoom"
828840 msgstr "_Zoom"
829841
830 #: ../src/resources/ui/virt-viewer.ui.h:12
842 #: src/resources/ui/virt-viewer.ui:201
831843 msgid "Zoom _In"
832844 msgstr "_Mais Zoom"
833845
834 #: ../src/resources/ui/virt-viewer.ui.h:13
846 #: src/resources/ui/virt-viewer.ui:212
835847 msgid "Zoom _Out"
836848 msgstr "_Menos Zoom"
837849
838 #: ../src/resources/ui/virt-viewer.ui.h:14
850 #: src/resources/ui/virt-viewer.ui:229
839851 msgid "_Normal Size"
840852 msgstr "_Tamanho normal"
841853
842 #: ../src/resources/ui/virt-viewer.ui.h:15
854 #: src/resources/ui/virt-viewer.ui:246
843855 msgid "_Displays"
844856 msgstr "_Displays"
845857
846 #: ../src/resources/ui/virt-viewer.ui.h:16
858 #: src/resources/ui/virt-viewer.ui:255
847859 msgid "Release cursor"
848860 msgstr "Liberar o cursor"
849861
850 #: ../src/resources/ui/virt-viewer.ui.h:17
862 #: src/resources/ui/virt-viewer.ui:270
851863 msgid "_Send key"
852864 msgstr "_Chave de Envio"
853865
854 #: ../src/resources/ui/virt-viewer.ui.h:18
866 #: src/resources/ui/virt-viewer.ui:279
855867 msgid "_Help"
856868 msgstr "_Ajuda"
857869
858 #: ../src/resources/ui/virt-viewer.ui.h:19
870 #: src/resources/ui/virt-viewer.ui:290
859871 msgid "_Guest Details"
860872 msgstr "_Detalhes do Convidado"
861873
862 #: ../src/resources/ui/virt-viewer.ui.h:20
874 #: src/resources/ui/virt-viewer.ui:297
863875 msgid "_About"
864876 msgstr "_Sobre"
865877
866 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
878 #: src/resources/ui/virt-viewer-guest-details.ui:7
867879 msgid "Guest Details"
868880 msgstr "Detalhes do Convidado"
869881
870 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
882 #: src/resources/ui/virt-viewer-guest-details.ui:56
871883 msgid "Name:"
872884 msgstr "Nome:"
873885
874 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
886 #: src/resources/ui/virt-viewer-guest-details.ui:68
875887 msgid "GUID:"
876888 msgstr "GUID:"
877889
878 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
890 #: src/resources/ui/virt-viewer-vm-connection.ui:7
879891 msgid "Choose a virtual machine"
880892 msgstr "Escolha uma máquina virtual"
881893
882 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
894 #: src/resources/ui/virt-viewer-vm-connection.ui:96
883895 msgid "Available virtual machines"
884896 msgstr "Máquinas virtuais disponíveis"
885897
886 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
898 #: src/resources/ui/virt-viewer-preferences.ui:8
887899 msgid "Preferences"
888900 msgstr "Preferências"
889901
890 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
902 #: src/resources/ui/virt-viewer-preferences.ui:48
891903 msgid "Folder sharing"
892904 msgstr "Compartilhamento de pasta"
893905
894 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
906 #: src/resources/ui/virt-viewer-preferences.ui:70
895907 msgid "Share folder"
896908 msgstr "Compartilhar pasta"
897909
898 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
910 #: src/resources/ui/virt-viewer-preferences.ui:82
899911 msgid "Read-only"
900912 msgstr "Somente leitura"
901913
902 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
914 #: src/resources/ui/virt-viewer-preferences.ui:96
915 msgid "Share clipboard"
916 msgstr ""
917
918 #: src/resources/ui/virt-viewer-preferences.ui:132
903919 msgid "Spice"
904920 msgstr "Spice"
921
922 #~ msgid "virt-manager.org"
923 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/ro.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Romanian\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
1818 "20)) ? 1 : 2);\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444
459 #: ../src/virt-viewer-file-transfer-dialog.c:228
460 #, c-format
461 msgid "An error caused the following file transfers to fail:%s"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:38
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
465450 msgid "Virt Viewer"
466451 msgstr ""
467452
468 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
469454 msgid "Invalid password"
470455 msgstr ""
471456
472 #. Create the widgets
473 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
474458 msgid "Select USB devices for redirection"
475459 msgstr ""
476460
477 #: ../src/virt-viewer-session-spice.c:804
478 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
479463 msgid "_Close"
480464 msgstr ""
481465
482 #: ../src/virt-viewer-session-vnc.c:162
483 #, c-format
484 msgid "Unsupported authentication type %d"
485 msgstr ""
486
487 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
488484 msgid "No running virtual machine found"
489485 msgstr ""
490486
491 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
492488 msgid "No virtual machine was chosen"
493489 msgstr ""
494490
495 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
496492 msgid "Ctrl+Alt+_Del"
497493 msgstr ""
498494
499 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
500496 msgid "Ctrl+Alt+_Backspace"
501497 msgstr ""
502498
503 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
504500 msgid "Ctrl+Alt+F_1"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
508504 msgid "Ctrl+Alt+F_2"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
512508 msgid "Ctrl+Alt+F_3"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
516512 msgid "Ctrl+Alt+F_4"
517513 msgstr ""
518514
519 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
520516 msgid "Ctrl+Alt+F_5"
521517 msgstr ""
522518
523 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
524520 msgid "Ctrl+Alt+F_6"
525521 msgstr ""
526522
527 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
528524 msgid "Ctrl+Alt+F_7"
529525 msgstr ""
530526
531 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
532528 msgid "Ctrl+Alt+F_8"
533529 msgstr ""
534530
535 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
536532 msgid "Ctrl+Alt+F_9"
537533 msgstr ""
538534
539 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
540536 msgid "Ctrl+Alt+F1_0"
541537 msgstr ""
542538
543 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
544540 msgid "Ctrl+Alt+F11"
545541 msgstr ""
546542
547 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
548544 msgid "Ctrl+Alt+F12"
549545 msgstr ""
550546
551 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
552552 #, c-format
553553 msgid "Unable to determine image format for file '%s'"
554554 msgstr ""
555555
556 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
557561 msgid "_Save"
558562 msgstr ""
559563
560 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
561565 msgid "Screenshot.png"
562566 msgstr ""
563567
564 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
565569 msgid "Unknown"
566570 msgstr ""
567571
568 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
569573 msgid "Unable to connnect to oVirt"
570574 msgstr ""
571575
572 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
573577 msgid "Disconnect"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
577581 msgid "USB device selection"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
581585 msgid "Send key combination"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
585589 msgid "Leave fullscreen"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
589593 msgid "Ctrl+Alt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
593597 #, c-format
594598 msgid "(Press %s to release pointer)"
595599 msgstr ""
596600
597 #. translators:
598 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600 #.
601 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
602602 #, c-format
603603 msgid "%s%s%s - %s"
604604 msgstr ""
605605
606 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
608607 msgid " "
609608 msgstr ""
610609
611 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
612611 #, c-format
613612 msgid ""
614613 "At least %s version %s is required to setup this connection, see %s for "
615614 "details"
616615 msgstr ""
617616
618 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
619618 #, c-format
620619 msgid "At least %s version %s is required to setup this connection"
621620 msgstr ""
622621
623 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
624623 msgid "Direct connection with no automatic tunnels"
625624 msgstr ""
626625
627 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
628627 msgid "Attach to the local display using libvirt"
629628 msgstr ""
630629
631 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
632631 msgid "Connect to hypervisor"
633632 msgstr ""
634633
635 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
636635 msgid "Wait for domain to start"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
640639 msgid "Reconnect to domain upon restart"
641640 msgstr ""
642641
643 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
644643 msgid "Select the virtual machine only by its name"
645644 msgstr ""
646645
647 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
648647 msgid "Select the virtual machine only by its id"
649648 msgstr ""
650649
651 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
652651 msgid "Select the virtual machine only by its uuid"
653652 msgstr ""
654653
655 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
656655 msgid "Virtual machine graphical console"
657656 msgstr ""
658657
659 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
660659 #, c-format
661660 msgid ""
662661 "\n"
664663 "\n"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
668667 #, c-format
669668 msgid ""
670669 "\n"
672671 "\n"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
676675 msgid "Waiting for guest domain to re-start"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
680679 #, c-format
681680 msgid "Cannot determine the graphic type for the guest %s"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
685684 #, c-format
686685 msgid "Cannot determine the host for the guest %s"
687686 msgstr ""
688687
689 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
690689 #, c-format
691690 msgid "Guest '%s' is not reachable"
692691 msgstr ""
693692
694 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
695694 #, c-format
696695 msgid "Virtual machine %s is not running"
697696 msgstr ""
698697
699 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
700699 msgid "Waiting for libvirt to start"
701700 msgstr ""
702701
703 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
704703 msgid "Finding guest domain"
705704 msgstr ""
706705
707 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
708707 msgid "Waiting for guest domain to be created"
709708 msgstr ""
710709
711 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
712711 msgid "Checking guest domain status"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
716715 msgid "Cannot get guest state"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
720719 msgid "Waiting for guest domain to start"
721720 msgstr ""
722721
723 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
724723 #, c-format
725724 msgid "Unable to connect to libvirt with URI: %s."
726725 msgstr ""
727726
728 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
729728 msgid "[none]"
730729 msgstr ""
731730
732 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
733732 msgid "Authentication failed."
734733 msgstr ""
735734
736 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
737736 msgid "Failed to connect: "
738737 msgstr ""
739738
740 #.
741 #. * Local variables:
742 #. * c-indent-level: 4
743 #. * c-basic-offset: 4
744 #. * indent-tabs-mode: nil
745 #. * End:
746 #.
747 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
748740 msgid "_File"
749741 msgstr ""
750742
751 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
752744 msgid "_Screenshot"
753745 msgstr ""
754746
755 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
756748 msgid "_USB device selection"
757749 msgstr ""
758750
759 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
760752 msgid "Smartcard insertion"
761753 msgstr ""
762754
763 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
764756 msgid "Smartcard removal"
765757 msgstr ""
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
768760 msgid "_Change CD"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
772764 msgid "_Preferences"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
776768 msgid "_Quit"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
780788 msgid "_View"
781789 msgstr ""
782790
783 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
784792 msgid "_Full screen"
785793 msgstr ""
786794
787 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
788796 msgid "_Zoom"
789797 msgstr ""
790798
791 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
792800 msgid "Zoom _In"
793801 msgstr ""
794802
795 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
796804 msgid "Zoom _Out"
797805 msgstr ""
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
800808 msgid "_Normal Size"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
804812 msgid "_Displays"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
808816 msgid "Release cursor"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
812820 msgid "_Send key"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
816824 msgid "_Help"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
820828 msgid "_Guest Details"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
824832 msgid "_About"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
828836 msgid "Guest Details"
829837 msgstr ""
830838
831 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
832840 msgid "Name:"
833841 msgstr ""
834842
835 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
836844 msgid "GUID:"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
840848 msgid "Choose a virtual machine"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
844852 msgid "Available virtual machines"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
848856 msgid "Preferences"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
852860 msgid "Folder sharing"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
856864 msgid "Share folder"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
860868 msgid "Read-only"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
864876 msgid "Spice"
865877 msgstr ""
Binary diff not shown
+477
-436
po/ru.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1010 # Ilyas B Arinov <arinov.ilyas@gmail.com>, 2015. #zanata
1111 # yuliya <ypoyarko@redhat.com>, 2015. #zanata
1212 # yuliya <ypoyarko@redhat.com>, 2016. #zanata
13 # Dmitry Astankov <mornie@basealt.ru>, 2019. #zanata
1314 msgid ""
1415 msgstr ""
15 "Project-Id-Version: PACKAGE VERSION\n"
16 "Report-Msgid-Bugs-To: \n"
17 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
18 "PO-Revision-Date: 2016-04-01 12:38-0400\n"
19 "Last-Translator: yuliya <ypoyarko@redhat.com>\n"
16 "Project-Id-Version: virt-viewer 9.0\n"
17 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
18 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
19 "PO-Revision-Date: 2019-04-19 08:47+0000\n"
20 "Last-Translator: Dmitry Astankov <mornie@basealt.ru>\n"
2021 "Language-Team: Russian (http://www.transifex.com/projects/p/virt-viewer/"
2122 "language/ru/)\n"
2223 "Language: ru\n"
2526 "Content-Transfer-Encoding: 8bit\n"
2627 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
2728 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
28 "X-Generator: Zanata 3.9.6\n"
29
30 #: ../data/remote-viewer.appdata.xml.in.h:1
31 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
29 "X-Generator: Zanata 4.6.2\n"
30
31 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
32 #: src/remote-viewer-main.c:39
3233 msgid "Remote Viewer"
33 msgstr "Удаленный рабочий стол"
34
35 #: ../data/remote-viewer.appdata.xml.in.h:2
34 msgstr "Удалённый рабочий стол"
35
36 #: data/remote-viewer.appdata.xml.in:7
3637 msgid "Remotely access virtual machines"
37 msgstr ""
38
39 #: ../data/remote-viewer.appdata.xml.in.h:3
38 msgstr "Удалённый доступ к виртуальным машинам"
39
40 #: data/remote-viewer.appdata.xml.in:9
4041 msgid ""
4142 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
4243 "time it supports guest OS using the VNC or SPICE protocols. Further "
4445 "can connect directly to both local and remotely hosted guest OS, optionally "
4546 "using SSL/TLS encryption."
4647 msgstr ""
47
48 #: ../data/remote-viewer.desktop.in.h:2
48 "Удалённый рабочий стол предоставляет графическую оболочку для отображения "
49 "гостевой ОС. На текущий момент поддерживается подключение по протоколам VNC "
50 "и SPICE. По мере появления пользовательских запросов в дальнейшем может быть "
51 "добавлена поддержка и других протоколов. Программа просмотра может "
52 "подключаться напрямую как к локальной, так и к удалённой гостевой ОС, при "
53 "необходимости используя шифрование SSL/TLS."
54
55 #: data/remote-viewer.desktop.in:4
4956 msgid "Access remote desktops"
50 msgstr "Доступ к удаленному рабочему столу"
51
52 #: ../data/virt-viewer-mime.xml.in.h:1
53 msgid "Virt-Viewer connection file"
54 msgstr "Файл соединения virt-viewer"
55
56 #: ../src/remote-viewer-iso-list-dialog.c:160
57 msgstr "Доступ к удалённому рабочему столу"
58
59 #: src/remote-viewer-iso-list-dialog.c:156
5760 msgid "Failed to fetch CD names"
58 msgstr ""
59
60 #: ../src/remote-viewer-iso-list-dialog.c:212
61 msgstr "Ошибка получения имён CD-дисков"
62
63 #: src/remote-viewer-iso-list-dialog.c:205
6164 msgid "<b>Loading...</b>"
62 msgstr ""
63
64 #: ../src/remote-viewer-iso-list-dialog.c:285
65 msgstr "<b>Загрузка...</b>"
66
67 #: src/remote-viewer-iso-list-dialog.c:276
6568 msgid "Refresh"
66 msgstr ""
67
68 #: ../src/remote-viewer-iso-list-dialog.c:286
69 msgstr "Обновить"
70
71 #: src/remote-viewer-iso-list-dialog.c:277
6972 msgid "Close"
70 msgstr ""
71
72 #: ../src/remote-viewer-iso-list-dialog.c:306
73 msgstr "Закрыть"
74
75 #: src/remote-viewer-iso-list-dialog.c:297
7376 msgid "Unspecified error"
74 msgstr ""
75
76 #: ../src/remote-viewer-iso-list-dialog.c:328
77 msgstr "Неопределённая ошибка"
78
79 #: src/remote-viewer-iso-list-dialog.c:318
7780 msgid "Failed to change CD"
78 msgstr ""
79
80 #: ../src/remote-viewer-iso-list-dialog.c:380
81 msgstr "Ошибка изменения CD-диска"
82
83 #: src/remote-viewer-iso-list-dialog.c:370
8184 msgid "Change CD"
82 msgstr ""
83
84 #: ../src/remote-viewer.c:118
85 msgstr "Изменить CD-диск"
86
87 #: src/remote-viewer.c:116
8588 msgid "Set window title"
8689 msgstr "Изменить заголовок окна"
8790
88 #: ../src/remote-viewer.c:125
91 #: src/remote-viewer.c:123
8992 msgid "Remote viewer client"
90 msgstr "Клиент удаленного просмотра рабочего стола"
91
92 #: ../src/remote-viewer.c:150
93 #, c-format
93 msgstr "Клиент удалённого просмотра рабочего стола"
94
95 #: src/remote-viewer.c:148
9496 msgid ""
9597 "\n"
9698 "Error: can't handle multiple URIs\n"
9799 "\n"
98100 msgstr ""
99
100 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
101 "\n"
102 "Ошибка: работа с несколькими URI невозможна\n"
103 "\n"
104
105 #: src/remote-viewer.c:162 src/virt-viewer.c:200
101106 #, c-format
102107 msgid "Run '%s --help' to see a full list of available command line options\n"
103108 msgstr ""
104
105 #: ../src/remote-viewer.c:435
109 "Выполните команду «%s --help», чтобы просмотреть полный список доступных "
110 "параметров командной строки\n"
111
112 #: src/remote-viewer.c:429
106113 msgid "failed to parse ovirt uri"
107114 msgstr "не удалось обработать oVirt uri"
108115
109 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
116 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
110117 msgid "Authentication was cancelled"
111118 msgstr "Аутентификация была отменена"
112119
113 #: ../src/remote-viewer.c:480
120 #: src/remote-viewer.c:472
114121 #, c-format
115122 msgid "oVirt VM %s is not running"
116123 msgstr "Виртуальная машина oVirt %s не работает"
117124
118 #: ../src/remote-viewer.c:494
125 #: src/remote-viewer.c:486
119126 #, c-format
120127 msgid "oVirt VM %s has no display"
121128 msgstr "У виртуальной машины oVirt %s дисплей отсутствует"
122129
123 #: ../src/remote-viewer.c:520
130 #: src/remote-viewer.c:512
124131 #, c-format
125132 msgid "oVirt VM %s has no host information"
126133 msgstr "Отсутствуют сведения о хосте виртуальной машины oVirt %s"
127134
128 #: ../src/remote-viewer.c:531
129 #, c-format
130 msgid "oVirt VM %s has unknown display type: %d"
131 msgstr "Неизвестный тип дисплея виртуальной машины oVirt %s: %d"
132
133 #: ../src/remote-viewer.c:713
135 #: src/remote-viewer.c:523
136 #, c-format
137 msgid "oVirt VM %s has unknown display type: %u"
138 msgstr "Неизвестный тип дисплея виртуальной машины oVirt %s: %u"
139
140 #: src/remote-viewer.c:690
141 msgid "Couldn't open oVirt session: "
142 msgstr "Не удалось открыть сеанс oVirt:"
143
144 #: src/remote-viewer.c:718
134145 msgid "Failed to initiate connection"
135146 msgstr "Не удалось установить соединение"
136147
137 #: ../src/remote-viewer.c:742
148 #: src/remote-viewer.c:747
138149 msgid "No connection was chosen"
139150 msgstr "Соединение не выбрано"
140151
141 #: ../src/remote-viewer.c:759
152 #: src/remote-viewer.c:764
142153 msgid "Failed to read stdin: "
143 msgstr ""
144
145 #: ../src/remote-viewer.c:776
154 msgstr "Ошибка чтения потока stdin: "
155
156 #: src/remote-viewer.c:781
146157 #, c-format
147158 msgid "Invalid file %s: "
148 msgstr "Недопустимый файл %s:"
149
150 #: ../src/remote-viewer.c:786
159 msgstr "Недопустимый файл %s: "
160
161 #: src/remote-viewer.c:791
151162 msgid "Cannot determine the connection type from URI"
152 msgstr "Не удалось определить тип подключения из заданного адреса"
153
154 #: ../src/remote-viewer.c:792
155 msgid "Couldn't open oVirt session: "
156 msgstr "Не удалось открыть сеанс oVirt:"
157
158 #: ../src/remote-viewer.c:815
163 msgstr "Не удалось определить тип подключения из заданного URI"
164
165 #: src/remote-viewer.c:810
159166 #, c-format
160167 msgid "Unable to connect: %s"
161 msgstr ""
162
163 #.
164 #. * Local variables:
165 #. * c-indent-level: 4
166 #. * c-basic-offset: 4
167 #. * indent-tabs-mode: nil
168 #. * End:
169 #.
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
168 msgstr "Не удалось подключиться: %s"
169
170 #: src/resources/ui/remote-viewer-connect.ui:6
171171 msgid "Connection details"
172172 msgstr "Свойства подключения"
173173
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
174 #: src/resources/ui/remote-viewer-connect.ui:24
175175 msgid "Connection _Address"
176 msgstr ""
177
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
176 msgstr "_Адрес подключения"
177
178 #: src/resources/ui/remote-viewer-connect.ui:54
179179 msgid "For example, spice://foo.example.org:5900"
180180 msgstr "Пример: spice://foo.example.org:5900"
181181
182 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
182 #: src/resources/ui/remote-viewer-connect.ui:78
183183 msgid "Recent connections"
184184 msgstr "Последние подключения"
185185
186 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
187 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
188 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
189 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
186 #: src/resources/ui/remote-viewer-connect.ui:120
187 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
188 #: src/resources/ui/virt-viewer-vm-connection.ui:24
189 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
190190 msgid "_Cancel"
191 msgstr ""
192
193 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
194 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
191 msgstr "_Отменить"
192
193 #: src/resources/ui/remote-viewer-connect.ui:134
194 #: src/resources/ui/virt-viewer-vm-connection.ui:38
195195 msgid "C_onnect"
196 msgstr ""
197
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
196 msgstr "Под­­_ключиться"
197
198 #: src/resources/ui/remote-viewer-iso-list.ui:28
199199 msgid "Loading..."
200 msgstr ""
201
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
200 msgstr "Загрузка..."
201
202 #: src/resources/ui/remote-viewer-iso-list.ui:78
203203 msgid "Select ISO"
204 msgstr ""
205
206 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
204 msgstr "Выбор ISO"
205
206 #: src/resources/ui/remote-viewer-iso-list.ui:116
207207 msgid "Selected"
208 msgstr ""
209
210 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
211 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
208 msgstr "Выбрано"
209
210 #: src/resources/ui/remote-viewer-iso-list.ui:129
211 #: src/resources/ui/virt-viewer-vm-connection.ui:72
212212 msgid "Name"
213213 msgstr "Имя"
214214
215 #: ../src/resources/ui/virt-viewer-about.ui.h:1
215 #: src/resources/ui/virt-viewer-about.ui:7
216216 msgid "About Virt-Viewer"
217 msgstr ""
218
219 #: ../src/resources/ui/virt-viewer-about.ui.h:2
217 msgstr "О Virt-Viewer"
218
219 #: src/resources/ui/virt-viewer-about.ui:16
220220 msgid ""
221221 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
222222 "Copyright (C) 2007-2014 Red Hat, Inc."
223223 msgstr ""
224 "(C) 2007-2012 Daniel P. Berrange\n"
225 "(C) 2007-2014 Red Hat, Inc."
226
227 #: ../src/resources/ui/virt-viewer-about.ui.h:4
224 "© Daniel P. Berrange, 2007-2012\\n\n"
225 "© Red Hat, Inc., 2007-2014"
226
227 #: src/resources/ui/virt-viewer-about.ui:18
228228 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
229229 msgstr ""
230230 "Клиент доступа к удаленному рабочему столу построен на основе GTK-VNC, SPICE-"
231231 "GTK и libvirt"
232232
233 #: ../src/resources/ui/virt-viewer-about.ui.h:5
234 msgid "virt-manager.org"
235 msgstr "virt-manager.org"
236
237 #: ../src/resources/ui/virt-viewer-about.ui.h:6
233 #: src/resources/ui/virt-viewer-about.ui:20
234 msgid "gitlab.com/virt-viewer/virt-viewer"
235 msgstr ""
236
237 #: src/resources/ui/virt-viewer-about.ui:21
238238 msgid ""
239239 "This program is free software; you can redistribute it and/or modify\n"
240240 "it under the terms of the GNU General Public License as published by\n"
251251 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
252252 msgstr ""
253253 "Эта программа относится к категории свободного программного обеспечения;\n"
254 "ее изменение и распространение допускается в соответствии с условиями \n"
254 "её изменение и распространение допускается в соответствии с условиями \n"
255255 "лицензии GNU General Public License 2 или любой более поздней версии, \n"
256256 "опубликованной фондом свободного программного обеспечения. \n"
257257 "\n"
259259 "но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ, ВЫРАЖЕННЫХ ЯВНО ИЛИ ПОДРАЗУМЕВАЕМЫХ,\n"
260260 "В ТОМ ЧИСЛЕ БЕЗ ГАРАНТИЙ КОММЕРЧЕСКОЙ ЦЕННОСТИ И \n"
261261 "ПРИГОДНОСТИ ДЛЯ КОНКРЕТНОЙ ЦЕЛИ. \n"
262 "Подробную информацию можно найти в тексте лицензии GNU. \n"
263 "\n"
264 "Копия лицензии GNU предоставляется вместе с этой программой.\n"
265 "Адрес фонда: Free Software Foundation, \n"
266 "Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
267
268 #: ../src/resources/ui/virt-viewer-about.ui.h:20
262 "Подробную информацию можно найти в тексте лицензии GNU General Public "
263 "License. \n"
264 "\n"
265 "Копия лицензии GNU General Public License предоставляется вместе с этой "
266 "программой.\n"
267 "Адрес фонда: Free Software Foundation, Inc.,\n"
268 "59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
269
270 #: src/resources/ui/virt-viewer-about.ui:38
269271 msgid "The Fedora Translation Team"
270272 msgstr "Команда локализации Fedora"
271273
272 #: ../src/virt-viewer-app.c:459
274 #: src/virt-viewer-app.c:594
273275 msgid "Do you want to close the session?"
274276 msgstr "Закрыть сеанс?"
275277
276 #: ../src/virt-viewer-app.c:461
278 #: src/virt-viewer-app.c:596
277279 msgid "Do not ask me again"
278280 msgstr "Больше не спрашивать"
279281
280 #: ../src/virt-viewer-app.c:655
282 #: src/virt-viewer-app.c:767
281283 #, c-format
282284 msgid "Address is too long for unix socket_path: %s"
283 msgstr ""
284
285 #: ../src/virt-viewer-app.c:665
285 msgstr "Слишком длинный адрес для Unix socket_path: %s"
286
287 #: src/virt-viewer-app.c:777
286288 #, c-format
287289 msgid "Creating unix socket failed: %s"
288 msgstr ""
289
290 #: ../src/virt-viewer-app.c:671
290 msgstr "Ошибка создания сокета Unix: %s"
291
292 #: src/virt-viewer-app.c:783
291293 #, c-format
292294 msgid "Connecting to unix socket failed: %s"
293 msgstr ""
294
295 #: ../src/virt-viewer-app.c:955
295 msgstr "Ошибка подключения к сокету Unix: %s"
296
297 #: src/virt-viewer-app.c:1077
296298 #, c-format
297299 msgid "Waiting for display %d..."
298300 msgstr "Ожидание просмотра %d..."
299301
300 #: ../src/virt-viewer-app.c:1062
302 #: src/virt-viewer-app.c:1193
301303 #, c-format
302304 msgid "Unsupported graphic type '%s'"
303305 msgstr "Тип графики «%s» не поддерживается"
304306
305 #: ../src/virt-viewer-app.c:1146
307 #: src/virt-viewer-app.c:1277
306308 msgid "Connect to ssh failed."
307 msgstr "Ошибка соединения ssh."
308
309 #: ../src/virt-viewer-app.c:1161
309 msgstr "Ошибка соединения SSH."
310
311 #: src/virt-viewer-app.c:1292
310312 #, c-format
311313 msgid "Can't connect to channel: %s"
312 msgstr ""
313
314 #: ../src/virt-viewer-app.c:1163
314 msgstr "Невозможно подключиться к каналу: %s"
315
316 #: src/virt-viewer-app.c:1294
315317 msgid "only SSH or unix socket connection supported."
316 msgstr ""
317
318 #: ../src/virt-viewer-app.c:1176
318 msgstr "поддерживается только подключение по SSH или через сокет Unix."
319
320 #: src/virt-viewer-app.c:1311
319321 msgid "Connect to channel unsupported."
320322 msgstr "Подключение к каналу не поддерживается."
321323
322 #: ../src/virt-viewer-app.c:1238
324 #: src/virt-viewer-app.c:1376
323325 msgid "Display can only be attached through libvirt with --attach"
324 msgstr "Дисплей может быть подключён только через libvirt с --attach"
325
326 #: ../src/virt-viewer-app.c:1263
326 msgstr "Дисплей может быть подключён только через libvirt с помощью --attach"
327
328 #: src/virt-viewer-app.c:1401
327329 msgid "Connecting to graphic server"
328330 msgstr "Подключение к графическому серверу"
329331
330 #: ../src/virt-viewer-app.c:1362
332 #: src/virt-viewer-app.c:1500
331333 msgid "Guest domain has shutdown"
332334 msgstr "Гостевой домен завершил работу"
333335
334 #: ../src/virt-viewer-app.c:1423
336 #: src/virt-viewer-app.c:1561
335337 msgid "Connected to graphic server"
336338 msgstr "Установлено соединение с графическим сервером"
337339
338 #: ../src/virt-viewer-app.c:1452
340 #: src/virt-viewer-app.c:1590
339341 #, c-format
340342 msgid "Unable to connect to the graphic server %s"
341 msgstr "Не удалось установить соединение с сервером %s"
342
343 #: ../src/virt-viewer-app.c:1478
343 msgstr "Не удалось установить соединение с графическим сервером %s"
344
345 #: src/virt-viewer-app.c:1616
344346 #, c-format
345347 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
346348 msgstr "Не удалось пройти аутентификацию на удаленном сервере %s: %s\n"
347349
348 #: ../src/virt-viewer-app.c:1492
350 #: src/virt-viewer-app.c:1630
349351 #, c-format
350352 msgid "Unable to authenticate with remote desktop server: %s"
351353 msgstr "Не удалось пройти аутентификацию на удаленном сервере: %s"
352354
353 #: ../src/virt-viewer-app.c:1500
355 #: src/virt-viewer-app.c:1638
354356 #, c-format
355357 msgid "USB redirection error: %s"
356358 msgstr "Ошибка перенаправления USB: %s"
357359
358 #: ../src/virt-viewer-app.c:1834
360 #: src/virt-viewer-app.c:2026
359361 #, c-format
360362 msgid "Zoom level must be within %d-%d\n"
361 msgstr "Уровень увеличения должен быть между %d-%d\n"
362
363 #: ../src/virt-viewer-app.c:1887
363 msgstr "Уровень увеличения должен быть в пределах %d-%d\n"
364
365 #: src/virt-viewer-app.c:2081
364366 #, c-format
365367 msgid "%s\n"
366 msgstr ""
367
368 #: ../src/virt-viewer-app.c:1897
368 msgstr "%s\n"
369
370 #: src/virt-viewer-app.c:2091
369371 #, c-format
370372 msgid "%s version %s"
371 msgstr ""
372
373 #: ../src/virt-viewer-app.c:2321
373 msgstr "%s версии %s"
374
375 #: src/virt-viewer-app.c:2545
374376 #, c-format
375377 msgid "Display _%d"
376 msgstr ""
377
378 #: ../src/virt-viewer-app.c:2577
378 msgstr "Дисплей _%d"
379
380 #: src/virt-viewer-app.c:2829
379381 #, c-format
380382 msgid "Invalid kiosk-quit argument: %s"
381 msgstr "недопустимый аргумент kiosk-quit: %s"
382
383 #: ../src/virt-viewer-app.c:2588
383 msgstr "недопустимый параметр команды kiosk-quit: %s"
384
385 #: src/virt-viewer-app.c:2840
384386 msgid "Display version information"
385 msgstr "Показать версию"
386
387 #: ../src/virt-viewer-app.c:2590
387 msgstr "Показать сведения о версии"
388
389 #: src/virt-viewer-app.c:2842
388390 msgid "Zoom level of window, in percentage"
389391 msgstr "Масштаб окна в процентах"
390392
391 #: ../src/virt-viewer-app.c:2592
393 #: src/virt-viewer-app.c:2844
392394 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
393395 msgstr ""
394 "Открыть в полноэкранном режиме (регулирует разрешение гостя для соответствия "
395 "клиенту)"
396
397 #: ../src/virt-viewer-app.c:2594
396 "Открыть в полноэкранном режиме (разрешение гостевой системы подстраивается\n"
397 " под клиент)"
398
399 #: src/virt-viewer-app.c:2846
398400 msgid "Customise hotkeys"
399401 msgstr "Настроить комбинации клавиш"
400402
401 #: ../src/virt-viewer-app.c:2596
403 #: src/virt-viewer-app.c:2848
402404 msgid "Enable kiosk mode"
403 msgstr "Включить режим киоска"
404
405 #: ../src/virt-viewer-app.c:2598
405 msgstr "Включить режим терминала"
406
407 #: src/virt-viewer-app.c:2850
406408 msgid "Quit on given condition in kiosk mode"
407 msgstr "Выйти по заданному условию в режиме киоска"
408
409 #: ../src/virt-viewer-app.c:2598
409 msgstr "Выйти по заданному условию в режиме терминала"
410
411 #: src/virt-viewer-app.c:2850
410412 msgid "<never|on-disconnect>"
411413 msgstr "<never|on-disconnect>"
412414
413 #: ../src/virt-viewer-app.c:2600
415 #: src/virt-viewer-app.c:2852
414416 msgid "Display verbose information"
415 msgstr "Подробный вывод"
416
417 #: ../src/virt-viewer-app.c:2602
417 msgstr "Показать подробную информацию"
418
419 #: src/virt-viewer-app.c:2854
418420 msgid "Display debugging information"
419 msgstr "Показать сообщения диагностики"
420
421 #: ../src/virt-viewer-auth.c:89
421 msgstr "Показать отладочную информацию"
422
423 #: src/virt-viewer-auth.c:89
422424 #, c-format
423425 msgid ""
424426 "Authentication is required for the %s connection to:\n"
431433 "<b>%s</b>\n"
432434 "\n"
433435
434 #: ../src/virt-viewer-auth.c:93
436 #: src/virt-viewer-auth.c:93
435437 #, c-format
436438 msgid "Authentication is required for the %s connection:\n"
437439 msgstr "Требуется аутентификация для соединения %s:\n"
438440
439 #.
440 #. * Local variables:
441 #. * c-indent-level: 4
442 #. * c-basic-offset: 4
443 #. * indent-tabs-mode: nil
444 #. * End:
445 #.
446 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
441 #: src/resources/ui/virt-viewer-auth.ui:7
447442 msgid "Authentication required"
448 msgstr "Требуется проверка подлинности"
449
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
443 msgstr "Требуется аутентификация"
444
445 #: src/resources/ui/virt-viewer-auth.ui:42
451446 msgid "_OK"
452 msgstr ""
453
454 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
455 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
456 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
447 msgstr "_OK"
448
449 #: src/resources/ui/virt-viewer-auth.ui:71
450 #: src/resources/ui/virt-viewer-guest-details.ui:82
451 #: src/resources/ui/virt-viewer-guest-details.ui:96
452 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
457453 msgid "label"
458454 msgstr "метка"
459455
460 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
456 #: src/resources/ui/virt-viewer-auth.ui:93
461457 msgid "Password:"
462458 msgstr "Пароль:"
463459
464 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
460 #: src/resources/ui/virt-viewer-auth.ui:105
465461 msgid "Username:"
466 msgstr "Пользователь:"
467
468 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
462 msgstr "Имя пользователь:"
463
464 #: src/resources/ui/virt-viewer-auth.ui:137
469465 msgid "Show password"
470466 msgstr "Показать пароль"
471467
472 #: ../src/virt-viewer-display-vnc.c:134
468 #: src/virt-viewer-display-vnc.c:130
473469 msgid "VNC does not provide GUID"
474470 msgstr "VNC не предоставляет GUID"
475471
476 #: ../src/virt-viewer-file-transfer-dialog.c:128
472 #: src/virt-viewer-display-vte.c:181
473 msgid "Console support is compiled out!"
474 msgstr "Поддержка консоли не скомпилирована."
475
476 #: src/virt-viewer-file-transfer-dialog.c:124
477477 msgid "File Transfers"
478 msgstr ""
479
480 #: ../src/virt-viewer-file-transfer-dialog.c:154
478 msgstr "Передача файлов"
479
480 #: src/virt-viewer-file-transfer-dialog.c:150
481481 msgid "Transferring 1 file..."
482 msgstr ""
483
484 #: ../src/virt-viewer-file-transfer-dialog.c:156
485 #, c-format
486 msgid "Transferring %d file of %d..."
487 msgid_plural "Transferring %d files of %d..."
488 msgstr[0] ""
489
490 #: ../src/virt-viewer-file-transfer-dialog.c:228
491 #, c-format
492 msgid "An error caused the following file transfers to fail:%s"
493 msgstr ""
494
495 #: ../src/virt-viewer-main.c:38
482 msgstr "Передача 1 файла..."
483
484 #: src/virt-viewer-file-transfer-dialog.c:152
485 #, c-format
486 msgid "Transferring %u file of %u..."
487 msgid_plural "Transferring %u files of %u..."
488 msgstr[0] "Передача %u файла из %u..."
489 msgstr[1] "Передача %u файлов из %u..."
490 msgstr[2] "Передача %u файлов из %u..."
491
492 #: src/virt-viewer-file-transfer-dialog.c:225
493 msgid "An error caused the following file transfers to fail:"
494 msgstr ""
495
496 #: src/virt-viewer-main.c:38
496497 msgid "Virt Viewer"
497498 msgstr "Просмотр виртуальных систем"
498499
499 #: ../src/virt-viewer-session-spice.c:704
500 #: src/virt-viewer-session-spice.c:731
500501 msgid "Invalid password"
501502 msgstr "Неверный пароль"
502503
503 #. Create the widgets
504 #: ../src/virt-viewer-session-spice.c:802
504 #: src/virt-viewer-session-spice.c:829
505505 msgid "Select USB devices for redirection"
506 msgstr "Выбрать устройства USB для перенаправления"
507
508 #: ../src/virt-viewer-session-spice.c:804
509 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
506 msgstr "Выбор USB-устройств для перенаправления"
507
508 #: src/virt-viewer-session-spice.c:831
509 #: src/resources/ui/virt-viewer-guest-details.ui:23
510510 msgid "_Close"
511 msgstr ""
512
513 #: ../src/virt-viewer-session-vnc.c:162
514 #, c-format
515 msgid "Unsupported authentication type %d"
516 msgstr "Неподдерживаемый тип аутентификации %d"
517
518 #: ../src/virt-viewer-vm-connection.c:64
511 msgstr "За_крыть"
512
513 #: src/virt-viewer-session-spice.c:1019
514 msgid "Serial"
515 msgstr "Последовательная консоль"
516
517 #: src/virt-viewer-session-spice.c:1021
518 msgid "QEMU human monitor"
519 msgstr "HMI-консоль QEMU"
520
521 #: src/virt-viewer-session-spice.c:1023
522 msgid "QEMU debug console"
523 msgstr "Консоль отладки QEMU"
524
525 #: src/virt-viewer-session-vnc.c:158
526 #, c-format
527 msgid "Unsupported authentication type %u"
528 msgstr "Неподдерживаемый тип аутентификации %u"
529
530 #: src/virt-viewer-vm-connection.c:64
519531 msgid "No running virtual machine found"
520 msgstr ""
521
522 #: ../src/virt-viewer-vm-connection.c:93
532 msgstr "Работающая виртуальная машина не найдена"
533
534 #: src/virt-viewer-vm-connection.c:93
523535 msgid "No virtual machine was chosen"
524536 msgstr "Виртуальная машина не выбрана"
525537
526 #: ../src/virt-viewer-window.c:544
538 #: src/virt-viewer-window.c:621
527539 msgid "Ctrl+Alt+_Del"
528540 msgstr "Ctrl+Alt+_Del"
529541
530 #: ../src/virt-viewer-window.c:545
542 #: src/virt-viewer-window.c:622
531543 msgid "Ctrl+Alt+_Backspace"
532544 msgstr "Ctrl+Alt+_Backspace"
533545
534 #: ../src/virt-viewer-window.c:547
546 #: src/virt-viewer-window.c:624
535547 msgid "Ctrl+Alt+F_1"
536548 msgstr "Ctrl+Alt+F_1"
537549
538 #: ../src/virt-viewer-window.c:548
550 #: src/virt-viewer-window.c:625
539551 msgid "Ctrl+Alt+F_2"
540552 msgstr "Ctrl+Alt+F_2"
541553
542 #: ../src/virt-viewer-window.c:549
554 #: src/virt-viewer-window.c:626
543555 msgid "Ctrl+Alt+F_3"
544556 msgstr "Ctrl+Alt+F_3"
545557
546 #: ../src/virt-viewer-window.c:550
558 #: src/virt-viewer-window.c:627
547559 msgid "Ctrl+Alt+F_4"
548560 msgstr "Ctrl+Alt+F_4"
549561
550 #: ../src/virt-viewer-window.c:551
562 #: src/virt-viewer-window.c:628
551563 msgid "Ctrl+Alt+F_5"
552564 msgstr "Ctrl+Alt+F_5"
553565
554 #: ../src/virt-viewer-window.c:552
566 #: src/virt-viewer-window.c:629
555567 msgid "Ctrl+Alt+F_6"
556568 msgstr "Ctrl+Alt+F_6"
557569
558 #: ../src/virt-viewer-window.c:553
570 #: src/virt-viewer-window.c:630
559571 msgid "Ctrl+Alt+F_7"
560572 msgstr "Ctrl+Alt+F_7"
561573
562 #: ../src/virt-viewer-window.c:554
574 #: src/virt-viewer-window.c:631
563575 msgid "Ctrl+Alt+F_8"
564576 msgstr "Ctrl+Alt+F_8"
565577
566 #: ../src/virt-viewer-window.c:555
578 #: src/virt-viewer-window.c:632
567579 msgid "Ctrl+Alt+F_9"
568580 msgstr "Ctrl+Alt+F_9"
569581
570 #: ../src/virt-viewer-window.c:556
582 #: src/virt-viewer-window.c:633
571583 msgid "Ctrl+Alt+F1_0"
572584 msgstr "Ctrl+Alt+F1_0"
573585
574 #: ../src/virt-viewer-window.c:557
586 #: src/virt-viewer-window.c:634
575587 msgid "Ctrl+Alt+F11"
576588 msgstr "Ctrl+Alt+F11"
577589
578 #: ../src/virt-viewer-window.c:558
590 #: src/virt-viewer-window.c:635
579591 msgid "Ctrl+Alt+F12"
580592 msgstr "Ctrl+Alt+F12"
581593
582 #: ../src/virt-viewer-window.c:953
594 #: src/virt-viewer-window.c:637
595 msgid "_PrintScreen"
596 msgstr ""
597
598 #: src/virt-viewer-window.c:1030
583599 #, c-format
584600 msgid "Unable to determine image format for file '%s'"
585 msgstr ""
586
587 #: ../src/virt-viewer-window.c:980
601 msgstr "Не удалось определить формат изображения для файла «%s»"
602
603 #: src/virt-viewer-window.c:1053
604 msgid "Save screenshot"
605 msgstr ""
606
607 #: src/virt-viewer-window.c:1057
588608 msgid "_Save"
589 msgstr ""
590
591 #: ../src/virt-viewer-window.c:988
609 msgstr "_Сохранить"
610
611 #: src/virt-viewer-window.c:1065
592612 msgid "Screenshot.png"
593 msgstr ""
594
595 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
613 msgstr "Screenshot.png"
614
615 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
596616 msgid "Unknown"
597617 msgstr "Неизвестно"
598618
599 #: ../src/virt-viewer-window.c:1152
619 #: src/virt-viewer-window.c:1237
600620 msgid "Unable to connnect to oVirt"
601 msgstr ""
602
603 #: ../src/virt-viewer-window.c:1175
621 msgstr "Не удаётся подключиться к oVirt"
622
623 #: src/virt-viewer-window.c:1260
604624 msgid "Disconnect"
605625 msgstr "Отключиться"
606626
607 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
627 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
608628 msgid "USB device selection"
609 msgstr "Выбор устройства USB"
610
611 #: ../src/virt-viewer-window.c:1193
629 msgstr "Выбор USB-устройств"
630
631 #: src/virt-viewer-window.c:1278
612632 msgid "Send key combination"
613633 msgstr "Отправить комбинацию клавиш"
614634
615 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
635 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
616636 msgid "Leave fullscreen"
617637 msgstr "Выйти из полноэкранного режима"
618638
619 #: ../src/virt-viewer-window.c:1279
639 #: src/virt-viewer-window.c:1364
620640 msgid "Ctrl+Alt"
621641 msgstr "Ctrl+Alt"
622642
623 #: ../src/virt-viewer-window.c:1282
643 #: src/virt-viewer-window.c:1367
624644 #, c-format
625645 msgid "(Press %s to release pointer)"
626646 msgstr "(нажмите %s для освобождения курсора)"
627647
628 #. translators:
629 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
630 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
631 #.
632 #: ../src/virt-viewer-window.c:1293
648 #: src/virt-viewer-window.c:1378
633649 #, c-format
634650 msgid "%s%s%s - %s"
635 msgstr "%s%s%s - %s"
636
637 #. translators: <space>
638 #: ../src/virt-viewer-window.c:1297
651 msgstr "%s%s%s — %s"
652
653 #: src/virt-viewer-window.c:1382
639654 msgid " "
640655 msgstr " "
641656
642 #: ../src/virt-viewer-file.c:862
657 #: src/virt-viewer-file.c:875
643658 #, c-format
644659 msgid ""
645660 "At least %s version %s is required to setup this connection, see %s for "
646661 "details"
647662 msgstr ""
648 "Для настройки этого соединения требуется по крайней мере %s %s. Для "
649 "получения подробной информации см. %s"
650
651 #: ../src/virt-viewer-file.c:870
663 "Для настройки этого соединения требуется по крайней мере %s версии %s. \n"
664 "Подробную информацию можно найти по адресу %s"
665
666 #: src/virt-viewer-file.c:883
652667 #, c-format
653668 msgid "At least %s version %s is required to setup this connection"
654 msgstr "Для настройки этого соединения требуется по крайней мере %s %s"
655
656 #: ../src/virt-viewer.c:133
669 msgstr "Для настройки этого соединения требуется по крайней мере %s версии %s"
670
671 #: src/virt-viewer.c:131
657672 msgid "Direct connection with no automatic tunnels"
658 msgstr "Прямое подключение без туннелей"
659
660 #: ../src/virt-viewer.c:135
673 msgstr "Прямое подключение без автоматических туннелей"
674
675 #: src/virt-viewer.c:133
661676 msgid "Attach to the local display using libvirt"
662 msgstr "Подключиться к локальному графическому сеансу с помощью libvirt"
663
664 #: ../src/virt-viewer.c:137
677 msgstr "Подключаться к локальному графическому сеансу с помощью libvirt"
678
679 #: src/virt-viewer.c:135
665680 msgid "Connect to hypervisor"
666681 msgstr "Подключиться к гипервизору"
667682
668 #: ../src/virt-viewer.c:139
683 #: src/virt-viewer.c:137
669684 msgid "Wait for domain to start"
670685 msgstr "Ожидать запуска домена"
671686
672 #: ../src/virt-viewer.c:141
687 #: src/virt-viewer.c:139
673688 msgid "Reconnect to domain upon restart"
674 msgstr "Заново подключиться к домену после перезапуска"
675
676 #: ../src/virt-viewer.c:143
689 msgstr "Повторно подключаться к домену после перезапуска"
690
691 #: src/virt-viewer.c:141
677692 msgid "Select the virtual machine only by its name"
678 msgstr ""
679
680 #: ../src/virt-viewer.c:145
693 msgstr "Выбирать виртуальную машину только по имени"
694
695 #: src/virt-viewer.c:143
681696 msgid "Select the virtual machine only by its id"
682 msgstr ""
683
684 #: ../src/virt-viewer.c:147
697 msgstr "Выбирать виртуальную машину только по идентификатору"
698
699 #: src/virt-viewer.c:145
685700 msgid "Select the virtual machine only by its uuid"
686 msgstr ""
687
688 #: ../src/virt-viewer.c:154
701 msgstr "Выбирать виртуальную машину только по UUID"
702
703 #: src/virt-viewer.c:152
689704 msgid "Virtual machine graphical console"
690705 msgstr "Графическая консоль виртуальной машины"
691706
692 #: ../src/virt-viewer.c:173
707 #: src/virt-viewer.c:171
693708 #, c-format
694709 msgid ""
695710 "\n"
696711 "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
697712 "\n"
698713 msgstr ""
699
700 #: ../src/virt-viewer.c:185
714 "\n"
715 "Формат: %s [ПАРАМЕТРЫ] [ID|UUID|ИМЯ-ДОМЕНА]\n"
716 "\n"
717
718 #: src/virt-viewer.c:183
701719 #, c-format
702720 msgid ""
703721 "\n"
704722 "No ID|UUID|DOMAIN-NAME was specified for '%s'\n"
705723 "\n"
706724 msgstr ""
707
708 #: ../src/virt-viewer.c:300
725 "\n"
726 "Для «%s» не заданы ID|UUID|ИМЯ-ДОМЕНА\n"
727 "\n"
728
729 #: src/virt-viewer.c:296
709730 msgid "Waiting for guest domain to re-start"
710731 msgstr "Ожидание перезапуска гостевого домена"
711732
712 #: ../src/virt-viewer.c:554
733 #: src/virt-viewer.c:550
713734 #, c-format
714735 msgid "Cannot determine the graphic type for the guest %s"
715 msgstr "Не удалось определить тип графической подсистемы для гостя %s"
716
717 #: ../src/virt-viewer.c:603
736 msgstr ""
737 "Не удалось определить тип графической подсистемы для гостевой системы %s"
738
739 #: src/virt-viewer.c:599
718740 #, c-format
719741 msgid "Cannot determine the host for the guest %s"
720 msgstr "Не удалось определить хост для гостя %s"
721
722 #: ../src/virt-viewer.c:631
742 msgstr "Не удалось определить хост для гостевой системы %s"
743
744 #: src/virt-viewer.c:627
723745 #, c-format
724746 msgid "Guest '%s' is not reachable"
725 msgstr "Гость '%s' недосягаем"
726
727 #: ../src/virt-viewer.c:860
747 msgstr "Гостевая система «%s» недоступна"
748
749 #: src/virt-viewer.c:856
728750 #, c-format
729751 msgid "Virtual machine %s is not running"
730752 msgstr "Виртуальная машина %s не запущена"
731753
732 #: ../src/virt-viewer.c:884
754 #: src/virt-viewer.c:881
733755 msgid "Waiting for libvirt to start"
734756 msgstr "Ожидание запуска libvirt"
735757
736 #: ../src/virt-viewer.c:888
758 #: src/virt-viewer.c:885
737759 msgid "Finding guest domain"
738760 msgstr "Поиск гостевого домена"
739761
740 #: ../src/virt-viewer.c:892
762 #: src/virt-viewer.c:889
741763 msgid "Waiting for guest domain to be created"
742764 msgstr "Ожидание создания гостевого домена"
743765
744 #: ../src/virt-viewer.c:918
766 #: src/virt-viewer.c:921
745767 msgid "Checking guest domain status"
746768 msgstr "Проверка статуса гостевого домена"
747769
748 #: ../src/virt-viewer.c:921
770 #: src/virt-viewer.c:924
749771 msgid "Cannot get guest state"
750772 msgstr "Не удалось получить статус гостевой системы"
751773
752 #: ../src/virt-viewer.c:927
774 #: src/virt-viewer.c:930
753775 msgid "Waiting for guest domain to start"
754776 msgstr "Ожидание запуска гостевого домена"
755777
756 #: ../src/virt-viewer.c:1040
778 #: src/virt-viewer.c:1044
757779 #, c-format
758780 msgid "Unable to connect to libvirt with URI: %s."
759781 msgstr "Невозможно подключиться к libvirt с URI: %s."
760782
761 #: ../src/virt-viewer.c:1041
783 #: src/virt-viewer.c:1045
762784 msgid "[none]"
763785 msgstr "[нет]"
764786
765 #: ../src/virt-viewer.c:1048
787 #: src/virt-viewer.c:1052
766788 msgid "Authentication failed."
767 msgstr "Аутентификация не пройдена."
768
769 #: ../src/virt-viewer.c:1108
789 msgstr "Ошибка аутентификации."
790
791 #: src/virt-viewer.c:1112
770792 msgid "Failed to connect: "
771793 msgstr "Не удалось подключиться:"
772794
773 #.
774 #. * Local variables:
775 #. * c-indent-level: 4
776 #. * c-basic-offset: 4
777 #. * indent-tabs-mode: nil
778 #. * End:
779 #.
780 #: ../src/resources/ui/virt-viewer.ui.h:1
795 #: src/resources/ui/virt-viewer.ui:28
781796 msgid "_File"
782797 msgstr "_Файл"
783798
784 #: ../src/resources/ui/virt-viewer.ui.h:2
799 #: src/resources/ui/virt-viewer.ui:41
785800 msgid "_Screenshot"
786 msgstr ""
787
788 #: ../src/resources/ui/virt-viewer.ui.h:3
801 msgstr "_Снимок экрана"
802
803 #: src/resources/ui/virt-viewer.ui:52
789804 msgid "_USB device selection"
790 msgstr ""
791
792 #: ../src/resources/ui/virt-viewer.ui.h:4
805 msgstr "Выбор _USB-устройств"
806
807 #: src/resources/ui/virt-viewer.ui:62
793808 msgid "Smartcard insertion"
794809 msgstr "Подключение смарт-карты"
795810
796 #: ../src/resources/ui/virt-viewer.ui.h:5
811 #: src/resources/ui/virt-viewer.ui:72
797812 msgid "Smartcard removal"
798813 msgstr "Извлечение смарт-карты"
799814
800 #: ../src/resources/ui/virt-viewer.ui.h:6
815 #: src/resources/ui/virt-viewer.ui:80
801816 msgid "_Change CD"
802 msgstr "_Поменять CD"
803
804 #: ../src/resources/ui/virt-viewer.ui.h:7
817 msgstr "_Изменение CD-диска"
818
819 #: src/resources/ui/virt-viewer.ui:90
805820 msgid "_Preferences"
806 msgstr ""
807
808 #: ../src/resources/ui/virt-viewer.ui.h:8
821 msgstr "_Настройка"
822
823 #: src/resources/ui/virt-viewer.ui:103
809824 msgid "_Quit"
810 msgstr ""
811
812 #: ../src/resources/ui/virt-viewer.ui.h:9
825 msgstr "В_ыход"
826
827 #: src/resources/ui/virt-viewer.ui:119
828 msgid "_Machine"
829 msgstr "_Система"
830
831 #: src/resources/ui/virt-viewer.ui:129
832 msgid "_Pause"
833 msgstr "П_ауза"
834
835 #: src/resources/ui/virt-viewer.ui:144
836 msgid "_Reset"
837 msgstr "П_ерезагрузка"
838
839 #: src/resources/ui/virt-viewer.ui:153
840 msgid "_Power down"
841 msgstr "_Выключение"
842
843 #: src/resources/ui/virt-viewer.ui:167
813844 msgid "_View"
814845 msgstr "_Просмотр"
815846
816 #: ../src/resources/ui/virt-viewer.ui.h:10
847 #: src/resources/ui/virt-viewer.ui:180
817848 msgid "_Full screen"
818 msgstr ""
819
820 #: ../src/resources/ui/virt-viewer.ui.h:11
849 msgstr "_На весь экран"
850
851 #: src/resources/ui/virt-viewer.ui:191
821852 msgid "_Zoom"
822853 msgstr "_Масштаб"
823854
824 #: ../src/resources/ui/virt-viewer.ui.h:12
855 #: src/resources/ui/virt-viewer.ui:201
825856 msgid "Zoom _In"
826 msgstr ""
827
828 #: ../src/resources/ui/virt-viewer.ui.h:13
857 msgstr "У_величить"
858
859 #: src/resources/ui/virt-viewer.ui:212
829860 msgid "Zoom _Out"
830 msgstr ""
831
832 #: ../src/resources/ui/virt-viewer.ui.h:14
861 msgstr "У_меньшить"
862
863 #: src/resources/ui/virt-viewer.ui:229
833864 msgid "_Normal Size"
834 msgstr ""
835
836 #: ../src/resources/ui/virt-viewer.ui.h:15
865 msgstr "_Нормальный масштаб"
866
867 #: src/resources/ui/virt-viewer.ui:246
837868 msgid "_Displays"
838 msgstr ""
839
840 #: ../src/resources/ui/virt-viewer.ui.h:16
869 msgstr "_Дисплеи"
870
871 #: src/resources/ui/virt-viewer.ui:255
841872 msgid "Release cursor"
842873 msgstr "Освободить курсор"
843874
844 #: ../src/resources/ui/virt-viewer.ui.h:17
875 #: src/resources/ui/virt-viewer.ui:270
845876 msgid "_Send key"
846877 msgstr "О_тправить клавишу"
847878
848 #: ../src/resources/ui/virt-viewer.ui.h:18
879 #: src/resources/ui/virt-viewer.ui:279
849880 msgid "_Help"
850881 msgstr "_Справка"
851882
852 #: ../src/resources/ui/virt-viewer.ui.h:19
883 #: src/resources/ui/virt-viewer.ui:290
853884 msgid "_Guest Details"
854 msgstr "Параметры _гостевой системы"
855
856 #: ../src/resources/ui/virt-viewer.ui.h:20
885 msgstr "Сведения о _гостевой системе"
886
887 #: src/resources/ui/virt-viewer.ui:297
857888 msgid "_About"
858 msgstr ""
859
860 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
889 msgstr "_О программе"
890
891 #: src/resources/ui/virt-viewer-guest-details.ui:7
861892 msgid "Guest Details"
862 msgstr "Параметры гостевой системы"
863
864 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
893 msgstr "Сведения о гостевой системе"
894
895 #: src/resources/ui/virt-viewer-guest-details.ui:56
865896 msgid "Name:"
866897 msgstr "Имя:"
867898
868 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
899 #: src/resources/ui/virt-viewer-guest-details.ui:68
869900 msgid "GUID:"
870901 msgstr "GUID:"
871902
872 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
903 #: src/resources/ui/virt-viewer-vm-connection.ui:7
873904 msgid "Choose a virtual machine"
874905 msgstr "Выберите виртуальную машину"
875906
876 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
907 #: src/resources/ui/virt-viewer-vm-connection.ui:96
877908 msgid "Available virtual machines"
878909 msgstr "Доступные виртуальные машины"
879910
880 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
911 #: src/resources/ui/virt-viewer-preferences.ui:8
881912 msgid "Preferences"
882 msgstr "Настройки"
883
884 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
913 msgstr "Настройка"
914
915 #: src/resources/ui/virt-viewer-preferences.ui:48
885916 msgid "Folder sharing"
886917 msgstr "Совместный доступ к папке"
887918
888 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
919 #: src/resources/ui/virt-viewer-preferences.ui:70
889920 msgid "Share folder"
890 msgstr "Поделиться папкой"
891
892 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
921 msgstr "Общая папка"
922
923 #: src/resources/ui/virt-viewer-preferences.ui:82
893924 msgid "Read-only"
894925 msgstr "Только для чтения"
895926
896 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
927 #: src/resources/ui/virt-viewer-preferences.ui:96
928 msgid "Share clipboard"
929 msgstr ""
930
931 #: src/resources/ui/virt-viewer-preferences.ui:132
897932 msgid "Spice"
898933 msgstr "Spice"
934
935 #~ msgid "virt-manager.org"
936 #~ msgstr "virt-manager.org"
937
938 #~ msgid "virt-viewer"
939 #~ msgstr "virt-viewer"
Binary diff not shown
+264
-252
po/si.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Sinhala\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+267
-253
po/sk.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Michal Hriň <michal.hrin@yahoo.com>, 2012
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:11-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:11+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Slovak (http://www.transifex.com/projects/p/virt-viewer/"
1414 "language/sk/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr ""
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr ""
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr ""
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr ""
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr ""
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr "Zlyhala inicializácia spojenia"
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr "Nie je možné určiť typ spojenia z URI"
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr "Detaily spojenia"
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
215203 msgstr ""
216204
217 #: ../src/resources/ui/virt-viewer-about.ui.h:4
205 #: src/resources/ui/virt-viewer-about.ui:18
218206 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219207 msgstr ""
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222 msgid "virt-manager.org"
223 msgstr ""
224
225 #: ../src/resources/ui/virt-viewer-about.ui.h:6
209 #: src/resources/ui/virt-viewer-about.ui:20
210 msgid "gitlab.com/virt-viewer/virt-viewer"
211 msgstr ""
212
213 #: src/resources/ui/virt-viewer-about.ui:21
226214 msgid ""
227215 "This program is free software; you can redistribute it and/or modify\n"
228216 "it under the terms of the GNU General Public License as published by\n"
239227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240228 msgstr ""
241229
242 #: ../src/resources/ui/virt-viewer-about.ui.h:20
230 #: src/resources/ui/virt-viewer-about.ui:38
243231 msgid "The Fedora Translation Team"
244232 msgstr ""
245233
246 #: ../src/virt-viewer-app.c:459
234 #: src/virt-viewer-app.c:594
247235 msgid "Do you want to close the session?"
248236 msgstr ""
249237
250 #: ../src/virt-viewer-app.c:461
238 #: src/virt-viewer-app.c:596
251239 msgid "Do not ask me again"
252240 msgstr ""
253241
254 #: ../src/virt-viewer-app.c:655
242 #: src/virt-viewer-app.c:767
255243 #, c-format
256244 msgid "Address is too long for unix socket_path: %s"
257245 msgstr ""
258246
259 #: ../src/virt-viewer-app.c:665
247 #: src/virt-viewer-app.c:777
260248 #, c-format
261249 msgid "Creating unix socket failed: %s"
262250 msgstr ""
263251
264 #: ../src/virt-viewer-app.c:671
252 #: src/virt-viewer-app.c:783
265253 #, c-format
266254 msgid "Connecting to unix socket failed: %s"
267255 msgstr ""
268256
269 #: ../src/virt-viewer-app.c:955
257 #: src/virt-viewer-app.c:1077
270258 #, c-format
271259 msgid "Waiting for display %d..."
272260 msgstr ""
273261
274 #: ../src/virt-viewer-app.c:1062
262 #: src/virt-viewer-app.c:1193
275263 #, c-format
276264 msgid "Unsupported graphic type '%s'"
277265 msgstr ""
278266
279 #: ../src/virt-viewer-app.c:1146
267 #: src/virt-viewer-app.c:1277
280268 msgid "Connect to ssh failed."
281269 msgstr "ssh spojenie zlyhalo."
282270
283 #: ../src/virt-viewer-app.c:1161
271 #: src/virt-viewer-app.c:1292
284272 #, c-format
285273 msgid "Can't connect to channel: %s"
286274 msgstr ""
287275
288 #: ../src/virt-viewer-app.c:1163
276 #: src/virt-viewer-app.c:1294
289277 msgid "only SSH or unix socket connection supported."
290278 msgstr ""
291279
292 #: ../src/virt-viewer-app.c:1176
280 #: src/virt-viewer-app.c:1311
293281 msgid "Connect to channel unsupported."
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:1238
284 #: src/virt-viewer-app.c:1376
297285 msgid "Display can only be attached through libvirt with --attach"
298286 msgstr ""
299287
300 #: ../src/virt-viewer-app.c:1263
288 #: src/virt-viewer-app.c:1401
301289 msgid "Connecting to graphic server"
302290 msgstr "Pripájanie na grafický server"
303291
304 #: ../src/virt-viewer-app.c:1362
292 #: src/virt-viewer-app.c:1500
305293 msgid "Guest domain has shutdown"
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1423
296 #: src/virt-viewer-app.c:1561
309297 msgid "Connected to graphic server"
310298 msgstr ""
311299
312 #: ../src/virt-viewer-app.c:1452
300 #: src/virt-viewer-app.c:1590
313301 #, c-format
314302 msgid "Unable to connect to the graphic server %s"
315303 msgstr "Nie je možné spojenie ku grafickému serveru %s"
316304
317 #: ../src/virt-viewer-app.c:1478
305 #: src/virt-viewer-app.c:1616
318306 #, c-format
319307 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
320308 msgstr ""
321309
322 #: ../src/virt-viewer-app.c:1492
310 #: src/virt-viewer-app.c:1630
323311 #, c-format
324312 msgid "Unable to authenticate with remote desktop server: %s"
325313 msgstr ""
326314
327 #: ../src/virt-viewer-app.c:1500
315 #: src/virt-viewer-app.c:1638
328316 #, c-format
329317 msgid "USB redirection error: %s"
330318 msgstr "Chyba USB presmerovania: %s"
331319
332 #: ../src/virt-viewer-app.c:1834
320 #: src/virt-viewer-app.c:2026
333321 #, c-format
334322 msgid "Zoom level must be within %d-%d\n"
335323 msgstr ""
336324
337 #: ../src/virt-viewer-app.c:1887
325 #: src/virt-viewer-app.c:2081
338326 #, c-format
339327 msgid "%s\n"
340328 msgstr ""
341329
342 #: ../src/virt-viewer-app.c:1897
330 #: src/virt-viewer-app.c:2091
343331 #, c-format
344332 msgid "%s version %s"
345333 msgstr ""
346334
347 #: ../src/virt-viewer-app.c:2321
335 #: src/virt-viewer-app.c:2545
348336 #, c-format
349337 msgid "Display _%d"
350338 msgstr ""
351339
352 #: ../src/virt-viewer-app.c:2577
340 #: src/virt-viewer-app.c:2829
353341 #, c-format
354342 msgid "Invalid kiosk-quit argument: %s"
355343 msgstr ""
356344
357 #: ../src/virt-viewer-app.c:2588
345 #: src/virt-viewer-app.c:2840
358346 msgid "Display version information"
359347 msgstr "Zobraziť informácie o verzii"
360348
361 #: ../src/virt-viewer-app.c:2590
349 #: src/virt-viewer-app.c:2842
362350 msgid "Zoom level of window, in percentage"
363351 msgstr ""
364352
365 #: ../src/virt-viewer-app.c:2592
353 #: src/virt-viewer-app.c:2844
366354 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2594
357 #: src/virt-viewer-app.c:2846
370358 msgid "Customise hotkeys"
371359 msgstr ""
372360
373 #: ../src/virt-viewer-app.c:2596
361 #: src/virt-viewer-app.c:2848
374362 msgid "Enable kiosk mode"
375363 msgstr ""
376364
377 #: ../src/virt-viewer-app.c:2598
365 #: src/virt-viewer-app.c:2850
378366 msgid "Quit on given condition in kiosk mode"
379367 msgstr ""
380368
381 #: ../src/virt-viewer-app.c:2598
369 #: src/virt-viewer-app.c:2850
382370 msgid "<never|on-disconnect>"
383371 msgstr ""
384372
385 #: ../src/virt-viewer-app.c:2600
373 #: src/virt-viewer-app.c:2852
386374 msgid "Display verbose information"
387375 msgstr ""
388376
389 #: ../src/virt-viewer-app.c:2602
377 #: src/virt-viewer-app.c:2854
390378 msgid "Display debugging information"
391379 msgstr ""
392380
393 #: ../src/virt-viewer-auth.c:89
381 #: src/virt-viewer-auth.c:89
394382 #, c-format
395383 msgid ""
396384 "Authentication is required for the %s connection to:\n"
399387 "\n"
400388 msgstr ""
401389
402 #: ../src/virt-viewer-auth.c:93
390 #: src/virt-viewer-auth.c:93
403391 #, c-format
404392 msgid "Authentication is required for the %s connection:\n"
405393 msgstr ""
406394
407 #.
408 #. * Local variables:
409 #. * c-indent-level: 4
410 #. * c-basic-offset: 4
411 #. * indent-tabs-mode: nil
412 #. * End:
413 #.
414 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
395 #: src/resources/ui/virt-viewer-auth.ui:7
415396 msgid "Authentication required"
416397 msgstr ""
417398
418 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
399 #: src/resources/ui/virt-viewer-auth.ui:42
419400 msgid "_OK"
420401 msgstr ""
421402
422 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
423 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
424 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
403 #: src/resources/ui/virt-viewer-auth.ui:71
404 #: src/resources/ui/virt-viewer-guest-details.ui:82
405 #: src/resources/ui/virt-viewer-guest-details.ui:96
406 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
425407 msgid "label"
426408 msgstr ""
427409
428 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
410 #: src/resources/ui/virt-viewer-auth.ui:93
429411 msgid "Password:"
430412 msgstr ""
431413
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
414 #: src/resources/ui/virt-viewer-auth.ui:105
433415 msgid "Username:"
434416 msgstr ""
435417
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
418 #: src/resources/ui/virt-viewer-auth.ui:137
437419 msgid "Show password"
438420 msgstr ""
439421
440 #: ../src/virt-viewer-display-vnc.c:134
422 #: src/virt-viewer-display-vnc.c:130
441423 msgid "VNC does not provide GUID"
442424 msgstr ""
443425
444 #: ../src/virt-viewer-file-transfer-dialog.c:128
426 #: src/virt-viewer-display-vte.c:181
427 msgid "Console support is compiled out!"
428 msgstr ""
429
430 #: src/virt-viewer-file-transfer-dialog.c:124
445431 msgid "File Transfers"
446432 msgstr ""
447433
448 #: ../src/virt-viewer-file-transfer-dialog.c:154
434 #: src/virt-viewer-file-transfer-dialog.c:150
449435 msgid "Transferring 1 file..."
450436 msgstr ""
451437
452 #: ../src/virt-viewer-file-transfer-dialog.c:156
453 #, c-format
454 msgid "Transferring %d file of %d..."
455 msgid_plural "Transferring %d files of %d..."
438 #: src/virt-viewer-file-transfer-dialog.c:152
439 #, c-format
440 msgid "Transferring %u file of %u..."
441 msgid_plural "Transferring %u files of %u..."
456442 msgstr[0] ""
457
458 #: ../src/virt-viewer-file-transfer-dialog.c:228
459 #, c-format
460 msgid "An error caused the following file transfers to fail:%s"
461 msgstr ""
462
463 #: ../src/virt-viewer-main.c:38
443 msgstr[1] ""
444 msgstr[2] ""
445
446 #: src/virt-viewer-file-transfer-dialog.c:225
447 msgid "An error caused the following file transfers to fail:"
448 msgstr ""
449
450 #: src/virt-viewer-main.c:38
464451 msgid "Virt Viewer"
465452 msgstr "Virt Viewer"
466453
467 #: ../src/virt-viewer-session-spice.c:704
454 #: src/virt-viewer-session-spice.c:731
468455 msgid "Invalid password"
469456 msgstr ""
470457
471 #. Create the widgets
472 #: ../src/virt-viewer-session-spice.c:802
458 #: src/virt-viewer-session-spice.c:829
473459 msgid "Select USB devices for redirection"
474460 msgstr ""
475461
476 #: ../src/virt-viewer-session-spice.c:804
477 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
462 #: src/virt-viewer-session-spice.c:831
463 #: src/resources/ui/virt-viewer-guest-details.ui:23
478464 msgid "_Close"
479465 msgstr ""
480466
481 #: ../src/virt-viewer-session-vnc.c:162
482 #, c-format
483 msgid "Unsupported authentication type %d"
484 msgstr ""
485
486 #: ../src/virt-viewer-vm-connection.c:64
467 #: src/virt-viewer-session-spice.c:1019
468 msgid "Serial"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1021
472 msgid "QEMU human monitor"
473 msgstr ""
474
475 #: src/virt-viewer-session-spice.c:1023
476 msgid "QEMU debug console"
477 msgstr ""
478
479 #: src/virt-viewer-session-vnc.c:158
480 #, c-format
481 msgid "Unsupported authentication type %u"
482 msgstr ""
483
484 #: src/virt-viewer-vm-connection.c:64
487485 msgid "No running virtual machine found"
488486 msgstr ""
489487
490 #: ../src/virt-viewer-vm-connection.c:93
488 #: src/virt-viewer-vm-connection.c:93
491489 msgid "No virtual machine was chosen"
492490 msgstr ""
493491
494 #: ../src/virt-viewer-window.c:544
492 #: src/virt-viewer-window.c:621
495493 msgid "Ctrl+Alt+_Del"
496494 msgstr "Ctrl+Alt+_Del"
497495
498 #: ../src/virt-viewer-window.c:545
496 #: src/virt-viewer-window.c:622
499497 msgid "Ctrl+Alt+_Backspace"
500498 msgstr "Ctrl+Alt+_Backspace"
501499
502 #: ../src/virt-viewer-window.c:547
500 #: src/virt-viewer-window.c:624
503501 msgid "Ctrl+Alt+F_1"
504502 msgstr "Ctrl+Alt+F_1"
505503
506 #: ../src/virt-viewer-window.c:548
504 #: src/virt-viewer-window.c:625
507505 msgid "Ctrl+Alt+F_2"
508506 msgstr "Ctrl+Alt+F_2"
509507
510 #: ../src/virt-viewer-window.c:549
508 #: src/virt-viewer-window.c:626
511509 msgid "Ctrl+Alt+F_3"
512510 msgstr "Ctrl+Alt+F_3"
513511
514 #: ../src/virt-viewer-window.c:550
512 #: src/virt-viewer-window.c:627
515513 msgid "Ctrl+Alt+F_4"
516514 msgstr "Ctrl+Alt+F_4"
517515
518 #: ../src/virt-viewer-window.c:551
516 #: src/virt-viewer-window.c:628
519517 msgid "Ctrl+Alt+F_5"
520518 msgstr "Ctrl+Alt+F_5"
521519
522 #: ../src/virt-viewer-window.c:552
520 #: src/virt-viewer-window.c:629
523521 msgid "Ctrl+Alt+F_6"
524522 msgstr "Ctrl+Alt+F_6"
525523
526 #: ../src/virt-viewer-window.c:553
524 #: src/virt-viewer-window.c:630
527525 msgid "Ctrl+Alt+F_7"
528526 msgstr "Ctrl+Alt+F_7"
529527
530 #: ../src/virt-viewer-window.c:554
528 #: src/virt-viewer-window.c:631
531529 msgid "Ctrl+Alt+F_8"
532530 msgstr "Ctrl+Alt+F_8"
533531
534 #: ../src/virt-viewer-window.c:555
532 #: src/virt-viewer-window.c:632
535533 msgid "Ctrl+Alt+F_9"
536534 msgstr "Ctrl+Alt+F_9"
537535
538 #: ../src/virt-viewer-window.c:556
536 #: src/virt-viewer-window.c:633
539537 msgid "Ctrl+Alt+F1_0"
540538 msgstr "Ctrl+Alt+F1_0"
541539
542 #: ../src/virt-viewer-window.c:557
540 #: src/virt-viewer-window.c:634
543541 msgid "Ctrl+Alt+F11"
544542 msgstr ""
545543
546 #: ../src/virt-viewer-window.c:558
544 #: src/virt-viewer-window.c:635
547545 msgid "Ctrl+Alt+F12"
548546 msgstr ""
549547
550 #: ../src/virt-viewer-window.c:953
548 #: src/virt-viewer-window.c:637
549 msgid "_PrintScreen"
550 msgstr ""
551
552 #: src/virt-viewer-window.c:1030
551553 #, c-format
552554 msgid "Unable to determine image format for file '%s'"
553555 msgstr ""
554556
555 #: ../src/virt-viewer-window.c:980
557 #: src/virt-viewer-window.c:1053
558 msgid "Save screenshot"
559 msgstr ""
560
561 #: src/virt-viewer-window.c:1057
556562 msgid "_Save"
557563 msgstr ""
558564
559 #: ../src/virt-viewer-window.c:988
565 #: src/virt-viewer-window.c:1065
560566 msgid "Screenshot.png"
561567 msgstr ""
562568
563 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
569 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
564570 msgid "Unknown"
565571 msgstr ""
566572
567 #: ../src/virt-viewer-window.c:1152
573 #: src/virt-viewer-window.c:1237
568574 msgid "Unable to connnect to oVirt"
569575 msgstr ""
570576
571 #: ../src/virt-viewer-window.c:1175
577 #: src/virt-viewer-window.c:1260
572578 msgid "Disconnect"
573579 msgstr "Odpojiť"
574580
575 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
581 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
576582 msgid "USB device selection"
577583 msgstr "Výber USB zariadenia"
578584
579 #: ../src/virt-viewer-window.c:1193
585 #: src/virt-viewer-window.c:1278
580586 msgid "Send key combination"
581587 msgstr ""
582588
583 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
589 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
584590 msgid "Leave fullscreen"
585591 msgstr "Opustiť režim celej obrazovky"
586592
587 #: ../src/virt-viewer-window.c:1279
593 #: src/virt-viewer-window.c:1364
588594 msgid "Ctrl+Alt"
589595 msgstr "Ctrl+Alt"
590596
591 #: ../src/virt-viewer-window.c:1282
597 #: src/virt-viewer-window.c:1367
592598 #, c-format
593599 msgid "(Press %s to release pointer)"
594600 msgstr "(Stlačte %s pre uvoľnenie ukazovateľa)"
595601
596 #. translators:
597 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
598 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
599 #.
600 #: ../src/virt-viewer-window.c:1293
602 #: src/virt-viewer-window.c:1378
601603 #, c-format
602604 msgid "%s%s%s - %s"
603605 msgstr "%s%s%s - %s"
604606
605 #. translators: <space>
606 #: ../src/virt-viewer-window.c:1297
607 #: src/virt-viewer-window.c:1382
607608 msgid " "
608609 msgstr " "
609610
610 #: ../src/virt-viewer-file.c:862
611 #: src/virt-viewer-file.c:875
611612 #, c-format
612613 msgid ""
613614 "At least %s version %s is required to setup this connection, see %s for "
614615 "details"
615616 msgstr ""
616617
617 #: ../src/virt-viewer-file.c:870
618 #: src/virt-viewer-file.c:883
618619 #, c-format
619620 msgid "At least %s version %s is required to setup this connection"
620621 msgstr ""
621622
622 #: ../src/virt-viewer.c:133
623 #: src/virt-viewer.c:131
623624 msgid "Direct connection with no automatic tunnels"
624625 msgstr ""
625626
626 #: ../src/virt-viewer.c:135
627 #: src/virt-viewer.c:133
627628 msgid "Attach to the local display using libvirt"
628629 msgstr ""
629630
630 #: ../src/virt-viewer.c:137
631 #: src/virt-viewer.c:135
631632 msgid "Connect to hypervisor"
632633 msgstr "Pripájanie na hypervízor"
633634
634 #: ../src/virt-viewer.c:139
635 #: src/virt-viewer.c:137
635636 msgid "Wait for domain to start"
636637 msgstr ""
637638
638 #: ../src/virt-viewer.c:141
639 #: src/virt-viewer.c:139
639640 msgid "Reconnect to domain upon restart"
640641 msgstr ""
641642
642 #: ../src/virt-viewer.c:143
643 #: src/virt-viewer.c:141
643644 msgid "Select the virtual machine only by its name"
644645 msgstr ""
645646
646 #: ../src/virt-viewer.c:145
647 #: src/virt-viewer.c:143
647648 msgid "Select the virtual machine only by its id"
648649 msgstr ""
649650
650 #: ../src/virt-viewer.c:147
651 #: src/virt-viewer.c:145
651652 msgid "Select the virtual machine only by its uuid"
652653 msgstr ""
653654
654 #: ../src/virt-viewer.c:154
655 #: src/virt-viewer.c:152
655656 msgid "Virtual machine graphical console"
656657 msgstr ""
657658
658 #: ../src/virt-viewer.c:173
659 #: src/virt-viewer.c:171
659660 #, c-format
660661 msgid ""
661662 "\n"
663664 "\n"
664665 msgstr ""
665666
666 #: ../src/virt-viewer.c:185
667 #: src/virt-viewer.c:183
667668 #, c-format
668669 msgid ""
669670 "\n"
671672 "\n"
672673 msgstr ""
673674
674 #: ../src/virt-viewer.c:300
675 #: src/virt-viewer.c:296
675676 msgid "Waiting for guest domain to re-start"
676677 msgstr ""
677678
678 #: ../src/virt-viewer.c:554
679 #: src/virt-viewer.c:550
679680 #, c-format
680681 msgid "Cannot determine the graphic type for the guest %s"
681682 msgstr ""
682683
683 #: ../src/virt-viewer.c:603
684 #: src/virt-viewer.c:599
684685 #, c-format
685686 msgid "Cannot determine the host for the guest %s"
686687 msgstr ""
687688
688 #: ../src/virt-viewer.c:631
689 #: src/virt-viewer.c:627
689690 #, c-format
690691 msgid "Guest '%s' is not reachable"
691692 msgstr ""
692693
693 #: ../src/virt-viewer.c:860
694 #: src/virt-viewer.c:856
694695 #, c-format
695696 msgid "Virtual machine %s is not running"
696697 msgstr ""
697698
698 #: ../src/virt-viewer.c:884
699 #: src/virt-viewer.c:881
699700 msgid "Waiting for libvirt to start"
700701 msgstr ""
701702
702 #: ../src/virt-viewer.c:888
703 #: src/virt-viewer.c:885
703704 msgid "Finding guest domain"
704705 msgstr ""
705706
706 #: ../src/virt-viewer.c:892
707 #: src/virt-viewer.c:889
707708 msgid "Waiting for guest domain to be created"
708709 msgstr ""
709710
710 #: ../src/virt-viewer.c:918
711 #: src/virt-viewer.c:921
711712 msgid "Checking guest domain status"
712713 msgstr ""
713714
714 #: ../src/virt-viewer.c:921
715 #: src/virt-viewer.c:924
715716 msgid "Cannot get guest state"
716717 msgstr ""
717718
718 #: ../src/virt-viewer.c:927
719 #: src/virt-viewer.c:930
719720 msgid "Waiting for guest domain to start"
720721 msgstr ""
721722
722 #: ../src/virt-viewer.c:1040
723 #: src/virt-viewer.c:1044
723724 #, c-format
724725 msgid "Unable to connect to libvirt with URI: %s."
725726 msgstr ""
726727
727 #: ../src/virt-viewer.c:1041
728 #: src/virt-viewer.c:1045
728729 msgid "[none]"
729730 msgstr ""
730731
731 #: ../src/virt-viewer.c:1048
732 #: src/virt-viewer.c:1052
732733 msgid "Authentication failed."
733734 msgstr ""
734735
735 #: ../src/virt-viewer.c:1108
736 #: src/virt-viewer.c:1112
736737 msgid "Failed to connect: "
737738 msgstr ""
738739
739 #.
740 #. * Local variables:
741 #. * c-indent-level: 4
742 #. * c-basic-offset: 4
743 #. * indent-tabs-mode: nil
744 #. * End:
745 #.
746 #: ../src/resources/ui/virt-viewer.ui.h:1
740 #: src/resources/ui/virt-viewer.ui:28
747741 msgid "_File"
748742 msgstr "_Súbor"
749743
750 #: ../src/resources/ui/virt-viewer.ui.h:2
744 #: src/resources/ui/virt-viewer.ui:41
751745 msgid "_Screenshot"
752746 msgstr ""
753747
754 #: ../src/resources/ui/virt-viewer.ui.h:3
748 #: src/resources/ui/virt-viewer.ui:52
755749 msgid "_USB device selection"
756750 msgstr ""
757751
758 #: ../src/resources/ui/virt-viewer.ui.h:4
752 #: src/resources/ui/virt-viewer.ui:62
759753 msgid "Smartcard insertion"
760754 msgstr ""
761755
762 #: ../src/resources/ui/virt-viewer.ui.h:5
756 #: src/resources/ui/virt-viewer.ui:72
763757 msgid "Smartcard removal"
764758 msgstr ""
765759
766 #: ../src/resources/ui/virt-viewer.ui.h:6
760 #: src/resources/ui/virt-viewer.ui:80
767761 msgid "_Change CD"
768762 msgstr ""
769763
770 #: ../src/resources/ui/virt-viewer.ui.h:7
764 #: src/resources/ui/virt-viewer.ui:90
771765 msgid "_Preferences"
772766 msgstr ""
773767
774 #: ../src/resources/ui/virt-viewer.ui.h:8
768 #: src/resources/ui/virt-viewer.ui:103
775769 msgid "_Quit"
776770 msgstr ""
777771
778 #: ../src/resources/ui/virt-viewer.ui.h:9
772 #: src/resources/ui/virt-viewer.ui:119
773 msgid "_Machine"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:129
777 msgid "_Pause"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:144
781 msgid "_Reset"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:153
785 msgid "_Power down"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:167
779789 msgid "_View"
780790 msgstr "_Zobraziť"
781791
782 #: ../src/resources/ui/virt-viewer.ui.h:10
792 #: src/resources/ui/virt-viewer.ui:180
783793 msgid "_Full screen"
784794 msgstr ""
785795
786 #: ../src/resources/ui/virt-viewer.ui.h:11
796 #: src/resources/ui/virt-viewer.ui:191
787797 msgid "_Zoom"
788798 msgstr ""
789799
790 #: ../src/resources/ui/virt-viewer.ui.h:12
800 #: src/resources/ui/virt-viewer.ui:201
791801 msgid "Zoom _In"
792802 msgstr ""
793803
794 #: ../src/resources/ui/virt-viewer.ui.h:13
804 #: src/resources/ui/virt-viewer.ui:212
795805 msgid "Zoom _Out"
796806 msgstr ""
797807
798 #: ../src/resources/ui/virt-viewer.ui.h:14
808 #: src/resources/ui/virt-viewer.ui:229
799809 msgid "_Normal Size"
800810 msgstr ""
801811
802 #: ../src/resources/ui/virt-viewer.ui.h:15
812 #: src/resources/ui/virt-viewer.ui:246
803813 msgid "_Displays"
804814 msgstr ""
805815
806 #: ../src/resources/ui/virt-viewer.ui.h:16
816 #: src/resources/ui/virt-viewer.ui:255
807817 msgid "Release cursor"
808818 msgstr "Uvoľniť kurzor"
809819
810 #: ../src/resources/ui/virt-viewer.ui.h:17
820 #: src/resources/ui/virt-viewer.ui:270
811821 msgid "_Send key"
812822 msgstr ""
813823
814 #: ../src/resources/ui/virt-viewer.ui.h:18
824 #: src/resources/ui/virt-viewer.ui:279
815825 msgid "_Help"
816826 msgstr "_Pomoc"
817827
818 #: ../src/resources/ui/virt-viewer.ui.h:19
828 #: src/resources/ui/virt-viewer.ui:290
819829 msgid "_Guest Details"
820830 msgstr ""
821831
822 #: ../src/resources/ui/virt-viewer.ui.h:20
832 #: src/resources/ui/virt-viewer.ui:297
823833 msgid "_About"
824834 msgstr ""
825835
826 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
836 #: src/resources/ui/virt-viewer-guest-details.ui:7
827837 msgid "Guest Details"
828838 msgstr ""
829839
830 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
840 #: src/resources/ui/virt-viewer-guest-details.ui:56
831841 msgid "Name:"
832842 msgstr ""
833843
834 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
844 #: src/resources/ui/virt-viewer-guest-details.ui:68
835845 msgid "GUID:"
836846 msgstr ""
837847
838 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
848 #: src/resources/ui/virt-viewer-vm-connection.ui:7
839849 msgid "Choose a virtual machine"
840850 msgstr ""
841851
842 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
852 #: src/resources/ui/virt-viewer-vm-connection.ui:96
843853 msgid "Available virtual machines"
844854 msgstr ""
845855
846 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
856 #: src/resources/ui/virt-viewer-preferences.ui:8
847857 msgid "Preferences"
848858 msgstr ""
849859
850 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
860 #: src/resources/ui/virt-viewer-preferences.ui:48
851861 msgid "Folder sharing"
852862 msgstr ""
853863
854 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
864 #: src/resources/ui/virt-viewer-preferences.ui:70
855865 msgid "Share folder"
856866 msgstr ""
857867
858 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
868 #: src/resources/ui/virt-viewer-preferences.ui:82
859869 msgid "Read-only"
860870 msgstr ""
861871
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
872 #: src/resources/ui/virt-viewer-preferences.ui:96
873 msgid "Share clipboard"
874 msgstr ""
875
876 #: src/resources/ui/virt-viewer-preferences.ui:132
863877 msgid "Spice"
864878 msgstr ""
Binary diff not shown
+264
-252
po/sl.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Slovenian\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
1818 "%100==4 ? 3 : 0)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444 msgstr[3] ""
459445
460 #: ../src/virt-viewer-file-transfer-dialog.c:228
461 #, c-format
462 msgid "An error caused the following file transfers to fail:%s"
463 msgstr ""
464
465 #: ../src/virt-viewer-main.c:38
446 #: src/virt-viewer-file-transfer-dialog.c:225
447 msgid "An error caused the following file transfers to fail:"
448 msgstr ""
449
450 #: src/virt-viewer-main.c:38
466451 msgid "Virt Viewer"
467452 msgstr ""
468453
469 #: ../src/virt-viewer-session-spice.c:704
454 #: src/virt-viewer-session-spice.c:731
470455 msgid "Invalid password"
471456 msgstr ""
472457
473 #. Create the widgets
474 #: ../src/virt-viewer-session-spice.c:802
458 #: src/virt-viewer-session-spice.c:829
475459 msgid "Select USB devices for redirection"
476460 msgstr ""
477461
478 #: ../src/virt-viewer-session-spice.c:804
479 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
462 #: src/virt-viewer-session-spice.c:831
463 #: src/resources/ui/virt-viewer-guest-details.ui:23
480464 msgid "_Close"
481465 msgstr ""
482466
483 #: ../src/virt-viewer-session-vnc.c:162
484 #, c-format
485 msgid "Unsupported authentication type %d"
486 msgstr ""
487
488 #: ../src/virt-viewer-vm-connection.c:64
467 #: src/virt-viewer-session-spice.c:1019
468 msgid "Serial"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1021
472 msgid "QEMU human monitor"
473 msgstr ""
474
475 #: src/virt-viewer-session-spice.c:1023
476 msgid "QEMU debug console"
477 msgstr ""
478
479 #: src/virt-viewer-session-vnc.c:158
480 #, c-format
481 msgid "Unsupported authentication type %u"
482 msgstr ""
483
484 #: src/virt-viewer-vm-connection.c:64
489485 msgid "No running virtual machine found"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-vm-connection.c:93
488 #: src/virt-viewer-vm-connection.c:93
493489 msgid "No virtual machine was chosen"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:544
492 #: src/virt-viewer-window.c:621
497493 msgid "Ctrl+Alt+_Del"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:545
496 #: src/virt-viewer-window.c:622
501497 msgid "Ctrl+Alt+_Backspace"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:547
500 #: src/virt-viewer-window.c:624
505501 msgid "Ctrl+Alt+F_1"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:548
504 #: src/virt-viewer-window.c:625
509505 msgid "Ctrl+Alt+F_2"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:549
508 #: src/virt-viewer-window.c:626
513509 msgid "Ctrl+Alt+F_3"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:550
512 #: src/virt-viewer-window.c:627
517513 msgid "Ctrl+Alt+F_4"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:551
516 #: src/virt-viewer-window.c:628
521517 msgid "Ctrl+Alt+F_5"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:552
520 #: src/virt-viewer-window.c:629
525521 msgid "Ctrl+Alt+F_6"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:553
524 #: src/virt-viewer-window.c:630
529525 msgid "Ctrl+Alt+F_7"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:554
528 #: src/virt-viewer-window.c:631
533529 msgid "Ctrl+Alt+F_8"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:555
532 #: src/virt-viewer-window.c:632
537533 msgid "Ctrl+Alt+F_9"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:556
536 #: src/virt-viewer-window.c:633
541537 msgid "Ctrl+Alt+F1_0"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:557
540 #: src/virt-viewer-window.c:634
545541 msgid "Ctrl+Alt+F11"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:558
544 #: src/virt-viewer-window.c:635
549545 msgid "Ctrl+Alt+F12"
550546 msgstr ""
551547
552 #: ../src/virt-viewer-window.c:953
548 #: src/virt-viewer-window.c:637
549 msgid "_PrintScreen"
550 msgstr ""
551
552 #: src/virt-viewer-window.c:1030
553553 #, c-format
554554 msgid "Unable to determine image format for file '%s'"
555555 msgstr ""
556556
557 #: ../src/virt-viewer-window.c:980
557 #: src/virt-viewer-window.c:1053
558 msgid "Save screenshot"
559 msgstr ""
560
561 #: src/virt-viewer-window.c:1057
558562 msgid "_Save"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:988
565 #: src/virt-viewer-window.c:1065
562566 msgid "Screenshot.png"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
569 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
566570 msgid "Unknown"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1152
573 #: src/virt-viewer-window.c:1237
570574 msgid "Unable to connnect to oVirt"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1175
577 #: src/virt-viewer-window.c:1260
574578 msgid "Disconnect"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
581 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
578582 msgid "USB device selection"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1193
585 #: src/virt-viewer-window.c:1278
582586 msgid "Send key combination"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
589 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
586590 msgid "Leave fullscreen"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1279
593 #: src/virt-viewer-window.c:1364
590594 msgid "Ctrl+Alt"
591595 msgstr ""
592596
593 #: ../src/virt-viewer-window.c:1282
597 #: src/virt-viewer-window.c:1367
594598 #, c-format
595599 msgid "(Press %s to release pointer)"
596600 msgstr ""
597601
598 #. translators:
599 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
600 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
601 #.
602 #: ../src/virt-viewer-window.c:1293
602 #: src/virt-viewer-window.c:1378
603603 #, c-format
604604 msgid "%s%s%s - %s"
605605 msgstr ""
606606
607 #. translators: <space>
608 #: ../src/virt-viewer-window.c:1297
607 #: src/virt-viewer-window.c:1382
609608 msgid " "
610609 msgstr ""
611610
612 #: ../src/virt-viewer-file.c:862
611 #: src/virt-viewer-file.c:875
613612 #, c-format
614613 msgid ""
615614 "At least %s version %s is required to setup this connection, see %s for "
616615 "details"
617616 msgstr ""
618617
619 #: ../src/virt-viewer-file.c:870
618 #: src/virt-viewer-file.c:883
620619 #, c-format
621620 msgid "At least %s version %s is required to setup this connection"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:133
623 #: src/virt-viewer.c:131
625624 msgid "Direct connection with no automatic tunnels"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:135
627 #: src/virt-viewer.c:133
629628 msgid "Attach to the local display using libvirt"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:137
631 #: src/virt-viewer.c:135
633632 msgid "Connect to hypervisor"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:139
635 #: src/virt-viewer.c:137
637636 msgid "Wait for domain to start"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:141
639 #: src/virt-viewer.c:139
641640 msgid "Reconnect to domain upon restart"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:143
643 #: src/virt-viewer.c:141
645644 msgid "Select the virtual machine only by its name"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:145
647 #: src/virt-viewer.c:143
649648 msgid "Select the virtual machine only by its id"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:147
651 #: src/virt-viewer.c:145
653652 msgid "Select the virtual machine only by its uuid"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:154
655 #: src/virt-viewer.c:152
657656 msgid "Virtual machine graphical console"
658657 msgstr ""
659658
660 #: ../src/virt-viewer.c:173
659 #: src/virt-viewer.c:171
661660 #, c-format
662661 msgid ""
663662 "\n"
665664 "\n"
666665 msgstr ""
667666
668 #: ../src/virt-viewer.c:185
667 #: src/virt-viewer.c:183
669668 #, c-format
670669 msgid ""
671670 "\n"
673672 "\n"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:300
675 #: src/virt-viewer.c:296
677676 msgid "Waiting for guest domain to re-start"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.c:554
679 #: src/virt-viewer.c:550
681680 #, c-format
682681 msgid "Cannot determine the graphic type for the guest %s"
683682 msgstr ""
684683
685 #: ../src/virt-viewer.c:603
684 #: src/virt-viewer.c:599
686685 #, c-format
687686 msgid "Cannot determine the host for the guest %s"
688687 msgstr ""
689688
690 #: ../src/virt-viewer.c:631
689 #: src/virt-viewer.c:627
691690 #, c-format
692691 msgid "Guest '%s' is not reachable"
693692 msgstr ""
694693
695 #: ../src/virt-viewer.c:860
694 #: src/virt-viewer.c:856
696695 #, c-format
697696 msgid "Virtual machine %s is not running"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:884
699 #: src/virt-viewer.c:881
701700 msgid "Waiting for libvirt to start"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:888
703 #: src/virt-viewer.c:885
705704 msgid "Finding guest domain"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:892
707 #: src/virt-viewer.c:889
709708 msgid "Waiting for guest domain to be created"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:918
711 #: src/virt-viewer.c:921
713712 msgid "Checking guest domain status"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:921
715 #: src/virt-viewer.c:924
717716 msgid "Cannot get guest state"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:927
719 #: src/virt-viewer.c:930
721720 msgid "Waiting for guest domain to start"
722721 msgstr ""
723722
724 #: ../src/virt-viewer.c:1040
723 #: src/virt-viewer.c:1044
725724 #, c-format
726725 msgid "Unable to connect to libvirt with URI: %s."
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1041
728 #: src/virt-viewer.c:1045
730729 msgid "[none]"
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1048
732 #: src/virt-viewer.c:1052
734733 msgid "Authentication failed."
735734 msgstr ""
736735
737 #: ../src/virt-viewer.c:1108
736 #: src/virt-viewer.c:1112
738737 msgid "Failed to connect: "
739738 msgstr ""
740739
741 #.
742 #. * Local variables:
743 #. * c-indent-level: 4
744 #. * c-basic-offset: 4
745 #. * indent-tabs-mode: nil
746 #. * End:
747 #.
748 #: ../src/resources/ui/virt-viewer.ui.h:1
740 #: src/resources/ui/virt-viewer.ui:28
749741 msgid "_File"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:2
744 #: src/resources/ui/virt-viewer.ui:41
753745 msgid "_Screenshot"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:3
748 #: src/resources/ui/virt-viewer.ui:52
757749 msgid "_USB device selection"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:4
752 #: src/resources/ui/virt-viewer.ui:62
761753 msgid "Smartcard insertion"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:5
756 #: src/resources/ui/virt-viewer.ui:72
765757 msgid "Smartcard removal"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:6
760 #: src/resources/ui/virt-viewer.ui:80
769761 msgid "_Change CD"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:7
764 #: src/resources/ui/virt-viewer.ui:90
773765 msgid "_Preferences"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:8
768 #: src/resources/ui/virt-viewer.ui:103
777769 msgid "_Quit"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:9
772 #: src/resources/ui/virt-viewer.ui:119
773 msgid "_Machine"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:129
777 msgid "_Pause"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:144
781 msgid "_Reset"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:153
785 msgid "_Power down"
786 msgstr ""
787
788 #: src/resources/ui/virt-viewer.ui:167
781789 msgid "_View"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:10
792 #: src/resources/ui/virt-viewer.ui:180
785793 msgid "_Full screen"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:11
796 #: src/resources/ui/virt-viewer.ui:191
789797 msgid "_Zoom"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:12
800 #: src/resources/ui/virt-viewer.ui:201
793801 msgid "Zoom _In"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:13
804 #: src/resources/ui/virt-viewer.ui:212
797805 msgid "Zoom _Out"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:14
808 #: src/resources/ui/virt-viewer.ui:229
801809 msgid "_Normal Size"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:15
812 #: src/resources/ui/virt-viewer.ui:246
805813 msgid "_Displays"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:16
816 #: src/resources/ui/virt-viewer.ui:255
809817 msgid "Release cursor"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:17
820 #: src/resources/ui/virt-viewer.ui:270
813821 msgid "_Send key"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:18
824 #: src/resources/ui/virt-viewer.ui:279
817825 msgid "_Help"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:19
828 #: src/resources/ui/virt-viewer.ui:290
821829 msgid "_Guest Details"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:20
832 #: src/resources/ui/virt-viewer.ui:297
825833 msgid "_About"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
836 #: src/resources/ui/virt-viewer-guest-details.ui:7
829837 msgid "Guest Details"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
840 #: src/resources/ui/virt-viewer-guest-details.ui:56
833841 msgid "Name:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
844 #: src/resources/ui/virt-viewer-guest-details.ui:68
837845 msgid "GUID:"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
848 #: src/resources/ui/virt-viewer-vm-connection.ui:7
841849 msgid "Choose a virtual machine"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
852 #: src/resources/ui/virt-viewer-vm-connection.ui:96
845853 msgid "Available virtual machines"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
856 #: src/resources/ui/virt-viewer-preferences.ui:8
849857 msgid "Preferences"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
860 #: src/resources/ui/virt-viewer-preferences.ui:48
853861 msgid "Folder sharing"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
864 #: src/resources/ui/virt-viewer-preferences.ui:70
857865 msgid "Share folder"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
868 #: src/resources/ui/virt-viewer-preferences.ui:82
861869 msgid "Read-only"
862870 msgstr ""
863871
864 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
872 #: src/resources/ui/virt-viewer-preferences.ui:96
873 msgid "Share clipboard"
874 msgstr ""
875
876 #: src/resources/ui/virt-viewer-preferences.ui:132
865877 msgid "Spice"
866878 msgstr ""
Binary diff not shown
+264
-252
po/sq.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Albanian\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/sr.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Serbian\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1818 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444
459 #: ../src/virt-viewer-file-transfer-dialog.c:228
460 #, c-format
461 msgid "An error caused the following file transfers to fail:%s"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:38
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
465450 msgid "Virt Viewer"
466451 msgstr ""
467452
468 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
469454 msgid "Invalid password"
470455 msgstr ""
471456
472 #. Create the widgets
473 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
474458 msgid "Select USB devices for redirection"
475459 msgstr ""
476460
477 #: ../src/virt-viewer-session-spice.c:804
478 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
479463 msgid "_Close"
480464 msgstr ""
481465
482 #: ../src/virt-viewer-session-vnc.c:162
483 #, c-format
484 msgid "Unsupported authentication type %d"
485 msgstr ""
486
487 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
488484 msgid "No running virtual machine found"
489485 msgstr ""
490486
491 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
492488 msgid "No virtual machine was chosen"
493489 msgstr ""
494490
495 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
496492 msgid "Ctrl+Alt+_Del"
497493 msgstr ""
498494
499 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
500496 msgid "Ctrl+Alt+_Backspace"
501497 msgstr ""
502498
503 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
504500 msgid "Ctrl+Alt+F_1"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
508504 msgid "Ctrl+Alt+F_2"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
512508 msgid "Ctrl+Alt+F_3"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
516512 msgid "Ctrl+Alt+F_4"
517513 msgstr ""
518514
519 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
520516 msgid "Ctrl+Alt+F_5"
521517 msgstr ""
522518
523 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
524520 msgid "Ctrl+Alt+F_6"
525521 msgstr ""
526522
527 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
528524 msgid "Ctrl+Alt+F_7"
529525 msgstr ""
530526
531 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
532528 msgid "Ctrl+Alt+F_8"
533529 msgstr ""
534530
535 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
536532 msgid "Ctrl+Alt+F_9"
537533 msgstr ""
538534
539 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
540536 msgid "Ctrl+Alt+F1_0"
541537 msgstr ""
542538
543 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
544540 msgid "Ctrl+Alt+F11"
545541 msgstr ""
546542
547 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
548544 msgid "Ctrl+Alt+F12"
549545 msgstr ""
550546
551 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
552552 #, c-format
553553 msgid "Unable to determine image format for file '%s'"
554554 msgstr ""
555555
556 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
557561 msgid "_Save"
558562 msgstr ""
559563
560 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
561565 msgid "Screenshot.png"
562566 msgstr ""
563567
564 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
565569 msgid "Unknown"
566570 msgstr ""
567571
568 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
569573 msgid "Unable to connnect to oVirt"
570574 msgstr ""
571575
572 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
573577 msgid "Disconnect"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
577581 msgid "USB device selection"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
581585 msgid "Send key combination"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
585589 msgid "Leave fullscreen"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
589593 msgid "Ctrl+Alt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
593597 #, c-format
594598 msgid "(Press %s to release pointer)"
595599 msgstr ""
596600
597 #. translators:
598 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600 #.
601 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
602602 #, c-format
603603 msgid "%s%s%s - %s"
604604 msgstr ""
605605
606 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
608607 msgid " "
609608 msgstr ""
610609
611 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
612611 #, c-format
613612 msgid ""
614613 "At least %s version %s is required to setup this connection, see %s for "
615614 "details"
616615 msgstr ""
617616
618 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
619618 #, c-format
620619 msgid "At least %s version %s is required to setup this connection"
621620 msgstr ""
622621
623 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
624623 msgid "Direct connection with no automatic tunnels"
625624 msgstr ""
626625
627 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
628627 msgid "Attach to the local display using libvirt"
629628 msgstr ""
630629
631 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
632631 msgid "Connect to hypervisor"
633632 msgstr ""
634633
635 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
636635 msgid "Wait for domain to start"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
640639 msgid "Reconnect to domain upon restart"
641640 msgstr ""
642641
643 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
644643 msgid "Select the virtual machine only by its name"
645644 msgstr ""
646645
647 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
648647 msgid "Select the virtual machine only by its id"
649648 msgstr ""
650649
651 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
652651 msgid "Select the virtual machine only by its uuid"
653652 msgstr ""
654653
655 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
656655 msgid "Virtual machine graphical console"
657656 msgstr ""
658657
659 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
660659 #, c-format
661660 msgid ""
662661 "\n"
664663 "\n"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
668667 #, c-format
669668 msgid ""
670669 "\n"
672671 "\n"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
676675 msgid "Waiting for guest domain to re-start"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
680679 #, c-format
681680 msgid "Cannot determine the graphic type for the guest %s"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
685684 #, c-format
686685 msgid "Cannot determine the host for the guest %s"
687686 msgstr ""
688687
689 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
690689 #, c-format
691690 msgid "Guest '%s' is not reachable"
692691 msgstr ""
693692
694 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
695694 #, c-format
696695 msgid "Virtual machine %s is not running"
697696 msgstr ""
698697
699 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
700699 msgid "Waiting for libvirt to start"
701700 msgstr ""
702701
703 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
704703 msgid "Finding guest domain"
705704 msgstr ""
706705
707 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
708707 msgid "Waiting for guest domain to be created"
709708 msgstr ""
710709
711 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
712711 msgid "Checking guest domain status"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
716715 msgid "Cannot get guest state"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
720719 msgid "Waiting for guest domain to start"
721720 msgstr ""
722721
723 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
724723 #, c-format
725724 msgid "Unable to connect to libvirt with URI: %s."
726725 msgstr ""
727726
728 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
729728 msgid "[none]"
730729 msgstr ""
731730
732 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
733732 msgid "Authentication failed."
734733 msgstr ""
735734
736 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
737736 msgid "Failed to connect: "
738737 msgstr ""
739738
740 #.
741 #. * Local variables:
742 #. * c-indent-level: 4
743 #. * c-basic-offset: 4
744 #. * indent-tabs-mode: nil
745 #. * End:
746 #.
747 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
748740 msgid "_File"
749741 msgstr ""
750742
751 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
752744 msgid "_Screenshot"
753745 msgstr ""
754746
755 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
756748 msgid "_USB device selection"
757749 msgstr ""
758750
759 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
760752 msgid "Smartcard insertion"
761753 msgstr ""
762754
763 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
764756 msgid "Smartcard removal"
765757 msgstr ""
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
768760 msgid "_Change CD"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
772764 msgid "_Preferences"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
776768 msgid "_Quit"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
780788 msgid "_View"
781789 msgstr ""
782790
783 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
784792 msgid "_Full screen"
785793 msgstr ""
786794
787 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
788796 msgid "_Zoom"
789797 msgstr ""
790798
791 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
792800 msgid "Zoom _In"
793801 msgstr ""
794802
795 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
796804 msgid "Zoom _Out"
797805 msgstr ""
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
800808 msgid "_Normal Size"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
804812 msgid "_Displays"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
808816 msgid "Release cursor"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
812820 msgid "_Send key"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
816824 msgid "_Help"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
820828 msgid "_Guest Details"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
824832 msgid "_About"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
828836 msgid "Guest Details"
829837 msgstr ""
830838
831 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
832840 msgid "Name:"
833841 msgstr ""
834842
835 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
836844 msgid "GUID:"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
840848 msgid "Choose a virtual machine"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
844852 msgid "Available virtual machines"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
848856 msgid "Preferences"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
852860 msgid "Folder sharing"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
856864 msgid "Share folder"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
860868 msgid "Read-only"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
864876 msgid "Spice"
865877 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Serbian (LATIN)\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1818 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
19 "X-Generator: Zanata 3.8.4\n"
20
21 #: ../data/remote-viewer.appdata.xml.in.h:1
22 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
19 "X-Generator: Zanata 4.6.2\n"
20
21 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
22 #: src/remote-viewer-main.c:39
2323 msgid "Remote Viewer"
2424 msgstr ""
2525
26 #: ../data/remote-viewer.appdata.xml.in.h:2
26 #: data/remote-viewer.appdata.xml.in:7
2727 msgid "Remotely access virtual machines"
2828 msgstr ""
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:3
30 #: data/remote-viewer.appdata.xml.in:9
3131 msgid ""
3232 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3333 "time it supports guest OS using the VNC or SPICE protocols. Further "
3636 "using SSL/TLS encryption."
3737 msgstr ""
3838
39 #: ../data/remote-viewer.desktop.in.h:2
39 #: data/remote-viewer.desktop.in:4
4040 msgid "Access remote desktops"
4141 msgstr ""
4242
43 #: ../data/virt-viewer-mime.xml.in.h:1
44 msgid "Virt-Viewer connection file"
45 msgstr ""
46
47 #: ../src/remote-viewer-iso-list-dialog.c:160
43 #: src/remote-viewer-iso-list-dialog.c:156
4844 msgid "Failed to fetch CD names"
4945 msgstr ""
5046
51 #: ../src/remote-viewer-iso-list-dialog.c:212
47 #: src/remote-viewer-iso-list-dialog.c:205
5248 msgid "<b>Loading...</b>"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:285
51 #: src/remote-viewer-iso-list-dialog.c:276
5652 msgid "Refresh"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:286
55 #: src/remote-viewer-iso-list-dialog.c:277
6056 msgid "Close"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:306
59 #: src/remote-viewer-iso-list-dialog.c:297
6460 msgid "Unspecified error"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:328
63 #: src/remote-viewer-iso-list-dialog.c:318
6864 msgid "Failed to change CD"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:380
67 #: src/remote-viewer-iso-list-dialog.c:370
7268 msgid "Change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer.c:118
71 #: src/remote-viewer.c:116
7672 msgid "Set window title"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:125
75 #: src/remote-viewer.c:123
8076 msgid "Remote viewer client"
8177 msgstr ""
8278
83 #: ../src/remote-viewer.c:150
84 #, c-format
79 #: src/remote-viewer.c:148
8580 msgid ""
8681 "\n"
8782 "Error: can't handle multiple URIs\n"
8883 "\n"
8984 msgstr ""
9085
91 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
86 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9287 #, c-format
9388 msgid "Run '%s --help' to see a full list of available command line options\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:435
91 #: src/remote-viewer.c:429
9792 msgid "failed to parse ovirt uri"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
95 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10196 msgid "Authentication was cancelled"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:480
99 #: src/remote-viewer.c:472
105100 #, c-format
106101 msgid "oVirt VM %s is not running"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:494
104 #: src/remote-viewer.c:486
110105 #, c-format
111106 msgid "oVirt VM %s has no display"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:520
109 #: src/remote-viewer.c:512
115110 #, c-format
116111 msgid "oVirt VM %s has no host information"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:531
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %d"
122 msgstr ""
123
124 #: ../src/remote-viewer.c:713
114 #: src/remote-viewer.c:523
115 #, c-format
116 msgid "oVirt VM %s has unknown display type: %u"
117 msgstr ""
118
119 #: src/remote-viewer.c:690
120 msgid "Couldn't open oVirt session: "
121 msgstr ""
122
123 #: src/remote-viewer.c:718
125124 msgid "Failed to initiate connection"
126125 msgstr ""
127126
128 #: ../src/remote-viewer.c:742
127 #: src/remote-viewer.c:747
129128 msgid "No connection was chosen"
130129 msgstr ""
131130
132 #: ../src/remote-viewer.c:759
131 #: src/remote-viewer.c:764
133132 msgid "Failed to read stdin: "
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:776
135 #: src/remote-viewer.c:781
137136 #, c-format
138137 msgid "Invalid file %s: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:786
140 #: src/remote-viewer.c:791
142141 msgid "Cannot determine the connection type from URI"
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:792
146 msgid "Couldn't open oVirt session: "
147 msgstr ""
148
149 #: ../src/remote-viewer.c:815
144 #: src/remote-viewer.c:810
150145 #, c-format
151146 msgid "Unable to connect: %s"
152147 msgstr ""
153148
154 #.
155 #. * Local variables:
156 #. * c-indent-level: 4
157 #. * c-basic-offset: 4
158 #. * indent-tabs-mode: nil
159 #. * End:
160 #.
161 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
149 #: src/resources/ui/remote-viewer-connect.ui:6
162150 msgid "Connection details"
163151 msgstr ""
164152
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
153 #: src/resources/ui/remote-viewer-connect.ui:24
166154 msgid "Connection _Address"
167155 msgstr ""
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
157 #: src/resources/ui/remote-viewer-connect.ui:54
170158 msgid "For example, spice://foo.example.org:5900"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
161 #: src/resources/ui/remote-viewer-connect.ui:78
174162 msgid "Recent connections"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
178 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
179 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
180 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
165 #: src/resources/ui/remote-viewer-connect.ui:120
166 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
167 #: src/resources/ui/virt-viewer-vm-connection.ui:24
168 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
181169 msgid "_Cancel"
182170 msgstr ""
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
172 #: src/resources/ui/remote-viewer-connect.ui:134
173 #: src/resources/ui/virt-viewer-vm-connection.ui:38
186174 msgid "C_onnect"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
177 #: src/resources/ui/remote-viewer-iso-list.ui:28
190178 msgid "Loading..."
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
181 #: src/resources/ui/remote-viewer-iso-list.ui:78
194182 msgid "Select ISO"
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
185 #: src/resources/ui/remote-viewer-iso-list.ui:116
198186 msgid "Selected"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
189 #: src/resources/ui/remote-viewer-iso-list.ui:129
190 #: src/resources/ui/virt-viewer-vm-connection.ui:72
203191 msgid "Name"
204192 msgstr ""
205193
206 #: ../src/resources/ui/virt-viewer-about.ui.h:1
194 #: src/resources/ui/virt-viewer-about.ui:7
207195 msgid "About Virt-Viewer"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:2
198 #: src/resources/ui/virt-viewer-about.ui:16
211199 msgid ""
212200 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
213201 "Copyright (C) 2007-2014 Red Hat, Inc."
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:4
204 #: src/resources/ui/virt-viewer-about.ui:18
217205 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:5
221 msgid "virt-manager.org"
222 msgstr ""
223
224 #: ../src/resources/ui/virt-viewer-about.ui.h:6
208 #: src/resources/ui/virt-viewer-about.ui:20
209 msgid "gitlab.com/virt-viewer/virt-viewer"
210 msgstr ""
211
212 #: src/resources/ui/virt-viewer-about.ui:21
225213 msgid ""
226214 "This program is free software; you can redistribute it and/or modify\n"
227215 "it under the terms of the GNU General Public License as published by\n"
238226 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
239227 msgstr ""
240228
241 #: ../src/resources/ui/virt-viewer-about.ui.h:20
229 #: src/resources/ui/virt-viewer-about.ui:38
242230 msgid "The Fedora Translation Team"
243231 msgstr ""
244232
245 #: ../src/virt-viewer-app.c:459
233 #: src/virt-viewer-app.c:594
246234 msgid "Do you want to close the session?"
247235 msgstr ""
248236
249 #: ../src/virt-viewer-app.c:461
237 #: src/virt-viewer-app.c:596
250238 msgid "Do not ask me again"
251239 msgstr ""
252240
253 #: ../src/virt-viewer-app.c:655
241 #: src/virt-viewer-app.c:767
254242 #, c-format
255243 msgid "Address is too long for unix socket_path: %s"
256244 msgstr ""
257245
258 #: ../src/virt-viewer-app.c:665
246 #: src/virt-viewer-app.c:777
259247 #, c-format
260248 msgid "Creating unix socket failed: %s"
261249 msgstr ""
262250
263 #: ../src/virt-viewer-app.c:671
251 #: src/virt-viewer-app.c:783
264252 #, c-format
265253 msgid "Connecting to unix socket failed: %s"
266254 msgstr ""
267255
268 #: ../src/virt-viewer-app.c:955
256 #: src/virt-viewer-app.c:1077
269257 #, c-format
270258 msgid "Waiting for display %d..."
271259 msgstr ""
272260
273 #: ../src/virt-viewer-app.c:1062
261 #: src/virt-viewer-app.c:1193
274262 #, c-format
275263 msgid "Unsupported graphic type '%s'"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:1146
266 #: src/virt-viewer-app.c:1277
279267 msgid "Connect to ssh failed."
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:1161
270 #: src/virt-viewer-app.c:1292
283271 #, c-format
284272 msgid "Can't connect to channel: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:1163
275 #: src/virt-viewer-app.c:1294
288276 msgid "only SSH or unix socket connection supported."
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:1176
279 #: src/virt-viewer-app.c:1311
292280 msgid "Connect to channel unsupported."
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1238
283 #: src/virt-viewer-app.c:1376
296284 msgid "Display can only be attached through libvirt with --attach"
297285 msgstr ""
298286
299 #: ../src/virt-viewer-app.c:1263
287 #: src/virt-viewer-app.c:1401
300288 msgid "Connecting to graphic server"
301289 msgstr ""
302290
303 #: ../src/virt-viewer-app.c:1362
291 #: src/virt-viewer-app.c:1500
304292 msgid "Guest domain has shutdown"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1423
295 #: src/virt-viewer-app.c:1561
308296 msgid "Connected to graphic server"
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1452
299 #: src/virt-viewer-app.c:1590
312300 #, c-format
313301 msgid "Unable to connect to the graphic server %s"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1478
304 #: src/virt-viewer-app.c:1616
317305 #, c-format
318306 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
319307 msgstr ""
320308
321 #: ../src/virt-viewer-app.c:1492
309 #: src/virt-viewer-app.c:1630
322310 #, c-format
323311 msgid "Unable to authenticate with remote desktop server: %s"
324312 msgstr ""
325313
326 #: ../src/virt-viewer-app.c:1500
314 #: src/virt-viewer-app.c:1638
327315 #, c-format
328316 msgid "USB redirection error: %s"
329317 msgstr ""
330318
331 #: ../src/virt-viewer-app.c:1834
319 #: src/virt-viewer-app.c:2026
332320 #, c-format
333321 msgid "Zoom level must be within %d-%d\n"
334322 msgstr ""
335323
336 #: ../src/virt-viewer-app.c:1887
324 #: src/virt-viewer-app.c:2081
337325 #, c-format
338326 msgid "%s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1897
329 #: src/virt-viewer-app.c:2091
342330 #, c-format
343331 msgid "%s version %s"
344332 msgstr ""
345333
346 #: ../src/virt-viewer-app.c:2321
334 #: src/virt-viewer-app.c:2545
347335 #, c-format
348336 msgid "Display _%d"
349337 msgstr ""
350338
351 #: ../src/virt-viewer-app.c:2577
339 #: src/virt-viewer-app.c:2829
352340 #, c-format
353341 msgid "Invalid kiosk-quit argument: %s"
354342 msgstr ""
355343
356 #: ../src/virt-viewer-app.c:2588
344 #: src/virt-viewer-app.c:2840
357345 msgid "Display version information"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:2590
348 #: src/virt-viewer-app.c:2842
361349 msgid "Zoom level of window, in percentage"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:2592
352 #: src/virt-viewer-app.c:2844
365353 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2594
356 #: src/virt-viewer-app.c:2846
369357 msgid "Customise hotkeys"
370358 msgstr ""
371359
372 #: ../src/virt-viewer-app.c:2596
360 #: src/virt-viewer-app.c:2848
373361 msgid "Enable kiosk mode"
374362 msgstr ""
375363
376 #: ../src/virt-viewer-app.c:2598
364 #: src/virt-viewer-app.c:2850
377365 msgid "Quit on given condition in kiosk mode"
378366 msgstr ""
379367
380 #: ../src/virt-viewer-app.c:2598
368 #: src/virt-viewer-app.c:2850
381369 msgid "<never|on-disconnect>"
382370 msgstr ""
383371
384 #: ../src/virt-viewer-app.c:2600
372 #: src/virt-viewer-app.c:2852
385373 msgid "Display verbose information"
386374 msgstr ""
387375
388 #: ../src/virt-viewer-app.c:2602
376 #: src/virt-viewer-app.c:2854
389377 msgid "Display debugging information"
390378 msgstr ""
391379
392 #: ../src/virt-viewer-auth.c:89
380 #: src/virt-viewer-auth.c:89
393381 #, c-format
394382 msgid ""
395383 "Authentication is required for the %s connection to:\n"
398386 "\n"
399387 msgstr ""
400388
401 #: ../src/virt-viewer-auth.c:93
389 #: src/virt-viewer-auth.c:93
402390 #, c-format
403391 msgid "Authentication is required for the %s connection:\n"
404392 msgstr ""
405393
406 #.
407 #. * Local variables:
408 #. * c-indent-level: 4
409 #. * c-basic-offset: 4
410 #. * indent-tabs-mode: nil
411 #. * End:
412 #.
413 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
394 #: src/resources/ui/virt-viewer-auth.ui:7
414395 msgid "Authentication required"
415396 msgstr ""
416397
417 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
398 #: src/resources/ui/virt-viewer-auth.ui:42
418399 msgid "_OK"
419400 msgstr ""
420401
421 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
422 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
423 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
402 #: src/resources/ui/virt-viewer-auth.ui:71
403 #: src/resources/ui/virt-viewer-guest-details.ui:82
404 #: src/resources/ui/virt-viewer-guest-details.ui:96
405 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
424406 msgid "label"
425407 msgstr ""
426408
427 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
409 #: src/resources/ui/virt-viewer-auth.ui:93
428410 msgid "Password:"
429411 msgstr ""
430412
431 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
413 #: src/resources/ui/virt-viewer-auth.ui:105
432414 msgid "Username:"
433415 msgstr ""
434416
435 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
417 #: src/resources/ui/virt-viewer-auth.ui:137
436418 msgid "Show password"
437419 msgstr ""
438420
439 #: ../src/virt-viewer-display-vnc.c:134
421 #: src/virt-viewer-display-vnc.c:130
440422 msgid "VNC does not provide GUID"
441423 msgstr ""
442424
443 #: ../src/virt-viewer-file-transfer-dialog.c:128
425 #: src/virt-viewer-display-vte.c:181
426 msgid "Console support is compiled out!"
427 msgstr ""
428
429 #: src/virt-viewer-file-transfer-dialog.c:124
444430 msgid "File Transfers"
445431 msgstr ""
446432
447 #: ../src/virt-viewer-file-transfer-dialog.c:154
433 #: src/virt-viewer-file-transfer-dialog.c:150
448434 msgid "Transferring 1 file..."
449435 msgstr ""
450436
451 #: ../src/virt-viewer-file-transfer-dialog.c:156
452 #, c-format
453 msgid "Transferring %d file of %d..."
454 msgid_plural "Transferring %d files of %d..."
437 #: src/virt-viewer-file-transfer-dialog.c:152
438 #, c-format
439 msgid "Transferring %u file of %u..."
440 msgid_plural "Transferring %u files of %u..."
455441 msgstr[0] ""
456442 msgstr[1] ""
457443 msgstr[2] ""
458444
459 #: ../src/virt-viewer-file-transfer-dialog.c:228
460 #, c-format
461 msgid "An error caused the following file transfers to fail:%s"
462 msgstr ""
463
464 #: ../src/virt-viewer-main.c:38
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
465450 msgid "Virt Viewer"
466451 msgstr ""
467452
468 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
469454 msgid "Invalid password"
470455 msgstr ""
471456
472 #. Create the widgets
473 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
474458 msgid "Select USB devices for redirection"
475459 msgstr ""
476460
477 #: ../src/virt-viewer-session-spice.c:804
478 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
479463 msgid "_Close"
480464 msgstr ""
481465
482 #: ../src/virt-viewer-session-vnc.c:162
483 #, c-format
484 msgid "Unsupported authentication type %d"
485 msgstr ""
486
487 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
488484 msgid "No running virtual machine found"
489485 msgstr ""
490486
491 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
492488 msgid "No virtual machine was chosen"
493489 msgstr ""
494490
495 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
496492 msgid "Ctrl+Alt+_Del"
497493 msgstr ""
498494
499 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
500496 msgid "Ctrl+Alt+_Backspace"
501497 msgstr ""
502498
503 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
504500 msgid "Ctrl+Alt+F_1"
505501 msgstr ""
506502
507 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
508504 msgid "Ctrl+Alt+F_2"
509505 msgstr ""
510506
511 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
512508 msgid "Ctrl+Alt+F_3"
513509 msgstr ""
514510
515 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
516512 msgid "Ctrl+Alt+F_4"
517513 msgstr ""
518514
519 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
520516 msgid "Ctrl+Alt+F_5"
521517 msgstr ""
522518
523 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
524520 msgid "Ctrl+Alt+F_6"
525521 msgstr ""
526522
527 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
528524 msgid "Ctrl+Alt+F_7"
529525 msgstr ""
530526
531 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
532528 msgid "Ctrl+Alt+F_8"
533529 msgstr ""
534530
535 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
536532 msgid "Ctrl+Alt+F_9"
537533 msgstr ""
538534
539 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
540536 msgid "Ctrl+Alt+F1_0"
541537 msgstr ""
542538
543 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
544540 msgid "Ctrl+Alt+F11"
545541 msgstr ""
546542
547 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
548544 msgid "Ctrl+Alt+F12"
549545 msgstr ""
550546
551 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
552552 #, c-format
553553 msgid "Unable to determine image format for file '%s'"
554554 msgstr ""
555555
556 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
557561 msgid "_Save"
558562 msgstr ""
559563
560 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
561565 msgid "Screenshot.png"
562566 msgstr ""
563567
564 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
565569 msgid "Unknown"
566570 msgstr ""
567571
568 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
569573 msgid "Unable to connnect to oVirt"
570574 msgstr ""
571575
572 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
573577 msgid "Disconnect"
574578 msgstr ""
575579
576 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
577581 msgid "USB device selection"
578582 msgstr ""
579583
580 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
581585 msgid "Send key combination"
582586 msgstr ""
583587
584 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
585589 msgid "Leave fullscreen"
586590 msgstr ""
587591
588 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
589593 msgid "Ctrl+Alt"
590594 msgstr ""
591595
592 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
593597 #, c-format
594598 msgid "(Press %s to release pointer)"
595599 msgstr ""
596600
597 #. translators:
598 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
599 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
600 #.
601 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
602602 #, c-format
603603 msgid "%s%s%s - %s"
604604 msgstr ""
605605
606 #. translators: <space>
607 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
608607 msgid " "
609608 msgstr ""
610609
611 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
612611 #, c-format
613612 msgid ""
614613 "At least %s version %s is required to setup this connection, see %s for "
615614 "details"
616615 msgstr ""
617616
618 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
619618 #, c-format
620619 msgid "At least %s version %s is required to setup this connection"
621620 msgstr ""
622621
623 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
624623 msgid "Direct connection with no automatic tunnels"
625624 msgstr ""
626625
627 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
628627 msgid "Attach to the local display using libvirt"
629628 msgstr ""
630629
631 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
632631 msgid "Connect to hypervisor"
633632 msgstr ""
634633
635 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
636635 msgid "Wait for domain to start"
637636 msgstr ""
638637
639 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
640639 msgid "Reconnect to domain upon restart"
641640 msgstr ""
642641
643 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
644643 msgid "Select the virtual machine only by its name"
645644 msgstr ""
646645
647 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
648647 msgid "Select the virtual machine only by its id"
649648 msgstr ""
650649
651 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
652651 msgid "Select the virtual machine only by its uuid"
653652 msgstr ""
654653
655 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
656655 msgid "Virtual machine graphical console"
657656 msgstr ""
658657
659 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
660659 #, c-format
661660 msgid ""
662661 "\n"
664663 "\n"
665664 msgstr ""
666665
667 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
668667 #, c-format
669668 msgid ""
670669 "\n"
672671 "\n"
673672 msgstr ""
674673
675 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
676675 msgid "Waiting for guest domain to re-start"
677676 msgstr ""
678677
679 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
680679 #, c-format
681680 msgid "Cannot determine the graphic type for the guest %s"
682681 msgstr ""
683682
684 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
685684 #, c-format
686685 msgid "Cannot determine the host for the guest %s"
687686 msgstr ""
688687
689 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
690689 #, c-format
691690 msgid "Guest '%s' is not reachable"
692691 msgstr ""
693692
694 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
695694 #, c-format
696695 msgid "Virtual machine %s is not running"
697696 msgstr ""
698697
699 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
700699 msgid "Waiting for libvirt to start"
701700 msgstr ""
702701
703 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
704703 msgid "Finding guest domain"
705704 msgstr ""
706705
707 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
708707 msgid "Waiting for guest domain to be created"
709708 msgstr ""
710709
711 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
712711 msgid "Checking guest domain status"
713712 msgstr ""
714713
715 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
716715 msgid "Cannot get guest state"
717716 msgstr ""
718717
719 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
720719 msgid "Waiting for guest domain to start"
721720 msgstr ""
722721
723 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
724723 #, c-format
725724 msgid "Unable to connect to libvirt with URI: %s."
726725 msgstr ""
727726
728 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
729728 msgid "[none]"
730729 msgstr ""
731730
732 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
733732 msgid "Authentication failed."
734733 msgstr ""
735734
736 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
737736 msgid "Failed to connect: "
738737 msgstr ""
739738
740 #.
741 #. * Local variables:
742 #. * c-indent-level: 4
743 #. * c-basic-offset: 4
744 #. * indent-tabs-mode: nil
745 #. * End:
746 #.
747 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
748740 msgid "_File"
749741 msgstr ""
750742
751 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
752744 msgid "_Screenshot"
753745 msgstr ""
754746
755 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
756748 msgid "_USB device selection"
757749 msgstr ""
758750
759 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
760752 msgid "Smartcard insertion"
761753 msgstr ""
762754
763 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
764756 msgid "Smartcard removal"
765757 msgstr ""
766758
767 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
768760 msgid "_Change CD"
769761 msgstr ""
770762
771 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
772764 msgid "_Preferences"
773765 msgstr ""
774766
775 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
776768 msgid "_Quit"
777769 msgstr ""
778770
779 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
780788 msgid "_View"
781789 msgstr ""
782790
783 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
784792 msgid "_Full screen"
785793 msgstr ""
786794
787 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
788796 msgid "_Zoom"
789797 msgstr ""
790798
791 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
792800 msgid "Zoom _In"
793801 msgstr ""
794802
795 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
796804 msgid "Zoom _Out"
797805 msgstr ""
798806
799 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
800808 msgid "_Normal Size"
801809 msgstr ""
802810
803 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
804812 msgid "_Displays"
805813 msgstr ""
806814
807 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
808816 msgid "Release cursor"
809817 msgstr ""
810818
811 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
812820 msgid "_Send key"
813821 msgstr ""
814822
815 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
816824 msgid "_Help"
817825 msgstr ""
818826
819 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
820828 msgid "_Guest Details"
821829 msgstr ""
822830
823 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
824832 msgid "_About"
825833 msgstr ""
826834
827 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
828836 msgid "Guest Details"
829837 msgstr ""
830838
831 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
832840 msgid "Name:"
833841 msgstr ""
834842
835 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
836844 msgid "GUID:"
837845 msgstr ""
838846
839 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
840848 msgid "Choose a virtual machine"
841849 msgstr ""
842850
843 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
844852 msgid "Available virtual machines"
845853 msgstr ""
846854
847 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
848856 msgid "Preferences"
849857 msgstr ""
850858
851 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
852860 msgid "Folder sharing"
853861 msgstr ""
854862
855 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
856864 msgid "Share folder"
857865 msgstr ""
858866
859 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
860868 msgid "Read-only"
861869 msgstr ""
862870
863 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
864876 msgid "Spice"
865877 msgstr ""
Binary diff not shown
+327
-300
po/sv.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
77 # Klap Hest <jojje3000@hotmail.com>, 2013
88 # Göran Uddeborg <goeran@uddeborg.se>, 2015. #zanata
99 # Göran Uddeborg <goeran@uddeborg.se>, 2016. #zanata
10 # Göran Uddeborg <goeran@uddeborg.se>, 2018. #zanata
11 # Göran Uddeborg <goeran@uddeborg.se>, 2019. #zanata
1012 msgid ""
1113 msgstr ""
12 "Project-Id-Version: PACKAGE VERSION\n"
13 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
15 "PO-Revision-Date: 2016-12-28 07:43-0500\n"
14 "Project-Id-Version: virt-viewer 9.0\n"
15 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
16 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
17 "PO-Revision-Date: 2019-09-29 03:45+0000\n"
1618 "Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
1719 "Language-Team: Swedish (http://www.transifex.com/projects/p/virt-viewer/"
1820 "language/sv/)\n"
2123 "Content-Type: text/plain; charset=UTF-8\n"
2224 "Content-Transfer-Encoding: 8bit\n"
2325 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24 "X-Generator: Zanata 3.9.6\n"
25
26 #: ../data/remote-viewer.appdata.xml.in.h:1
27 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
26 "X-Generator: Zanata 4.6.2\n"
27
28 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
29 #: src/remote-viewer-main.c:39
2830 msgid "Remote Viewer"
2931 msgstr "Fjärrvisare"
3032
31 #: ../data/remote-viewer.appdata.xml.in.h:2
33 #: data/remote-viewer.appdata.xml.in:7
3234 msgid "Remotely access virtual machines"
3335 msgstr "Fjärråtkomst av virtuella maskiner"
3436
35 #: ../data/remote-viewer.appdata.xml.in.h:3
37 #: data/remote-viewer.appdata.xml.in:9
3638 msgid ""
3739 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3840 "time it supports guest OS using the VNC or SPICE protocols. Further "
4648 "användares behov avgör. Visaren kan ansluta direkt både till lokala och "
4749 "fjärrgäst-OS, med SSL/TLS-kryptering om så önskas."
4850
49 #: ../data/remote-viewer.desktop.in.h:2
51 #: data/remote-viewer.desktop.in:4
5052 msgid "Access remote desktops"
5153 msgstr "Gå till fjärrskrivbord"
5254
53 #: ../data/virt-viewer-mime.xml.in.h:1
54 msgid "Virt-Viewer connection file"
55 msgstr "Virt-viewers anslutningsfil"
56
57 #: ../src/remote-viewer-iso-list-dialog.c:160
55 #: src/remote-viewer-iso-list-dialog.c:156
5856 msgid "Failed to fetch CD names"
59 msgstr ""
60
61 #: ../src/remote-viewer-iso-list-dialog.c:212
57 msgstr "Misslyckades att hämta CD-namn"
58
59 #: src/remote-viewer-iso-list-dialog.c:205
6260 msgid "<b>Loading...</b>"
63 msgstr ""
64
65 #: ../src/remote-viewer-iso-list-dialog.c:285
61 msgstr "<b>Laddar…</b>"
62
63 #: src/remote-viewer-iso-list-dialog.c:276
6664 msgid "Refresh"
67 msgstr ""
68
69 #: ../src/remote-viewer-iso-list-dialog.c:286
65 msgstr "Uppdatera"
66
67 #: src/remote-viewer-iso-list-dialog.c:277
7068 msgid "Close"
71 msgstr ""
72
73 #: ../src/remote-viewer-iso-list-dialog.c:306
69 msgstr "Stäng"
70
71 #: src/remote-viewer-iso-list-dialog.c:297
7472 msgid "Unspecified error"
75 msgstr ""
76
77 #: ../src/remote-viewer-iso-list-dialog.c:328
73 msgstr "Ospecificerat fel"
74
75 #: src/remote-viewer-iso-list-dialog.c:318
7876 msgid "Failed to change CD"
79 msgstr ""
80
81 #: ../src/remote-viewer-iso-list-dialog.c:380
77 msgstr "Misslyckades med att byta CD"
78
79 #: src/remote-viewer-iso-list-dialog.c:370
8280 msgid "Change CD"
83 msgstr ""
84
85 #: ../src/remote-viewer.c:118
81 msgstr "Byt CD"
82
83 #: src/remote-viewer.c:116
8684 msgid "Set window title"
8785 msgstr "Ange fönstertitel"
8886
89 #: ../src/remote-viewer.c:125
87 #: src/remote-viewer.c:123
9088 msgid "Remote viewer client"
9189 msgstr "Fjärrvisarklient"
9290
93 #: ../src/remote-viewer.c:150
94 #, c-format
91 #: src/remote-viewer.c:148
9592 msgid ""
9693 "\n"
9794 "Error: can't handle multiple URIs\n"
10198 "Fel: kan inte hantera flera URI:er\n"
10299 "\n"
103100
104 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
101 #: src/remote-viewer.c:162 src/virt-viewer.c:200
105102 #, c-format
106103 msgid "Run '%s --help' to see a full list of available command line options\n"
107104 msgstr ""
108105 "Kör ”%s --help” för att se hela listan av tillgängliga kommandoradsflaggor\n"
109106
110 #: ../src/remote-viewer.c:435
107 #: src/remote-viewer.c:429
111108 msgid "failed to parse ovirt uri"
112109 msgstr "kunde inte analysera ovirt-uri"
113110
114 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
111 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
115112 msgid "Authentication was cancelled"
116113 msgstr "Autenticeringen avbröts"
117114
118 #: ../src/remote-viewer.c:480
115 #: src/remote-viewer.c:472
119116 #, c-format
120117 msgid "oVirt VM %s is not running"
121118 msgstr "oVirt-VM %s kör inte"
122119
123 #: ../src/remote-viewer.c:494
120 #: src/remote-viewer.c:486
124121 #, c-format
125122 msgid "oVirt VM %s has no display"
126123 msgstr "oVirt-VM %s har ingen display"
127124
128 #: ../src/remote-viewer.c:520
125 #: src/remote-viewer.c:512
129126 #, c-format
130127 msgid "oVirt VM %s has no host information"
131128 msgstr "oVirt-VM %s har ingen värdinformation"
132129
133 #: ../src/remote-viewer.c:531
134 #, c-format
135 msgid "oVirt VM %s has unknown display type: %d"
136 msgstr "oVirt-VM %s har en okänd display-typ: %d"
137
138 #: ../src/remote-viewer.c:713
130 #: src/remote-viewer.c:523
131 #, c-format
132 msgid "oVirt VM %s has unknown display type: %u"
133 msgstr "oVirt-VM %s har en okänd display-typ: %u"
134
135 #: src/remote-viewer.c:690
136 msgid "Couldn't open oVirt session: "
137 msgstr "Kunde inte öppna oVirt-sessionen:"
138
139 #: src/remote-viewer.c:718
139140 msgid "Failed to initiate connection"
140141 msgstr "Misslyckades att initiera anslutningen"
141142
142 #: ../src/remote-viewer.c:742
143 #: src/remote-viewer.c:747
143144 msgid "No connection was chosen"
144145 msgstr "Ingen anslutning valdes"
145146
146 #: ../src/remote-viewer.c:759
147 #: src/remote-viewer.c:764
147148 msgid "Failed to read stdin: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:776
149 msgstr "Misslyckades att läsa standard in:"
150
151 #: src/remote-viewer.c:781
151152 #, c-format
152153 msgid "Invalid file %s: "
153154 msgstr "Felaktig fil %s:"
154155
155 #: ../src/remote-viewer.c:786
156 #: src/remote-viewer.c:791
156157 msgid "Cannot determine the connection type from URI"
157158 msgstr "Kan inte avgöra anslutningstypen från URI:n"
158159
159 #: ../src/remote-viewer.c:792
160 msgid "Couldn't open oVirt session: "
161 msgstr "Kunde inte öppna oVirt-sessionen:"
162
163 #: ../src/remote-viewer.c:815
160 #: src/remote-viewer.c:810
164161 #, c-format
165162 msgid "Unable to connect: %s"
166 msgstr ""
167
168 #.
169 #. * Local variables:
170 #. * c-indent-level: 4
171 #. * c-basic-offset: 4
172 #. * indent-tabs-mode: nil
173 #. * End:
174 #.
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
163 msgstr "Kan inte ansluta: %s"
164
165 #: src/resources/ui/remote-viewer-connect.ui:6
176166 msgid "Connection details"
177167 msgstr "Anslutningsdetaljer"
178168
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
169 #: src/resources/ui/remote-viewer-connect.ui:24
180170 msgid "Connection _Address"
181171 msgstr "Anslutnings_adress"
182172
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:54
184174 msgid "For example, spice://foo.example.org:5900"
185175 msgstr "Till exempel, spice://apa.exempel.se:5900"
186176
187 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
177 #: src/resources/ui/remote-viewer-connect.ui:78
188178 msgid "Recent connections"
189179 msgstr "Senaste anslutningarna"
190180
191 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
192 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
193 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
194 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
181 #: src/resources/ui/remote-viewer-connect.ui:120
182 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
183 #: src/resources/ui/virt-viewer-vm-connection.ui:24
184 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
195185 msgid "_Cancel"
196186 msgstr "_Avbryt"
197187
198 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
199 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
188 #: src/resources/ui/remote-viewer-connect.ui:134
189 #: src/resources/ui/virt-viewer-vm-connection.ui:38
200190 msgid "C_onnect"
201191 msgstr "A_nslut"
202192
203 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
193 #: src/resources/ui/remote-viewer-iso-list.ui:28
204194 msgid "Loading..."
205 msgstr ""
206
207 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
195 msgstr "Laddar…"
196
197 #: src/resources/ui/remote-viewer-iso-list.ui:78
208198 msgid "Select ISO"
209 msgstr ""
210
211 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
199 msgstr "Välj ISO"
200
201 #: src/resources/ui/remote-viewer-iso-list.ui:116
212202 msgid "Selected"
213 msgstr ""
214
215 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
216 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
203 msgstr "Vald"
204
205 #: src/resources/ui/remote-viewer-iso-list.ui:129
206 #: src/resources/ui/virt-viewer-vm-connection.ui:72
217207 msgid "Name"
218208 msgstr "Namn"
219209
220 #: ../src/resources/ui/virt-viewer-about.ui.h:1
210 #: src/resources/ui/virt-viewer-about.ui:7
221211 msgid "About Virt-Viewer"
222212 msgstr "Om Virt-Viewer"
223213
224 #: ../src/resources/ui/virt-viewer-about.ui.h:2
214 #: src/resources/ui/virt-viewer-about.ui:16
225215 msgid ""
226216 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
227217 "Copyright (C) 2007-2014 Red Hat, Inc."
229219 "Copyright © 2007-2012 Daniel P. Berrange\n"
230220 "Copyright © 2007-2014 Red Hat, Inc."
231221
232 #: ../src/resources/ui/virt-viewer-about.ui.h:4
222 #: src/resources/ui/virt-viewer-about.ui:18
233223 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
234224 msgstr "En fjärrskrivbordsklient byggt med GTK-VNC, SPICE-GTK och libvirt"
235225
236 #: ../src/resources/ui/virt-viewer-about.ui.h:5
237 msgid "virt-manager.org"
238 msgstr "virt-manager.org"
239
240 #: ../src/resources/ui/virt-viewer-about.ui.h:6
226 #: src/resources/ui/virt-viewer-about.ui:20
227 msgid "gitlab.com/virt-viewer/virt-viewer"
228 msgstr ""
229
230 #: src/resources/ui/virt-viewer-about.ui:21
241231 msgid ""
242232 "This program is free software; you can redistribute it and/or modify\n"
243233 "it under the terms of the GNU General Public License as published by\n"
267257 "program. Om inte, skriv till Free Software Foundation, Inc., 59 Temple "
268258 "Place, Suite 330, Boston, MA 02111-1307 USA\n"
269259
270 #: ../src/resources/ui/virt-viewer-about.ui.h:20
260 #: src/resources/ui/virt-viewer-about.ui:38
271261 msgid "The Fedora Translation Team"
272262 msgstr "Fedoras översättningsgrupp"
273263
274 #: ../src/virt-viewer-app.c:459
264 #: src/virt-viewer-app.c:594
275265 msgid "Do you want to close the session?"
276266 msgstr "Vill du stänga sessionen?"
277267
278 #: ../src/virt-viewer-app.c:461
268 #: src/virt-viewer-app.c:596
279269 msgid "Do not ask me again"
280270 msgstr "Fråga mig inte igen"
281271
282 #: ../src/virt-viewer-app.c:655
272 #: src/virt-viewer-app.c:767
283273 #, c-format
284274 msgid "Address is too long for unix socket_path: %s"
285275 msgstr "Adressen är för lång för en unix-uttagssökväg: %s"
286276
287 #: ../src/virt-viewer-app.c:665
277 #: src/virt-viewer-app.c:777
288278 #, c-format
289279 msgid "Creating unix socket failed: %s"
290280 msgstr "Att skapa et unix-uttag misslyckades: %s"
291281
292 #: ../src/virt-viewer-app.c:671
282 #: src/virt-viewer-app.c:783
293283 #, c-format
294284 msgid "Connecting to unix socket failed: %s"
295285 msgstr "Att ansluta till ett unix-uttag misslyckades: %s"
296286
297 #: ../src/virt-viewer-app.c:955
287 #: src/virt-viewer-app.c:1077
298288 #, c-format
299289 msgid "Waiting for display %d..."
300290 msgstr "Väntar på display %d …"
301291
302 #: ../src/virt-viewer-app.c:1062
292 #: src/virt-viewer-app.c:1193
303293 #, c-format
304294 msgid "Unsupported graphic type '%s'"
305295 msgstr "Ej stödd grafiktyp: ”%s”"
306296
307 #: ../src/virt-viewer-app.c:1146
297 #: src/virt-viewer-app.c:1277
308298 msgid "Connect to ssh failed."
309299 msgstr "Anslutning till ssh misslyckades."
310300
311 #: ../src/virt-viewer-app.c:1161
301 #: src/virt-viewer-app.c:1292
312302 #, c-format
313303 msgid "Can't connect to channel: %s"
314 msgstr ""
315
316 #: ../src/virt-viewer-app.c:1163
304 msgstr "Kan inte ansluta till kanalen: %s"
305
306 #: src/virt-viewer-app.c:1294
317307 msgid "only SSH or unix socket connection supported."
318 msgstr ""
319
320 #: ../src/virt-viewer-app.c:1176
308 msgstr "endast SSH- eller unix-uttagsförbindelser stödjs."
309
310 #: src/virt-viewer-app.c:1311
321311 msgid "Connect to channel unsupported."
322312 msgstr "Anslutning till kanalen stödjs inte."
323313
324 #: ../src/virt-viewer-app.c:1238
314 #: src/virt-viewer-app.c:1376
325315 msgid "Display can only be attached through libvirt with --attach"
326316 msgstr "Kan bara ansluta till displayen via libvirt med --attach"
327317
328 #: ../src/virt-viewer-app.c:1263
318 #: src/virt-viewer-app.c:1401
329319 msgid "Connecting to graphic server"
330320 msgstr "Anslutning till grafikserver"
331321
332 #: ../src/virt-viewer-app.c:1362
322 #: src/virt-viewer-app.c:1500
333323 msgid "Guest domain has shutdown"
334324 msgstr "Gästdomänen är avstängd"
335325
336 #: ../src/virt-viewer-app.c:1423
326 #: src/virt-viewer-app.c:1561
337327 msgid "Connected to graphic server"
338328 msgstr "Ansluten till grafikserver"
339329
340 #: ../src/virt-viewer-app.c:1452
330 #: src/virt-viewer-app.c:1590
341331 #, c-format
342332 msgid "Unable to connect to the graphic server %s"
343333 msgstr "Kan inte ansluta till grafikservern %s"
344334
345 #: ../src/virt-viewer-app.c:1478
335 #: src/virt-viewer-app.c:1616
346336 #, c-format
347337 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
348338 msgstr "Kan inte autenticera med fjärskrivbordsservern på %s: %s\n"
349339
350 #: ../src/virt-viewer-app.c:1492
340 #: src/virt-viewer-app.c:1630
351341 #, c-format
352342 msgid "Unable to authenticate with remote desktop server: %s"
353343 msgstr "Kan inte autenticera med fjärskrivbordsserver: %s"
354344
355 #: ../src/virt-viewer-app.c:1500
345 #: src/virt-viewer-app.c:1638
356346 #, c-format
357347 msgid "USB redirection error: %s"
358348 msgstr "USB-omdirigeringsfel: %s"
359349
360 #: ../src/virt-viewer-app.c:1834
350 #: src/virt-viewer-app.c:2026
361351 #, c-format
362352 msgid "Zoom level must be within %d-%d\n"
363353 msgstr "Zoom-nivån måste vara inom %d-%d\n"
364354
365 #: ../src/virt-viewer-app.c:1887
355 #: src/virt-viewer-app.c:2081
366356 #, c-format
367357 msgid "%s\n"
368358 msgstr "%s\n"
369359
370 #: ../src/virt-viewer-app.c:1897
360 #: src/virt-viewer-app.c:2091
371361 #, c-format
372362 msgid "%s version %s"
373363 msgstr "%s version %s"
374364
375 #: ../src/virt-viewer-app.c:2321
365 #: src/virt-viewer-app.c:2545
376366 #, c-format
377367 msgid "Display _%d"
378368 msgstr "Display _%d"
379369
380 #: ../src/virt-viewer-app.c:2577
370 #: src/virt-viewer-app.c:2829
381371 #, c-format
382372 msgid "Invalid kiosk-quit argument: %s"
383373 msgstr "Ogiltigt helskärmsargument: %s"
384374
385 #: ../src/virt-viewer-app.c:2588
375 #: src/virt-viewer-app.c:2840
386376 msgid "Display version information"
387377 msgstr "Visa versionsinformation"
388378
389 #: ../src/virt-viewer-app.c:2590
379 #: src/virt-viewer-app.c:2842
390380 msgid "Zoom level of window, in percentage"
391381 msgstr "Zoom-nivå för fönstret, i procent"
392382
393 #: ../src/virt-viewer-app.c:2592
383 #: src/virt-viewer-app.c:2844
394384 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
395385 msgstr ""
396386 "Öppna i fullskärmsläge (ställ upplösningen på gästen till att passa klienten)"
397387
398 #: ../src/virt-viewer-app.c:2594
388 #: src/virt-viewer-app.c:2846
399389 msgid "Customise hotkeys"
400390 msgstr "Anpassa snabbtangenter"
401391
402 #: ../src/virt-viewer-app.c:2596
392 #: src/virt-viewer-app.c:2848
403393 msgid "Enable kiosk mode"
404394 msgstr "Aktivera kioskläge"
405395
406 #: ../src/virt-viewer-app.c:2598
396 #: src/virt-viewer-app.c:2850
407397 msgid "Quit on given condition in kiosk mode"
408398 msgstr "Avsluta på angivet villkor i kioskläge"
409399
410 #: ../src/virt-viewer-app.c:2598
400 #: src/virt-viewer-app.c:2850
411401 msgid "<never|on-disconnect>"
412402 msgstr "<aldrig | vid-frånkoppling>"
413403
414 #: ../src/virt-viewer-app.c:2600
404 #: src/virt-viewer-app.c:2852
415405 msgid "Display verbose information"
416406 msgstr "Visa utförlig information"
417407
418 #: ../src/virt-viewer-app.c:2602
408 #: src/virt-viewer-app.c:2854
419409 msgid "Display debugging information"
420410 msgstr "Visa felsökningsinformation"
421411
422 #: ../src/virt-viewer-auth.c:89
412 #: src/virt-viewer-auth.c:89
423413 #, c-format
424414 msgid ""
425415 "Authentication is required for the %s connection to:\n"
432422 "<b>%s</b>\n"
433423 "\n"
434424
435 #: ../src/virt-viewer-auth.c:93
425 #: src/virt-viewer-auth.c:93
436426 #, c-format
437427 msgid "Authentication is required for the %s connection:\n"
438428 msgstr "Autenticering krävs för %s-anslutningen:\n"
439429
440 #.
441 #. * Local variables:
442 #. * c-indent-level: 4
443 #. * c-basic-offset: 4
444 #. * indent-tabs-mode: nil
445 #. * End:
446 #.
447 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
430 #: src/resources/ui/virt-viewer-auth.ui:7
448431 msgid "Authentication required"
449432 msgstr "Autenticering krävs"
450433
451 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
434 #: src/resources/ui/virt-viewer-auth.ui:42
452435 msgid "_OK"
453436 msgstr "_OK"
454437
455 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
456 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
457 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
438 #: src/resources/ui/virt-viewer-auth.ui:71
439 #: src/resources/ui/virt-viewer-guest-details.ui:82
440 #: src/resources/ui/virt-viewer-guest-details.ui:96
441 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
458442 msgid "label"
459443 msgstr "etikett"
460444
461 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
445 #: src/resources/ui/virt-viewer-auth.ui:93
462446 msgid "Password:"
463447 msgstr "Lösenord:"
464448
465 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
449 #: src/resources/ui/virt-viewer-auth.ui:105
466450 msgid "Username:"
467451 msgstr "Användarnamn:"
468452
469 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
453 #: src/resources/ui/virt-viewer-auth.ui:137
470454 msgid "Show password"
471455 msgstr "Visa lösenord"
472456
473 #: ../src/virt-viewer-display-vnc.c:134
457 #: src/virt-viewer-display-vnc.c:130
474458 msgid "VNC does not provide GUID"
475459 msgstr "VNC tillhandahåller inte GUID"
476460
477 #: ../src/virt-viewer-file-transfer-dialog.c:128
461 #: src/virt-viewer-display-vte.c:181
462 msgid "Console support is compiled out!"
463 msgstr "Stöd för konsol är utkompilerat!"
464
465 #: src/virt-viewer-file-transfer-dialog.c:124
478466 msgid "File Transfers"
479467 msgstr "Filöverföringar"
480468
481 #: ../src/virt-viewer-file-transfer-dialog.c:154
469 #: src/virt-viewer-file-transfer-dialog.c:150
482470 msgid "Transferring 1 file..."
483 msgstr ""
484
485 #: ../src/virt-viewer-file-transfer-dialog.c:156
486 #, c-format
487 msgid "Transferring %d file of %d..."
488 msgid_plural "Transferring %d files of %d..."
489 msgstr[0] ""
490
491 #: ../src/virt-viewer-file-transfer-dialog.c:228
492 #, c-format
493 msgid "An error caused the following file transfers to fail:%s"
494 msgstr "Ett fel gjorde att följande filöverföringar misslyckades: %s"
495
496 #: ../src/virt-viewer-main.c:38
471 msgstr "Överför 1 fil …"
472
473 #: src/virt-viewer-file-transfer-dialog.c:152
474 #, c-format
475 msgid "Transferring %u file of %u..."
476 msgid_plural "Transferring %u files of %u..."
477 msgstr[0] "Överför %u fil av %u …"
478 msgstr[1] "Överför %u filer av %u …"
479
480 #: src/virt-viewer-file-transfer-dialog.c:225
481 msgid "An error caused the following file transfers to fail:"
482 msgstr ""
483
484 #: src/virt-viewer-main.c:38
497485 msgid "Virt Viewer"
498486 msgstr "Virt Viewer"
499487
500 #: ../src/virt-viewer-session-spice.c:704
488 #: src/virt-viewer-session-spice.c:731
501489 msgid "Invalid password"
502490 msgstr "Felaktigt lösenord"
503491
504 #. Create the widgets
505 #: ../src/virt-viewer-session-spice.c:802
492 #: src/virt-viewer-session-spice.c:829
506493 msgid "Select USB devices for redirection"
507494 msgstr "Välj USB-enheter att omdirigera"
508495
509 #: ../src/virt-viewer-session-spice.c:804
510 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
496 #: src/virt-viewer-session-spice.c:831
497 #: src/resources/ui/virt-viewer-guest-details.ui:23
511498 msgid "_Close"
512499 msgstr "_Stäng"
513500
514 #: ../src/virt-viewer-session-vnc.c:162
515 #, c-format
516 msgid "Unsupported authentication type %d"
517 msgstr "Autenticeringstyp %d som inte stödjs"
518
519 #: ../src/virt-viewer-vm-connection.c:64
501 #: src/virt-viewer-session-spice.c:1019
502 msgid "Serial"
503 msgstr "Seriell"
504
505 #: src/virt-viewer-session-spice.c:1021
506 msgid "QEMU human monitor"
507 msgstr "QEMU manuell övervakare"
508
509 #: src/virt-viewer-session-spice.c:1023
510 msgid "QEMU debug console"
511 msgstr "QEMU felsökningskonsol"
512
513 #: src/virt-viewer-session-vnc.c:158
514 #, c-format
515 msgid "Unsupported authentication type %u"
516 msgstr "Autenticeringstyp %u som inte stödjs"
517
518 #: src/virt-viewer-vm-connection.c:64
520519 msgid "No running virtual machine found"
521 msgstr ""
522
523 #: ../src/virt-viewer-vm-connection.c:93
520 msgstr "Ingen körande virtuell maskin hittad"
521
522 #: src/virt-viewer-vm-connection.c:93
524523 msgid "No virtual machine was chosen"
525524 msgstr "Ingen virtuell maskin valdes"
526525
527 #: ../src/virt-viewer-window.c:544
526 #: src/virt-viewer-window.c:621
528527 msgid "Ctrl+Alt+_Del"
529528 msgstr "Ctrl+Alt+_Del"
530529
531 #: ../src/virt-viewer-window.c:545
530 #: src/virt-viewer-window.c:622
532531 msgid "Ctrl+Alt+_Backspace"
533532 msgstr "Ctrl+Alt+_Baksteg"
534533
535 #: ../src/virt-viewer-window.c:547
534 #: src/virt-viewer-window.c:624
536535 msgid "Ctrl+Alt+F_1"
537536 msgstr "Ctrl+Alt+F_1"
538537
539 #: ../src/virt-viewer-window.c:548
538 #: src/virt-viewer-window.c:625
540539 msgid "Ctrl+Alt+F_2"
541540 msgstr "Ctrl+Alt+F_2"
542541
543 #: ../src/virt-viewer-window.c:549
542 #: src/virt-viewer-window.c:626
544543 msgid "Ctrl+Alt+F_3"
545544 msgstr "Ctrl+Alt+F_3"
546545
547 #: ../src/virt-viewer-window.c:550
546 #: src/virt-viewer-window.c:627
548547 msgid "Ctrl+Alt+F_4"
549548 msgstr "Ctrl+Alt+F_4"
550549
551 #: ../src/virt-viewer-window.c:551
550 #: src/virt-viewer-window.c:628
552551 msgid "Ctrl+Alt+F_5"
553552 msgstr "Ctrl+Alt+F_5"
554553
555 #: ../src/virt-viewer-window.c:552
554 #: src/virt-viewer-window.c:629
556555 msgid "Ctrl+Alt+F_6"
557556 msgstr "Ctrl+Alt+F_6"
558557
559 #: ../src/virt-viewer-window.c:553
558 #: src/virt-viewer-window.c:630
560559 msgid "Ctrl+Alt+F_7"
561560 msgstr "Ctrl+Alt+F_7"
562561
563 #: ../src/virt-viewer-window.c:554
562 #: src/virt-viewer-window.c:631
564563 msgid "Ctrl+Alt+F_8"
565564 msgstr "Ctrl+Alt+F_8"
566565
567 #: ../src/virt-viewer-window.c:555
566 #: src/virt-viewer-window.c:632
568567 msgid "Ctrl+Alt+F_9"
569568 msgstr "Ctrl+Alt+F_9"
570569
571 #: ../src/virt-viewer-window.c:556
570 #: src/virt-viewer-window.c:633
572571 msgid "Ctrl+Alt+F1_0"
573572 msgstr "Ctrl+Alt+F1_0"
574573
575 #: ../src/virt-viewer-window.c:557
574 #: src/virt-viewer-window.c:634
576575 msgid "Ctrl+Alt+F11"
577576 msgstr "Ctrl+Alt+F11"
578577
579 #: ../src/virt-viewer-window.c:558
578 #: src/virt-viewer-window.c:635
580579 msgid "Ctrl+Alt+F12"
581580 msgstr "Ctrl+Alt+F12"
582581
583 #: ../src/virt-viewer-window.c:953
582 #: src/virt-viewer-window.c:637
583 msgid "_PrintScreen"
584 msgstr ""
585
586 #: src/virt-viewer-window.c:1030
584587 #, c-format
585588 msgid "Unable to determine image format for file '%s'"
586 msgstr ""
587
588 #: ../src/virt-viewer-window.c:980
589 msgstr "Kan inte avgöra avbildsformatet för filen ”%s”"
590
591 #: src/virt-viewer-window.c:1053
592 msgid "Save screenshot"
593 msgstr ""
594
595 #: src/virt-viewer-window.c:1057
589596 msgid "_Save"
590597 msgstr "_Spara"
591598
592 #: ../src/virt-viewer-window.c:988
599 #: src/virt-viewer-window.c:1065
593600 msgid "Screenshot.png"
594 msgstr ""
595
596 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
601 msgstr "Skärmbild.png"
602
603 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
597604 msgid "Unknown"
598605 msgstr "Okänd"
599606
600 #: ../src/virt-viewer-window.c:1152
607 #: src/virt-viewer-window.c:1237
601608 msgid "Unable to connnect to oVirt"
602 msgstr ""
603
604 #: ../src/virt-viewer-window.c:1175
609 msgstr "Kan inte ansluta till oVirt"
610
611 #: src/virt-viewer-window.c:1260
605612 msgid "Disconnect"
606613 msgstr "Koppla ifrån"
607614
608 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
615 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
609616 msgid "USB device selection"
610617 msgstr "Val av USB-enhet"
611618
612 #: ../src/virt-viewer-window.c:1193
619 #: src/virt-viewer-window.c:1278
613620 msgid "Send key combination"
614621 msgstr "Skicka tangentbordskombination"
615622
616 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
623 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
617624 msgid "Leave fullscreen"
618625 msgstr "Lämna helskärm"
619626
620 #: ../src/virt-viewer-window.c:1279
627 #: src/virt-viewer-window.c:1364
621628 msgid "Ctrl+Alt"
622629 msgstr "Ctrl+Alt"
623630
624 #: ../src/virt-viewer-window.c:1282
631 #: src/virt-viewer-window.c:1367
625632 #, c-format
626633 msgid "(Press %s to release pointer)"
627634 msgstr "(Tryck %s för att släppa markören)"
628635
629 #. translators:
630 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
631 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
632 #.
633 #: ../src/virt-viewer-window.c:1293
636 #: src/virt-viewer-window.c:1378
634637 #, c-format
635638 msgid "%s%s%s - %s"
636639 msgstr "%s%s%s - %s"
637640
638 #. translators: <space>
639 #: ../src/virt-viewer-window.c:1297
641 #: src/virt-viewer-window.c:1382
640642 msgid " "
641643 msgstr " "
642644
643 #: ../src/virt-viewer-file.c:862
645 #: src/virt-viewer-file.c:875
644646 #, c-format
645647 msgid ""
646648 "At least %s version %s is required to setup this connection, see %s for "
649651 "Åtminstone %s version %s behövs för att skapa denna anslutning, se %s för "
650652 "detaljer"
651653
652 #: ../src/virt-viewer-file.c:870
654 #: src/virt-viewer-file.c:883
653655 #, c-format
654656 msgid "At least %s version %s is required to setup this connection"
655657 msgstr "Åtminstone %s version %s behövs för att skapa denna anslutning"
656658
657 #: ../src/virt-viewer.c:133
659 #: src/virt-viewer.c:131
658660 msgid "Direct connection with no automatic tunnels"
659661 msgstr "Direkt anslutning utan några automatiska tunnlar"
660662
661 #: ../src/virt-viewer.c:135
663 #: src/virt-viewer.c:133
662664 msgid "Attach to the local display using libvirt"
663665 msgstr "Koppla till den lokala displayen med libvirt"
664666
665 #: ../src/virt-viewer.c:137
667 #: src/virt-viewer.c:135
666668 msgid "Connect to hypervisor"
667669 msgstr "Anslut till hypervisorn"
668670
669 #: ../src/virt-viewer.c:139
671 #: src/virt-viewer.c:137
670672 msgid "Wait for domain to start"
671673 msgstr "Vänta på att domänen startar"
672674
673 #: ../src/virt-viewer.c:141
675 #: src/virt-viewer.c:139
674676 msgid "Reconnect to domain upon restart"
675677 msgstr "Återanslut till domänen vid omstart"
676678
677 #: ../src/virt-viewer.c:143
679 #: src/virt-viewer.c:141
678680 msgid "Select the virtual machine only by its name"
679 msgstr ""
680
681 #: ../src/virt-viewer.c:145
681 msgstr "Välj den virtuella maskinen endast vi dess namn"
682
683 #: src/virt-viewer.c:143
682684 msgid "Select the virtual machine only by its id"
683 msgstr ""
684
685 #: ../src/virt-viewer.c:147
685 msgstr "Välj den virtuella maskinen endast via dess id"
686
687 #: src/virt-viewer.c:145
686688 msgid "Select the virtual machine only by its uuid"
687 msgstr ""
688
689 #: ../src/virt-viewer.c:154
689 msgstr "Välj den virtuella maskinen endast via dess uuid"
690
691 #: src/virt-viewer.c:152
690692 msgid "Virtual machine graphical console"
691693 msgstr "Grafisk konsol för virtuella maskiner"
692694
693 #: ../src/virt-viewer.c:173
695 #: src/virt-viewer.c:171
694696 #, c-format
695697 msgid ""
696698 "\n"
697699 "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
698700 "\n"
699701 msgstr ""
700
701 #: ../src/virt-viewer.c:185
702 "\n"
703 "Användning: %s [FLAGGOR] [ID|UUID|DOMÄNNAMN]\n"
704 "\n"
705
706 #: src/virt-viewer.c:183
702707 #, c-format
703708 msgid ""
704709 "\n"
705710 "No ID|UUID|DOMAIN-NAME was specified for '%s'\n"
706711 "\n"
707712 msgstr ""
708
709 #: ../src/virt-viewer.c:300
713 "\n"
714 "Inget ID|UUID|DOMÄNNAMN angavs för ”%s”\n"
715 "\n"
716
717 #: src/virt-viewer.c:296
710718 msgid "Waiting for guest domain to re-start"
711719 msgstr "Vänta på att gästdomänen startas om"
712720
713 #: ../src/virt-viewer.c:554
721 #: src/virt-viewer.c:550
714722 #, c-format
715723 msgid "Cannot determine the graphic type for the guest %s"
716724 msgstr "Kan inte avgöra grafiktypen för gästen %s"
717725
718 #: ../src/virt-viewer.c:603
726 #: src/virt-viewer.c:599
719727 #, c-format
720728 msgid "Cannot determine the host for the guest %s"
721729 msgstr "Kan inte avgöra värden för gästen %s"
722730
723 #: ../src/virt-viewer.c:631
731 #: src/virt-viewer.c:627
724732 #, c-format
725733 msgid "Guest '%s' is not reachable"
726734 msgstr "Gästen ”%s” är inte nåbar"
727735
728 #: ../src/virt-viewer.c:860
736 #: src/virt-viewer.c:856
729737 #, c-format
730738 msgid "Virtual machine %s is not running"
731739 msgstr "Den virtuella maskinen %s kör inte"
732740
733 #: ../src/virt-viewer.c:884
741 #: src/virt-viewer.c:881
734742 msgid "Waiting for libvirt to start"
735743 msgstr "Väntar på att libvirt skall starta"
736744
737 #: ../src/virt-viewer.c:888
745 #: src/virt-viewer.c:885
738746 msgid "Finding guest domain"
739747 msgstr "Letar reda på gästdomänen"
740748
741 #: ../src/virt-viewer.c:892
749 #: src/virt-viewer.c:889
742750 msgid "Waiting for guest domain to be created"
743751 msgstr "Väntar på att gästdomänen skall skapas"
744752
745 #: ../src/virt-viewer.c:918
753 #: src/virt-viewer.c:921
746754 msgid "Checking guest domain status"
747755 msgstr "Kontrollerar gästdomänens status"
748756
749 #: ../src/virt-viewer.c:921
757 #: src/virt-viewer.c:924
750758 msgid "Cannot get guest state"
751759 msgstr "Kan inte hämta gästtillståndet"
752760
753 #: ../src/virt-viewer.c:927
761 #: src/virt-viewer.c:930
754762 msgid "Waiting for guest domain to start"
755763 msgstr "Väntar på att gästdomänen skall starta"
756764
757 #: ../src/virt-viewer.c:1040
765 #: src/virt-viewer.c:1044
758766 #, c-format
759767 msgid "Unable to connect to libvirt with URI: %s."
760768 msgstr "Kan inte ansluta till libvirt med URI: %s."
761769
762 #: ../src/virt-viewer.c:1041
770 #: src/virt-viewer.c:1045
763771 msgid "[none]"
764772 msgstr "[ingen]"
765773
766 #: ../src/virt-viewer.c:1048
774 #: src/virt-viewer.c:1052
767775 msgid "Authentication failed."
768776 msgstr "Autenticeringen misslyckades."
769777
770 #: ../src/virt-viewer.c:1108
778 #: src/virt-viewer.c:1112
771779 msgid "Failed to connect: "
772780 msgstr "Misslyckades att ansluta:"
773781
774 #.
775 #. * Local variables:
776 #. * c-indent-level: 4
777 #. * c-basic-offset: 4
778 #. * indent-tabs-mode: nil
779 #. * End:
780 #.
781 #: ../src/resources/ui/virt-viewer.ui.h:1
782 #: src/resources/ui/virt-viewer.ui:28
782783 msgid "_File"
783784 msgstr "_Arkiv"
784785
785 #: ../src/resources/ui/virt-viewer.ui.h:2
786 #: src/resources/ui/virt-viewer.ui:41
786787 msgid "_Screenshot"
787788 msgstr "_Skärmbild"
788789
789 #: ../src/resources/ui/virt-viewer.ui.h:3
790 #: src/resources/ui/virt-viewer.ui:52
790791 msgid "_USB device selection"
791792 msgstr "Val av _USB-enhet"
792793
793 #: ../src/resources/ui/virt-viewer.ui.h:4
794 #: src/resources/ui/virt-viewer.ui:62
794795 msgid "Smartcard insertion"
795796 msgstr "Insättning av smartkort"
796797
797 #: ../src/resources/ui/virt-viewer.ui.h:5
798 #: src/resources/ui/virt-viewer.ui:72
798799 msgid "Smartcard removal"
799800 msgstr "Uttag av smartkort"
800801
801 #: ../src/resources/ui/virt-viewer.ui.h:6
802 #: src/resources/ui/virt-viewer.ui:80
802803 msgid "_Change CD"
803804 msgstr "_Byt CD"
804805
805 #: ../src/resources/ui/virt-viewer.ui.h:7
806 #: src/resources/ui/virt-viewer.ui:90
806807 msgid "_Preferences"
807808 msgstr "_Egenskaper"
808809
809 #: ../src/resources/ui/virt-viewer.ui.h:8
810 #: src/resources/ui/virt-viewer.ui:103
810811 msgid "_Quit"
811812 msgstr "_Avsluta"
812813
813 #: ../src/resources/ui/virt-viewer.ui.h:9
814 #: src/resources/ui/virt-viewer.ui:119
815 msgid "_Machine"
816 msgstr "_Maskin"
817
818 #: src/resources/ui/virt-viewer.ui:129
819 msgid "_Pause"
820 msgstr "_Pausa"
821
822 #: src/resources/ui/virt-viewer.ui:144
823 msgid "_Reset"
824 msgstr "_Återställ"
825
826 #: src/resources/ui/virt-viewer.ui:153
827 msgid "_Power down"
828 msgstr "_Stäng av"
829
830 #: src/resources/ui/virt-viewer.ui:167
814831 msgid "_View"
815832 msgstr "_Visa"
816833
817 #: ../src/resources/ui/virt-viewer.ui.h:10
834 #: src/resources/ui/virt-viewer.ui:180
818835 msgid "_Full screen"
819836 msgstr "_Helskärm"
820837
821 #: ../src/resources/ui/virt-viewer.ui.h:11
838 #: src/resources/ui/virt-viewer.ui:191
822839 msgid "_Zoom"
823840 msgstr "_Zoom"
824841
825 #: ../src/resources/ui/virt-viewer.ui.h:12
842 #: src/resources/ui/virt-viewer.ui:201
826843 msgid "Zoom _In"
827844 msgstr "Zooma _in"
828845
829 #: ../src/resources/ui/virt-viewer.ui.h:13
846 #: src/resources/ui/virt-viewer.ui:212
830847 msgid "Zoom _Out"
831848 msgstr "Zooma _ut"
832849
833 #: ../src/resources/ui/virt-viewer.ui.h:14
850 #: src/resources/ui/virt-viewer.ui:229
834851 msgid "_Normal Size"
835852 msgstr "_Normal storlek"
836853
837 #: ../src/resources/ui/virt-viewer.ui.h:15
854 #: src/resources/ui/virt-viewer.ui:246
838855 msgid "_Displays"
839856 msgstr "_Displayer"
840857
841 #: ../src/resources/ui/virt-viewer.ui.h:16
858 #: src/resources/ui/virt-viewer.ui:255
842859 msgid "Release cursor"
843860 msgstr "Släpp markören"
844861
845 #: ../src/resources/ui/virt-viewer.ui.h:17
862 #: src/resources/ui/virt-viewer.ui:270
846863 msgid "_Send key"
847864 msgstr "_Skicka tangent"
848865
849 #: ../src/resources/ui/virt-viewer.ui.h:18
866 #: src/resources/ui/virt-viewer.ui:279
850867 msgid "_Help"
851868 msgstr "_Hjälp"
852869
853 #: ../src/resources/ui/virt-viewer.ui.h:19
870 #: src/resources/ui/virt-viewer.ui:290
854871 msgid "_Guest Details"
855872 msgstr "_Gästdetaljer"
856873
857 #: ../src/resources/ui/virt-viewer.ui.h:20
874 #: src/resources/ui/virt-viewer.ui:297
858875 msgid "_About"
859876 msgstr "_Om"
860877
861 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
878 #: src/resources/ui/virt-viewer-guest-details.ui:7
862879 msgid "Guest Details"
863880 msgstr "Gästdetaljer"
864881
865 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
882 #: src/resources/ui/virt-viewer-guest-details.ui:56
866883 msgid "Name:"
867884 msgstr "Namn:"
868885
869 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
886 #: src/resources/ui/virt-viewer-guest-details.ui:68
870887 msgid "GUID:"
871888 msgstr "GUID:"
872889
873 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
890 #: src/resources/ui/virt-viewer-vm-connection.ui:7
874891 msgid "Choose a virtual machine"
875892 msgstr "Välj en virtuell maskin"
876893
877 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
894 #: src/resources/ui/virt-viewer-vm-connection.ui:96
878895 msgid "Available virtual machines"
879896 msgstr "Tillgängliga virtuella maskiner"
880897
881 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
898 #: src/resources/ui/virt-viewer-preferences.ui:8
882899 msgid "Preferences"
883900 msgstr "Inställningar"
884901
885 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
902 #: src/resources/ui/virt-viewer-preferences.ui:48
886903 msgid "Folder sharing"
887904 msgstr "Mappdelning"
888905
889 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
906 #: src/resources/ui/virt-viewer-preferences.ui:70
890907 msgid "Share folder"
891908 msgstr "Dela mapp"
892909
893 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
910 #: src/resources/ui/virt-viewer-preferences.ui:82
894911 msgid "Read-only"
895912 msgstr "Skrivskyddad"
896913
897 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
914 #: src/resources/ui/virt-viewer-preferences.ui:96
915 msgid "Share clipboard"
916 msgstr ""
917
918 #: src/resources/ui/virt-viewer-preferences.ui:132
898919 msgid "Spice"
899920 msgstr "Spice"
921
922 #~ msgid "virt-manager.org"
923 #~ msgstr "virt-manager.org"
924
925 #~ msgid "virt-viewer"
926 #~ msgstr "virt-viewer"
Binary diff not shown
+269
-253
po/ta.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
99 # shkumar <shkumar@redhat.com>, 2012-2013
1010 msgid ""
1111 msgstr ""
12 "Project-Id-Version: PACKAGE VERSION\n"
13 "Report-Msgid-Bugs-To: \n"
14 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
15 "PO-Revision-Date: 2015-02-20 08:11-0500\n"
12 "Project-Id-Version: virt-viewer 9.0\n"
13 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
14 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
15 "PO-Revision-Date: 2015-02-20 08:11+0000\n"
1616 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1717 "Language-Team: Tamil (http://www.transifex.com/projects/p/virt-viewer/"
1818 "language/ta/)\n"
2121 "Content-Type: text/plain; charset=UTF-8\n"
2222 "Content-Transfer-Encoding: 8bit\n"
2323 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
24 "X-Generator: Zanata 3.9.6\n"
25
26 #: ../data/remote-viewer.appdata.xml.in.h:1
27 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
24 "X-Generator: Zanata 4.6.2\n"
25
26 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
27 #: src/remote-viewer-main.c:39
2828 msgid "Remote Viewer"
2929 msgstr "தொலைநிலை காட்டி"
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:2
31 #: data/remote-viewer.appdata.xml.in:7
3232 msgid "Remotely access virtual machines"
3333 msgstr ""
3434
35 #: ../data/remote-viewer.appdata.xml.in.h:3
35 #: data/remote-viewer.appdata.xml.in:9
3636 msgid ""
3737 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3838 "time it supports guest OS using the VNC or SPICE protocols. Further "
4141 "using SSL/TLS encryption."
4242 msgstr ""
4343
44 #: ../data/remote-viewer.desktop.in.h:2
44 #: data/remote-viewer.desktop.in:4
4545 msgid "Access remote desktops"
4646 msgstr "தொலை பணிமேடைகளை அணுகுதல்"
4747
48 #: ../data/virt-viewer-mime.xml.in.h:1
49 msgid "Virt-Viewer connection file"
50 msgstr "Virt-Viewer இணைப்புக் கோப்பு"
51
52 #: ../src/remote-viewer-iso-list-dialog.c:160
48 #: src/remote-viewer-iso-list-dialog.c:156
5349 msgid "Failed to fetch CD names"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:212
52 #: src/remote-viewer-iso-list-dialog.c:205
5753 msgid "<b>Loading...</b>"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:285
56 #: src/remote-viewer-iso-list-dialog.c:276
6157 msgid "Refresh"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:286
60 #: src/remote-viewer-iso-list-dialog.c:277
6561 msgid "Close"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:306
64 #: src/remote-viewer-iso-list-dialog.c:297
6965 msgid "Unspecified error"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:328
68 #: src/remote-viewer-iso-list-dialog.c:318
7369 msgid "Failed to change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer-iso-list-dialog.c:380
72 #: src/remote-viewer-iso-list-dialog.c:370
7773 msgid "Change CD"
7874 msgstr ""
7975
80 #: ../src/remote-viewer.c:118
76 #: src/remote-viewer.c:116
8177 msgid "Set window title"
8278 msgstr "சாளர தலைப்பை அமைக்கவும்"
8379
84 #: ../src/remote-viewer.c:125
80 #: src/remote-viewer.c:123
8581 msgid "Remote viewer client"
8682 msgstr "தொலைநிலைக் காட்சிக் கிளை"
8783
88 #: ../src/remote-viewer.c:150
89 #, c-format
84 #: src/remote-viewer.c:148
9085 msgid ""
9186 "\n"
9287 "Error: can't handle multiple URIs\n"
9388 "\n"
9489 msgstr ""
9590
96 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
91 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9792 #, c-format
9893 msgid "Run '%s --help' to see a full list of available command line options\n"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:435
96 #: src/remote-viewer.c:429
10297 msgid "failed to parse ovirt uri"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
100 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
106101 msgid "Authentication was cancelled"
107102 msgstr ""
108103
109 #: ../src/remote-viewer.c:480
104 #: src/remote-viewer.c:472
110105 #, c-format
111106 msgid "oVirt VM %s is not running"
112107 msgstr ""
113108
114 #: ../src/remote-viewer.c:494
109 #: src/remote-viewer.c:486
115110 #, c-format
116111 msgid "oVirt VM %s has no display"
117112 msgstr ""
118113
119 #: ../src/remote-viewer.c:520
114 #: src/remote-viewer.c:512
120115 #, c-format
121116 msgid "oVirt VM %s has no host information"
122117 msgstr ""
123118
124 #: ../src/remote-viewer.c:531
125 #, c-format
126 msgid "oVirt VM %s has unknown display type: %d"
127 msgstr ""
128
129 #: ../src/remote-viewer.c:713
119 #: src/remote-viewer.c:523
120 #, c-format
121 msgid "oVirt VM %s has unknown display type: %u"
122 msgstr ""
123
124 #: src/remote-viewer.c:690
125 msgid "Couldn't open oVirt session: "
126 msgstr ""
127
128 #: src/remote-viewer.c:718
130129 msgid "Failed to initiate connection"
131130 msgstr "இணைப்பை துவக்க முடியவில்லை"
132131
133 #: ../src/remote-viewer.c:742
132 #: src/remote-viewer.c:747
134133 msgid "No connection was chosen"
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:759
136 #: src/remote-viewer.c:764
138137 msgid "Failed to read stdin: "
139138 msgstr ""
140139
141 #: ../src/remote-viewer.c:776
140 #: src/remote-viewer.c:781
142141 #, c-format
143142 msgid "Invalid file %s: "
144143 msgstr ""
145144
146 #: ../src/remote-viewer.c:786
145 #: src/remote-viewer.c:791
147146 msgid "Cannot determine the connection type from URI"
148147 msgstr "URI-இலிருந்து இணைப்பு வகையை வரையறுக்க முடியாது"
149148
150 #: ../src/remote-viewer.c:792
151 msgid "Couldn't open oVirt session: "
152 msgstr ""
153
154 #: ../src/remote-viewer.c:815
149 #: src/remote-viewer.c:810
155150 #, c-format
156151 msgid "Unable to connect: %s"
157152 msgstr ""
158153
159 #.
160 #. * Local variables:
161 #. * c-indent-level: 4
162 #. * c-basic-offset: 4
163 #. * indent-tabs-mode: nil
164 #. * End:
165 #.
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
154 #: src/resources/ui/remote-viewer-connect.ui:6
167155 msgid "Connection details"
168156 msgstr "இணைப்பு விவரங்கள்"
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
158 #: src/resources/ui/remote-viewer-connect.ui:24
171159 msgid "Connection _Address"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
162 #: src/resources/ui/remote-viewer-connect.ui:54
175163 msgid "For example, spice://foo.example.org:5900"
176164 msgstr "எடுத்துக்காட்டுக்கு spice://foo.example.org:5900"
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
166 #: src/resources/ui/remote-viewer-connect.ui:78
179167 msgid "Recent connections"
180168 msgstr ""
181169
182 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
183 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
185 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
170 #: src/resources/ui/remote-viewer-connect.ui:120
171 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
172 #: src/resources/ui/virt-viewer-vm-connection.ui:24
173 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
186174 msgid "_Cancel"
187175 msgstr ""
188176
189 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
190 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
177 #: src/resources/ui/remote-viewer-connect.ui:134
178 #: src/resources/ui/virt-viewer-vm-connection.ui:38
191179 msgid "C_onnect"
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
182 #: src/resources/ui/remote-viewer-iso-list.ui:28
195183 msgid "Loading..."
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
186 #: src/resources/ui/remote-viewer-iso-list.ui:78
199187 msgid "Select ISO"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
190 #: src/resources/ui/remote-viewer-iso-list.ui:116
203191 msgid "Selected"
204192 msgstr ""
205193
206 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
207 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
194 #: src/resources/ui/remote-viewer-iso-list.ui:129
195 #: src/resources/ui/virt-viewer-vm-connection.ui:72
208196 msgid "Name"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:1
199 #: src/resources/ui/virt-viewer-about.ui:7
212200 msgid "About Virt-Viewer"
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:2
203 #: src/resources/ui/virt-viewer-about.ui:16
216204 msgid ""
217205 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
218206 "Copyright (C) 2007-2014 Red Hat, Inc."
220208 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
221209 "Copyright (C) 2007-2014 Red Hat, Inc."
222210
223 #: ../src/resources/ui/virt-viewer-about.ui.h:4
211 #: src/resources/ui/virt-viewer-about.ui:18
224212 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
225213 msgstr "ஒரு தொலை பணிமேடை GTK-VNC, SPICE-GTK மற்றும் libvirtஆல் உருவாகப்பட்டது"
226214
227 #: ../src/resources/ui/virt-viewer-about.ui.h:5
228 msgid "virt-manager.org"
229 msgstr "virt-manager.org"
230
231 #: ../src/resources/ui/virt-viewer-about.ui.h:6
215 #: src/resources/ui/virt-viewer-about.ui:20
216 msgid "gitlab.com/virt-viewer/virt-viewer"
217 msgstr ""
218
219 #: src/resources/ui/virt-viewer-about.ui:21
232220 msgid ""
233221 "This program is free software; you can redistribute it and/or modify\n"
234222 "it under the terms of the GNU General Public License as published by\n"
258246 "along with this program; if not, write to the Free Software\n"
259247 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
260248
261 #: ../src/resources/ui/virt-viewer-about.ui.h:20
249 #: src/resources/ui/virt-viewer-about.ui:38
262250 msgid "The Fedora Translation Team"
263251 msgstr "Fedora மொழிபெயர்ப்பு குழு"
264252
265 #: ../src/virt-viewer-app.c:459
253 #: src/virt-viewer-app.c:594
266254 msgid "Do you want to close the session?"
267255 msgstr "அமர்வை மூட வேண்டுமா?"
268256
269 #: ../src/virt-viewer-app.c:461
257 #: src/virt-viewer-app.c:596
270258 msgid "Do not ask me again"
271259 msgstr "மீண்டும் என்னிடம் கேட்க வேண்டாம்"
272260
273 #: ../src/virt-viewer-app.c:655
261 #: src/virt-viewer-app.c:767
274262 #, c-format
275263 msgid "Address is too long for unix socket_path: %s"
276264 msgstr ""
277265
278 #: ../src/virt-viewer-app.c:665
266 #: src/virt-viewer-app.c:777
279267 #, c-format
280268 msgid "Creating unix socket failed: %s"
281269 msgstr ""
282270
283 #: ../src/virt-viewer-app.c:671
271 #: src/virt-viewer-app.c:783
284272 #, c-format
285273 msgid "Connecting to unix socket failed: %s"
286274 msgstr ""
287275
288 #: ../src/virt-viewer-app.c:955
276 #: src/virt-viewer-app.c:1077
289277 #, c-format
290278 msgid "Waiting for display %d..."
291279 msgstr "காட்சி %d-க்கு காத்திருக்கிறது..."
292280
293 #: ../src/virt-viewer-app.c:1062
281 #: src/virt-viewer-app.c:1193
294282 #, c-format
295283 msgid "Unsupported graphic type '%s'"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1146
286 #: src/virt-viewer-app.c:1277
299287 msgid "Connect to ssh failed."
300288 msgstr "ssh-உடன் இணைக்க முடியவில்லை."
301289
302 #: ../src/virt-viewer-app.c:1161
290 #: src/virt-viewer-app.c:1292
303291 #, c-format
304292 msgid "Can't connect to channel: %s"
305293 msgstr ""
306294
307 #: ../src/virt-viewer-app.c:1163
295 #: src/virt-viewer-app.c:1294
308296 msgid "only SSH or unix socket connection supported."
309297 msgstr ""
310298
311 #: ../src/virt-viewer-app.c:1176
299 #: src/virt-viewer-app.c:1311
312300 msgid "Connect to channel unsupported."
313301 msgstr "சேனலுடன் இணைப்பு துணைபுரியவில்லை."
314302
315 #: ../src/virt-viewer-app.c:1238
303 #: src/virt-viewer-app.c:1376
316304 msgid "Display can only be attached through libvirt with --attach"
317305 msgstr ""
318306
319 #: ../src/virt-viewer-app.c:1263
307 #: src/virt-viewer-app.c:1401
320308 msgid "Connecting to graphic server"
321309 msgstr "வரைகலை சேவையகத்துடன் இணைக்கிறது"
322310
323 #: ../src/virt-viewer-app.c:1362
311 #: src/virt-viewer-app.c:1500
324312 msgid "Guest domain has shutdown"
325313 msgstr "விருந்தினர் டொமைன் நிறுத்தப்பட்டது"
326314
327 #: ../src/virt-viewer-app.c:1423
315 #: src/virt-viewer-app.c:1561
328316 msgid "Connected to graphic server"
329317 msgstr "வரைகலை சேவையகத்துடன் இணைக்கப்பட்டது"
330318
331 #: ../src/virt-viewer-app.c:1452
319 #: src/virt-viewer-app.c:1590
332320 #, c-format
333321 msgid "Unable to connect to the graphic server %s"
334322 msgstr "வரைகலை சேவையகம் %s-க்கு இணைக்க முடியவில்லை"
335323
336 #: ../src/virt-viewer-app.c:1478
324 #: src/virt-viewer-app.c:1616
337325 #, c-format
338326 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
339327 msgstr ""
340328
341 #: ../src/virt-viewer-app.c:1492
329 #: src/virt-viewer-app.c:1630
342330 #, c-format
343331 msgid "Unable to authenticate with remote desktop server: %s"
344332 msgstr "தொலை பணிமேடை சேவையகத்துடன் அங்கீகரிக்க முடியவில்லை: %s"
345333
346 #: ../src/virt-viewer-app.c:1500
334 #: src/virt-viewer-app.c:1638
347335 #, c-format
348336 msgid "USB redirection error: %s"
349337 msgstr "USB மறுதிசையிடல் பிழை: %s"
350338
351 #: ../src/virt-viewer-app.c:1834
339 #: src/virt-viewer-app.c:2026
352340 #, c-format
353341 msgid "Zoom level must be within %d-%d\n"
354342 msgstr ""
355343 "பெரிதாக்கும் நிலை %d-%d க்குள் இருக்க வேண்டும்\n"
356344 "\n"
357345
358 #: ../src/virt-viewer-app.c:1887
346 #: src/virt-viewer-app.c:2081
359347 #, c-format
360348 msgid "%s\n"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:1897
351 #: src/virt-viewer-app.c:2091
364352 #, c-format
365353 msgid "%s version %s"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2321
356 #: src/virt-viewer-app.c:2545
369357 #, c-format
370358 msgid "Display _%d"
371359 msgstr ""
372360
373 #: ../src/virt-viewer-app.c:2577
361 #: src/virt-viewer-app.c:2829
374362 #, c-format
375363 msgid "Invalid kiosk-quit argument: %s"
376364 msgstr "செல்லுபடியாகாத kiosk-quit மதிப்புரு: %s"
377365
378 #: ../src/virt-viewer-app.c:2588
366 #: src/virt-viewer-app.c:2840
379367 msgid "Display version information"
380368 msgstr "காட்சி பதிப்பு தகவல்"
381369
382 #: ../src/virt-viewer-app.c:2590
370 #: src/virt-viewer-app.c:2842
383371 msgid "Zoom level of window, in percentage"
384372 msgstr "சாளரத்தின் அளவிடும் நிலை, சதவீதத்தில்"
385373
386 #: ../src/virt-viewer-app.c:2592
374 #: src/virt-viewer-app.c:2844
387375 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
388376 msgstr ""
389377 "முழுத்திரைப் பயன்முறையில் திறக்கவும் (விருந்தினர் தெளிவுத்திறனை கிளையன்ட்டுக்குப் "
390378 "பொருந்துமாறு சரிசெய்யவும்)"
391379
392 #: ../src/virt-viewer-app.c:2594
380 #: src/virt-viewer-app.c:2846
393381 msgid "Customise hotkeys"
394382 msgstr "குறுக்குவிசைகளை தனிப்பயனாக்கவும்"
395383
396 #: ../src/virt-viewer-app.c:2596
384 #: src/virt-viewer-app.c:2848
397385 msgid "Enable kiosk mode"
398386 msgstr "kiosk பயன்முறையை "
399387
400 #: ../src/virt-viewer-app.c:2598
388 #: src/virt-viewer-app.c:2850
401389 msgid "Quit on given condition in kiosk mode"
402390 msgstr "kiosk பயன்முறையில் கொடுக்கப்பட்டுள்ள நிபந்தனையில் வெளியே"
403391
404 #: ../src/virt-viewer-app.c:2598
392 #: src/virt-viewer-app.c:2850
405393 msgid "<never|on-disconnect>"
406394 msgstr "<never|on-disconnect>"
407395
408 #: ../src/virt-viewer-app.c:2600
396 #: src/virt-viewer-app.c:2852
409397 msgid "Display verbose information"
410398 msgstr "காட்சி வெர்போஸ் தகவல்"
411399
412 #: ../src/virt-viewer-app.c:2602
400 #: src/virt-viewer-app.c:2854
413401 msgid "Display debugging information"
414402 msgstr "பிழைத்திருத்த தகவலை காட்டவும்"
415403
416 #: ../src/virt-viewer-auth.c:89
404 #: src/virt-viewer-auth.c:89
417405 #, c-format
418406 msgid ""
419407 "Authentication is required for the %s connection to:\n"
422410 "\n"
423411 msgstr ""
424412
425 #: ../src/virt-viewer-auth.c:93
413 #: src/virt-viewer-auth.c:93
426414 #, c-format
427415 msgid "Authentication is required for the %s connection:\n"
428416 msgstr ""
429417
430 #.
431 #. * Local variables:
432 #. * c-indent-level: 4
433 #. * c-basic-offset: 4
434 #. * indent-tabs-mode: nil
435 #. * End:
436 #.
437 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
418 #: src/resources/ui/virt-viewer-auth.ui:7
438419 msgid "Authentication required"
439420 msgstr "அங்கீகாரம் தேவை"
440421
441 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
422 #: src/resources/ui/virt-viewer-auth.ui:42
442423 msgid "_OK"
443424 msgstr ""
444425
445 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
446 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
447 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
426 #: src/resources/ui/virt-viewer-auth.ui:71
427 #: src/resources/ui/virt-viewer-guest-details.ui:82
428 #: src/resources/ui/virt-viewer-guest-details.ui:96
429 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
448430 msgid "label"
449431 msgstr "லேபிள்"
450432
451 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
433 #: src/resources/ui/virt-viewer-auth.ui:93
452434 msgid "Password:"
453435 msgstr "கடவுச்சொல்:"
454436
455 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
437 #: src/resources/ui/virt-viewer-auth.ui:105
456438 msgid "Username:"
457439 msgstr "பயனர்பெயர்:"
458440
459 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
441 #: src/resources/ui/virt-viewer-auth.ui:137
460442 msgid "Show password"
461443 msgstr ""
462444
463 #: ../src/virt-viewer-display-vnc.c:134
445 #: src/virt-viewer-display-vnc.c:130
464446 msgid "VNC does not provide GUID"
465447 msgstr ""
466448
467 #: ../src/virt-viewer-file-transfer-dialog.c:128
449 #: src/virt-viewer-display-vte.c:181
450 msgid "Console support is compiled out!"
451 msgstr ""
452
453 #: src/virt-viewer-file-transfer-dialog.c:124
468454 msgid "File Transfers"
469455 msgstr ""
470456
471 #: ../src/virt-viewer-file-transfer-dialog.c:154
457 #: src/virt-viewer-file-transfer-dialog.c:150
472458 msgid "Transferring 1 file..."
473459 msgstr ""
474460
475 #: ../src/virt-viewer-file-transfer-dialog.c:156
476 #, c-format
477 msgid "Transferring %d file of %d..."
478 msgid_plural "Transferring %d files of %d..."
461 #: src/virt-viewer-file-transfer-dialog.c:152
462 #, c-format
463 msgid "Transferring %u file of %u..."
464 msgid_plural "Transferring %u files of %u..."
479465 msgstr[0] ""
480
481 #: ../src/virt-viewer-file-transfer-dialog.c:228
482 #, c-format
483 msgid "An error caused the following file transfers to fail:%s"
484 msgstr ""
485
486 #: ../src/virt-viewer-main.c:38
466 msgstr[1] ""
467
468 #: src/virt-viewer-file-transfer-dialog.c:225
469 msgid "An error caused the following file transfers to fail:"
470 msgstr ""
471
472 #: src/virt-viewer-main.c:38
487473 msgid "Virt Viewer"
488474 msgstr "Virt Viewer"
489475
490 #: ../src/virt-viewer-session-spice.c:704
476 #: src/virt-viewer-session-spice.c:731
491477 msgid "Invalid password"
492478 msgstr ""
493479
494 #. Create the widgets
495 #: ../src/virt-viewer-session-spice.c:802
480 #: src/virt-viewer-session-spice.c:829
496481 msgid "Select USB devices for redirection"
497482 msgstr "மறுதிசையிட USB சாதனங்களை தேர்ந்தெடுக்கவும்"
498483
499 #: ../src/virt-viewer-session-spice.c:804
500 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
484 #: src/virt-viewer-session-spice.c:831
485 #: src/resources/ui/virt-viewer-guest-details.ui:23
501486 msgid "_Close"
502487 msgstr ""
503488
504 #: ../src/virt-viewer-session-vnc.c:162
505 #, c-format
506 msgid "Unsupported authentication type %d"
507 msgstr "துணைபுரியாத அங்கீகார வகை %d"
508
509 #: ../src/virt-viewer-vm-connection.c:64
489 #: src/virt-viewer-session-spice.c:1019
490 msgid "Serial"
491 msgstr ""
492
493 #: src/virt-viewer-session-spice.c:1021
494 msgid "QEMU human monitor"
495 msgstr ""
496
497 #: src/virt-viewer-session-spice.c:1023
498 msgid "QEMU debug console"
499 msgstr ""
500
501 #: src/virt-viewer-session-vnc.c:158
502 #, c-format
503 msgid "Unsupported authentication type %u"
504 msgstr ""
505
506 #: src/virt-viewer-vm-connection.c:64
510507 msgid "No running virtual machine found"
511508 msgstr ""
512509
513 #: ../src/virt-viewer-vm-connection.c:93
510 #: src/virt-viewer-vm-connection.c:93
514511 msgid "No virtual machine was chosen"
515512 msgstr ""
516513
517 #: ../src/virt-viewer-window.c:544
514 #: src/virt-viewer-window.c:621
518515 msgid "Ctrl+Alt+_Del"
519516 msgstr "Ctrl+Alt+_Del"
520517
521 #: ../src/virt-viewer-window.c:545
518 #: src/virt-viewer-window.c:622
522519 msgid "Ctrl+Alt+_Backspace"
523520 msgstr "Ctrl+Alt+_Backspace"
524521
525 #: ../src/virt-viewer-window.c:547
522 #: src/virt-viewer-window.c:624
526523 msgid "Ctrl+Alt+F_1"
527524 msgstr "Ctrl+Alt+F_1"
528525
529 #: ../src/virt-viewer-window.c:548
526 #: src/virt-viewer-window.c:625
530527 msgid "Ctrl+Alt+F_2"
531528 msgstr "Ctrl+Alt+F_2"
532529
533 #: ../src/virt-viewer-window.c:549
530 #: src/virt-viewer-window.c:626
534531 msgid "Ctrl+Alt+F_3"
535532 msgstr "Ctrl+Alt+F_3"
536533
537 #: ../src/virt-viewer-window.c:550
534 #: src/virt-viewer-window.c:627
538535 msgid "Ctrl+Alt+F_4"
539536 msgstr "Ctrl+Alt+F_4"
540537
541 #: ../src/virt-viewer-window.c:551
538 #: src/virt-viewer-window.c:628
542539 msgid "Ctrl+Alt+F_5"
543540 msgstr "Ctrl+Alt+F_5"
544541
545 #: ../src/virt-viewer-window.c:552
542 #: src/virt-viewer-window.c:629
546543 msgid "Ctrl+Alt+F_6"
547544 msgstr "Ctrl+Alt+F_6"
548545
549 #: ../src/virt-viewer-window.c:553
546 #: src/virt-viewer-window.c:630
550547 msgid "Ctrl+Alt+F_7"
551548 msgstr "Ctrl+Alt+F_7"
552549
553 #: ../src/virt-viewer-window.c:554
550 #: src/virt-viewer-window.c:631
554551 msgid "Ctrl+Alt+F_8"
555552 msgstr "Ctrl+Alt+F_8"
556553
557 #: ../src/virt-viewer-window.c:555
554 #: src/virt-viewer-window.c:632
558555 msgid "Ctrl+Alt+F_9"
559556 msgstr "Ctrl+Alt+F_9"
560557
561 #: ../src/virt-viewer-window.c:556
558 #: src/virt-viewer-window.c:633
562559 msgid "Ctrl+Alt+F1_0"
563560 msgstr "Ctrl+Alt+F1_0"
564561
565 #: ../src/virt-viewer-window.c:557
562 #: src/virt-viewer-window.c:634
566563 msgid "Ctrl+Alt+F11"
567564 msgstr "Ctrl+Alt+F11"
568565
569 #: ../src/virt-viewer-window.c:558
566 #: src/virt-viewer-window.c:635
570567 msgid "Ctrl+Alt+F12"
571568 msgstr "Ctrl+Alt+F12"
572569
573 #: ../src/virt-viewer-window.c:953
570 #: src/virt-viewer-window.c:637
571 msgid "_PrintScreen"
572 msgstr ""
573
574 #: src/virt-viewer-window.c:1030
574575 #, c-format
575576 msgid "Unable to determine image format for file '%s'"
576577 msgstr ""
577578
578 #: ../src/virt-viewer-window.c:980
579 #: src/virt-viewer-window.c:1053
580 msgid "Save screenshot"
581 msgstr ""
582
583 #: src/virt-viewer-window.c:1057
579584 msgid "_Save"
580585 msgstr ""
581586
582 #: ../src/virt-viewer-window.c:988
587 #: src/virt-viewer-window.c:1065
583588 msgid "Screenshot.png"
584589 msgstr ""
585590
586 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
591 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
587592 msgid "Unknown"
588593 msgstr ""
589594
590 #: ../src/virt-viewer-window.c:1152
595 #: src/virt-viewer-window.c:1237
591596 msgid "Unable to connnect to oVirt"
592597 msgstr ""
593598
594 #: ../src/virt-viewer-window.c:1175
599 #: src/virt-viewer-window.c:1260
595600 msgid "Disconnect"
596601 msgstr "துண்டி"
597602
598 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
603 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
599604 msgid "USB device selection"
600605 msgstr "USB சாதன தேர்வு"
601606
602 #: ../src/virt-viewer-window.c:1193
607 #: src/virt-viewer-window.c:1278
603608 msgid "Send key combination"
604609 msgstr "விசைச் சேர்க்கையை அனுப்பு"
605610
606 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
611 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
607612 msgid "Leave fullscreen"
608613 msgstr "முழுத்திரையை விட்டுவிலகு"
609614
610 #: ../src/virt-viewer-window.c:1279
615 #: src/virt-viewer-window.c:1364
611616 msgid "Ctrl+Alt"
612617 msgstr "Ctrl+Alt"
613618
614 #: ../src/virt-viewer-window.c:1282
619 #: src/virt-viewer-window.c:1367
615620 #, c-format
616621 msgid "(Press %s to release pointer)"
617622 msgstr "(சுட்டியை விடுவிக்க %s ஐ அழுத்தவும்)"
618623
619 #. translators:
620 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
621 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
622 #.
623 #: ../src/virt-viewer-window.c:1293
624 #: src/virt-viewer-window.c:1378
624625 #, c-format
625626 msgid "%s%s%s - %s"
626627 msgstr "%s%s%s - %s"
627628
628 #. translators: <space>
629 #: ../src/virt-viewer-window.c:1297
629 #: src/virt-viewer-window.c:1382
630630 msgid " "
631631 msgstr " "
632632
633 #: ../src/virt-viewer-file.c:862
633 #: src/virt-viewer-file.c:875
634634 #, c-format
635635 msgid ""
636636 "At least %s version %s is required to setup this connection, see %s for "
637637 "details"
638638 msgstr ""
639639
640 #: ../src/virt-viewer-file.c:870
640 #: src/virt-viewer-file.c:883
641641 #, c-format
642642 msgid "At least %s version %s is required to setup this connection"
643643 msgstr "இந்த இணைப்பை அமைக்க குறைந்தது %s பதிப்பு %s தேவை"
644644
645 #: ../src/virt-viewer.c:133
645 #: src/virt-viewer.c:131
646646 msgid "Direct connection with no automatic tunnels"
647647 msgstr "தானியக்க டனல்கள் இல்லாமல் நேரடி இணைப்பு"
648648
649 #: ../src/virt-viewer.c:135
649 #: src/virt-viewer.c:133
650650 msgid "Attach to the local display using libvirt"
651651 msgstr "libvirt-ஐ பயன்படுத்தி உள்ளமை காட்சிக்கு இணைக்கவும்"
652652
653 #: ../src/virt-viewer.c:137
653 #: src/virt-viewer.c:135
654654 msgid "Connect to hypervisor"
655655 msgstr "ஹைபர்வைசருடன் இணைக்கவும்"
656656
657 #: ../src/virt-viewer.c:139
657 #: src/virt-viewer.c:137
658658 msgid "Wait for domain to start"
659659 msgstr "டொமைன் துவக்க காத்திருக்கவும்"
660660
661 #: ../src/virt-viewer.c:141
661 #: src/virt-viewer.c:139
662662 msgid "Reconnect to domain upon restart"
663663 msgstr "மறுதுவக்கத்தின்ப்படி டொமைனை மறுஇணைக்கவும்"
664664
665 #: ../src/virt-viewer.c:143
665 #: src/virt-viewer.c:141
666666 msgid "Select the virtual machine only by its name"
667667 msgstr ""
668668
669 #: ../src/virt-viewer.c:145
669 #: src/virt-viewer.c:143
670670 msgid "Select the virtual machine only by its id"
671671 msgstr ""
672672
673 #: ../src/virt-viewer.c:147
673 #: src/virt-viewer.c:145
674674 msgid "Select the virtual machine only by its uuid"
675675 msgstr ""
676676
677 #: ../src/virt-viewer.c:154
677 #: src/virt-viewer.c:152
678678 msgid "Virtual machine graphical console"
679679 msgstr "மெய்நிகர் கணினி வரைவியல் "
680680
681 #: ../src/virt-viewer.c:173
681 #: src/virt-viewer.c:171
682682 #, c-format
683683 msgid ""
684684 "\n"
686686 "\n"
687687 msgstr ""
688688
689 #: ../src/virt-viewer.c:185
689 #: src/virt-viewer.c:183
690690 #, c-format
691691 msgid ""
692692 "\n"
694694 "\n"
695695 msgstr ""
696696
697 #: ../src/virt-viewer.c:300
697 #: src/virt-viewer.c:296
698698 msgid "Waiting for guest domain to re-start"
699699 msgstr "மறுதுவக்க விருந்தினர் டொமைனுக்காக காத்திருக்கிறது"
700700
701 #: ../src/virt-viewer.c:554
701 #: src/virt-viewer.c:550
702702 #, c-format
703703 msgid "Cannot determine the graphic type for the guest %s"
704704 msgstr "விருந்தினர் %s-க்கு வரைகலை வகையை வரையறுக்க முடியாது"
705705
706 #: ../src/virt-viewer.c:603
706 #: src/virt-viewer.c:599
707707 #, c-format
708708 msgid "Cannot determine the host for the guest %s"
709709 msgstr "விருந்தினர் %s-க்கு புரவலனை வரையறுக்க முடியாது"
710710
711 #: ../src/virt-viewer.c:631
711 #: src/virt-viewer.c:627
712712 #, c-format
713713 msgid "Guest '%s' is not reachable"
714714 msgstr ""
715715
716 #: ../src/virt-viewer.c:860
716 #: src/virt-viewer.c:856
717717 #, c-format
718718 msgid "Virtual machine %s is not running"
719719 msgstr ""
720720
721 #: ../src/virt-viewer.c:884
721 #: src/virt-viewer.c:881
722722 msgid "Waiting for libvirt to start"
723723 msgstr "libvirt தொடங்கக் காத்திருக்கிறது"
724724
725 #: ../src/virt-viewer.c:888
725 #: src/virt-viewer.c:885
726726 msgid "Finding guest domain"
727727 msgstr "விருந்தினர் டொமைனை தேடுகிறது"
728728
729 #: ../src/virt-viewer.c:892
729 #: src/virt-viewer.c:889
730730 msgid "Waiting for guest domain to be created"
731731 msgstr "விருந்தினர் டொமைன் உருவாக்க காத்திருக்கிறது"
732732
733 #: ../src/virt-viewer.c:918
733 #: src/virt-viewer.c:921
734734 msgid "Checking guest domain status"
735735 msgstr "விருந்தினர் நிலையை சரிபார்க்கிறது"
736736
737 #: ../src/virt-viewer.c:921
737 #: src/virt-viewer.c:924
738738 msgid "Cannot get guest state"
739739 msgstr ""
740740
741 #: ../src/virt-viewer.c:927
741 #: src/virt-viewer.c:930
742742 msgid "Waiting for guest domain to start"
743743 msgstr "துவக்க விருந்தினர் டொமைனுக்காக காத்திருக்கிறது"
744744
745 #: ../src/virt-viewer.c:1040
745 #: src/virt-viewer.c:1044
746746 #, c-format
747747 msgid "Unable to connect to libvirt with URI: %s."
748748 msgstr ""
749749
750 #: ../src/virt-viewer.c:1041
750 #: src/virt-viewer.c:1045
751751 msgid "[none]"
752752 msgstr "[ஒன்றுமில்லாத]"
753753
754 #: ../src/virt-viewer.c:1048
754 #: src/virt-viewer.c:1052
755755 msgid "Authentication failed."
756756 msgstr ""
757757
758 #: ../src/virt-viewer.c:1108
758 #: src/virt-viewer.c:1112
759759 msgid "Failed to connect: "
760760 msgstr ""
761761
762 #.
763 #. * Local variables:
764 #. * c-indent-level: 4
765 #. * c-basic-offset: 4
766 #. * indent-tabs-mode: nil
767 #. * End:
768 #.
769 #: ../src/resources/ui/virt-viewer.ui.h:1
762 #: src/resources/ui/virt-viewer.ui:28
770763 msgid "_File"
771764 msgstr "கோப்பு (_F)"
772765
773 #: ../src/resources/ui/virt-viewer.ui.h:2
766 #: src/resources/ui/virt-viewer.ui:41
774767 msgid "_Screenshot"
775768 msgstr ""
776769
777 #: ../src/resources/ui/virt-viewer.ui.h:3
770 #: src/resources/ui/virt-viewer.ui:52
778771 msgid "_USB device selection"
779772 msgstr ""
780773
781 #: ../src/resources/ui/virt-viewer.ui.h:4
774 #: src/resources/ui/virt-viewer.ui:62
782775 msgid "Smartcard insertion"
783776 msgstr "ஸ்மார்ட் கார்டு நுழைத்தல்"
784777
785 #: ../src/resources/ui/virt-viewer.ui.h:5
778 #: src/resources/ui/virt-viewer.ui:72
786779 msgid "Smartcard removal"
787780 msgstr "ஸ்மார்ட் கார்டு நீக்கல்"
788781
789 #: ../src/resources/ui/virt-viewer.ui.h:6
782 #: src/resources/ui/virt-viewer.ui:80
790783 msgid "_Change CD"
791784 msgstr ""
792785
793 #: ../src/resources/ui/virt-viewer.ui.h:7
786 #: src/resources/ui/virt-viewer.ui:90
794787 msgid "_Preferences"
795788 msgstr ""
796789
797 #: ../src/resources/ui/virt-viewer.ui.h:8
790 #: src/resources/ui/virt-viewer.ui:103
798791 msgid "_Quit"
799792 msgstr ""
800793
801 #: ../src/resources/ui/virt-viewer.ui.h:9
794 #: src/resources/ui/virt-viewer.ui:119
795 msgid "_Machine"
796 msgstr ""
797
798 #: src/resources/ui/virt-viewer.ui:129
799 msgid "_Pause"
800 msgstr ""
801
802 #: src/resources/ui/virt-viewer.ui:144
803 msgid "_Reset"
804 msgstr ""
805
806 #: src/resources/ui/virt-viewer.ui:153
807 msgid "_Power down"
808 msgstr ""
809
810 #: src/resources/ui/virt-viewer.ui:167
802811 msgid "_View"
803812 msgstr "பார்வை (_V)"
804813
805 #: ../src/resources/ui/virt-viewer.ui.h:10
814 #: src/resources/ui/virt-viewer.ui:180
806815 msgid "_Full screen"
807816 msgstr ""
808817
809 #: ../src/resources/ui/virt-viewer.ui.h:11
818 #: src/resources/ui/virt-viewer.ui:191
810819 msgid "_Zoom"
811820 msgstr "அளவிடு (_Z)"
812821
813 #: ../src/resources/ui/virt-viewer.ui.h:12
822 #: src/resources/ui/virt-viewer.ui:201
814823 msgid "Zoom _In"
815824 msgstr ""
816825
817 #: ../src/resources/ui/virt-viewer.ui.h:13
826 #: src/resources/ui/virt-viewer.ui:212
818827 msgid "Zoom _Out"
819828 msgstr ""
820829
821 #: ../src/resources/ui/virt-viewer.ui.h:14
830 #: src/resources/ui/virt-viewer.ui:229
822831 msgid "_Normal Size"
823832 msgstr ""
824833
825 #: ../src/resources/ui/virt-viewer.ui.h:15
834 #: src/resources/ui/virt-viewer.ui:246
826835 msgid "_Displays"
827836 msgstr ""
828837
829 #: ../src/resources/ui/virt-viewer.ui.h:16
838 #: src/resources/ui/virt-viewer.ui:255
830839 msgid "Release cursor"
831840 msgstr "கர்சரை விடு"
832841
833 #: ../src/resources/ui/virt-viewer.ui.h:17
842 #: src/resources/ui/virt-viewer.ui:270
834843 msgid "_Send key"
835844 msgstr "விசையை அனுப்பு (_S)"
836845
837 #: ../src/resources/ui/virt-viewer.ui.h:18
846 #: src/resources/ui/virt-viewer.ui:279
838847 msgid "_Help"
839848 msgstr "உதவி (_H)"
840849
841 #: ../src/resources/ui/virt-viewer.ui.h:19
850 #: src/resources/ui/virt-viewer.ui:290
842851 msgid "_Guest Details"
843852 msgstr ""
844853
845 #: ../src/resources/ui/virt-viewer.ui.h:20
854 #: src/resources/ui/virt-viewer.ui:297
846855 msgid "_About"
847856 msgstr ""
848857
849 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
858 #: src/resources/ui/virt-viewer-guest-details.ui:7
850859 msgid "Guest Details"
851860 msgstr ""
852861
853 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
862 #: src/resources/ui/virt-viewer-guest-details.ui:56
854863 msgid "Name:"
855864 msgstr ""
856865
857 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
866 #: src/resources/ui/virt-viewer-guest-details.ui:68
858867 msgid "GUID:"
859868 msgstr ""
860869
861 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
870 #: src/resources/ui/virt-viewer-vm-connection.ui:7
862871 msgid "Choose a virtual machine"
863872 msgstr ""
864873
865 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
874 #: src/resources/ui/virt-viewer-vm-connection.ui:96
866875 msgid "Available virtual machines"
867876 msgstr ""
868877
869 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
878 #: src/resources/ui/virt-viewer-preferences.ui:8
870879 msgid "Preferences"
871880 msgstr ""
872881
873 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
882 #: src/resources/ui/virt-viewer-preferences.ui:48
874883 msgid "Folder sharing"
875884 msgstr ""
876885
877 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
886 #: src/resources/ui/virt-viewer-preferences.ui:70
878887 msgid "Share folder"
879888 msgstr ""
880889
881 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
890 #: src/resources/ui/virt-viewer-preferences.ui:82
882891 msgid "Read-only"
883892 msgstr ""
884893
885 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
894 #: src/resources/ui/virt-viewer-preferences.ui:96
895 msgid "Share clipboard"
896 msgstr ""
897
898 #: src/resources/ui/virt-viewer-preferences.ui:132
886899 msgid "Spice"
887900 msgstr ""
901
902 #~ msgid "virt-manager.org"
903 #~ msgstr "virt-manager.org"
Binary diff not shown
+269
-253
po/te.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
88 # Sudheesh Singanamalla <sudheesh1995@outlook.com>, 2013
99 msgid ""
1010 msgstr ""
11 "Project-Id-Version: PACKAGE VERSION\n"
12 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
14 "PO-Revision-Date: 2015-02-20 08:11-0500\n"
11 "Project-Id-Version: virt-viewer 9.0\n"
12 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
13 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
14 "PO-Revision-Date: 2015-02-20 08:11+0000\n"
1515 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1616 "Language-Team: Telugu (http://www.transifex.com/projects/p/virt-viewer/"
1717 "language/te/)\n"
2020 "Content-Type: text/plain; charset=UTF-8\n"
2121 "Content-Transfer-Encoding: 8bit\n"
2222 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23 "X-Generator: Zanata 3.9.6\n"
24
25 #: ../data/remote-viewer.appdata.xml.in.h:1
26 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
23 "X-Generator: Zanata 4.6.2\n"
24
25 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
26 #: src/remote-viewer-main.c:39
2727 msgid "Remote Viewer"
2828 msgstr "దూరస్థ దర్శని"
2929
30 #: ../data/remote-viewer.appdata.xml.in.h:2
30 #: data/remote-viewer.appdata.xml.in:7
3131 msgid "Remotely access virtual machines"
3232 msgstr ""
3333
34 #: ../data/remote-viewer.appdata.xml.in.h:3
34 #: data/remote-viewer.appdata.xml.in:9
3535 msgid ""
3636 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3737 "time it supports guest OS using the VNC or SPICE protocols. Further "
4040 "using SSL/TLS encryption."
4141 msgstr ""
4242
43 #: ../data/remote-viewer.desktop.in.h:2
43 #: data/remote-viewer.desktop.in:4
4444 msgid "Access remote desktops"
4545 msgstr "దూరపు డెస్క్టాప్లు యాక్సెస్"
4646
47 #: ../data/virt-viewer-mime.xml.in.h:1
48 msgid "Virt-Viewer connection file"
49 msgstr "Virt-Viewer నియంత్రిక ఫైల్"
50
51 #: ../src/remote-viewer-iso-list-dialog.c:160
47 #: src/remote-viewer-iso-list-dialog.c:156
5248 msgid "Failed to fetch CD names"
5349 msgstr ""
5450
55 #: ../src/remote-viewer-iso-list-dialog.c:212
51 #: src/remote-viewer-iso-list-dialog.c:205
5652 msgid "<b>Loading...</b>"
5753 msgstr ""
5854
59 #: ../src/remote-viewer-iso-list-dialog.c:285
55 #: src/remote-viewer-iso-list-dialog.c:276
6056 msgid "Refresh"
6157 msgstr ""
6258
63 #: ../src/remote-viewer-iso-list-dialog.c:286
59 #: src/remote-viewer-iso-list-dialog.c:277
6460 msgid "Close"
6561 msgstr ""
6662
67 #: ../src/remote-viewer-iso-list-dialog.c:306
63 #: src/remote-viewer-iso-list-dialog.c:297
6864 msgid "Unspecified error"
6965 msgstr ""
7066
71 #: ../src/remote-viewer-iso-list-dialog.c:328
67 #: src/remote-viewer-iso-list-dialog.c:318
7268 msgid "Failed to change CD"
7369 msgstr ""
7470
75 #: ../src/remote-viewer-iso-list-dialog.c:380
71 #: src/remote-viewer-iso-list-dialog.c:370
7672 msgid "Change CD"
7773 msgstr ""
7874
79 #: ../src/remote-viewer.c:118
75 #: src/remote-viewer.c:116
8076 msgid "Set window title"
8177 msgstr "విండోలో శీర్షిక సెట్ చెయ్యండి"
8278
83 #: ../src/remote-viewer.c:125
79 #: src/remote-viewer.c:123
8480 msgid "Remote viewer client"
8581 msgstr ""
8682
87 #: ../src/remote-viewer.c:150
88 #, c-format
83 #: src/remote-viewer.c:148
8984 msgid ""
9085 "\n"
9186 "Error: can't handle multiple URIs\n"
9287 "\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
90 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9691 #, c-format
9792 msgid "Run '%s --help' to see a full list of available command line options\n"
9893 msgstr ""
9994
100 #: ../src/remote-viewer.c:435
95 #: src/remote-viewer.c:429
10196 msgid "failed to parse ovirt uri"
10297 msgstr ""
10398
104 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
99 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
105100 msgid "Authentication was cancelled"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:480
103 #: src/remote-viewer.c:472
109104 #, c-format
110105 msgid "oVirt VM %s is not running"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:494
108 #: src/remote-viewer.c:486
114109 #, c-format
115110 msgid "oVirt VM %s has no display"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:520
113 #: src/remote-viewer.c:512
119114 #, c-format
120115 msgid "oVirt VM %s has no host information"
121116 msgstr ""
122117
123 #: ../src/remote-viewer.c:531
124 #, c-format
125 msgid "oVirt VM %s has unknown display type: %d"
126 msgstr ""
127
128 #: ../src/remote-viewer.c:713
118 #: src/remote-viewer.c:523
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %u"
121 msgstr ""
122
123 #: src/remote-viewer.c:690
124 msgid "Couldn't open oVirt session: "
125 msgstr ""
126
127 #: src/remote-viewer.c:718
129128 msgid "Failed to initiate connection"
130129 msgstr "అనుసంధానం సిద్దపరచుటకు విఫలమైంది"
131130
132 #: ../src/remote-viewer.c:742
131 #: src/remote-viewer.c:747
133132 msgid "No connection was chosen"
134133 msgstr ""
135134
136 #: ../src/remote-viewer.c:759
135 #: src/remote-viewer.c:764
137136 msgid "Failed to read stdin: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:776
139 #: src/remote-viewer.c:781
141140 #, c-format
142141 msgid "Invalid file %s: "
143142 msgstr ""
144143
145 #: ../src/remote-viewer.c:786
144 #: src/remote-viewer.c:791
146145 msgid "Cannot determine the connection type from URI"
147146 msgstr "URI నుండి అనుసంధానం రకంను నిర్థారించలేము"
148147
149 #: ../src/remote-viewer.c:792
150 msgid "Couldn't open oVirt session: "
151 msgstr ""
152
153 #: ../src/remote-viewer.c:815
148 #: src/remote-viewer.c:810
154149 #, c-format
155150 msgid "Unable to connect: %s"
156151 msgstr ""
157152
158 #.
159 #. * Local variables:
160 #. * c-indent-level: 4
161 #. * c-basic-offset: 4
162 #. * indent-tabs-mode: nil
163 #. * End:
164 #.
165 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
153 #: src/resources/ui/remote-viewer-connect.ui:6
166154 msgid "Connection details"
167155 msgstr "అనుసంధానం వివరాలు"
168156
169 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
157 #: src/resources/ui/remote-viewer-connect.ui:24
170158 msgid "Connection _Address"
171159 msgstr ""
172160
173 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
161 #: src/resources/ui/remote-viewer-connect.ui:54
174162 msgid "For example, spice://foo.example.org:5900"
175163 msgstr ""
176164
177 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
165 #: src/resources/ui/remote-viewer-connect.ui:78
178166 msgid "Recent connections"
179167 msgstr ""
180168
181 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
182 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
183 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
184 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
169 #: src/resources/ui/remote-viewer-connect.ui:120
170 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
171 #: src/resources/ui/virt-viewer-vm-connection.ui:24
172 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
185173 msgid "_Cancel"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
189 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
176 #: src/resources/ui/remote-viewer-connect.ui:134
177 #: src/resources/ui/virt-viewer-vm-connection.ui:38
190178 msgid "C_onnect"
191179 msgstr ""
192180
193 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
181 #: src/resources/ui/remote-viewer-iso-list.ui:28
194182 msgid "Loading..."
195183 msgstr ""
196184
197 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
185 #: src/resources/ui/remote-viewer-iso-list.ui:78
198186 msgid "Select ISO"
199187 msgstr ""
200188
201 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
189 #: src/resources/ui/remote-viewer-iso-list.ui:116
202190 msgid "Selected"
203191 msgstr ""
204192
205 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
206 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
193 #: src/resources/ui/remote-viewer-iso-list.ui:129
194 #: src/resources/ui/virt-viewer-vm-connection.ui:72
207195 msgid "Name"
208196 msgstr ""
209197
210 #: ../src/resources/ui/virt-viewer-about.ui.h:1
198 #: src/resources/ui/virt-viewer-about.ui:7
211199 msgid "About Virt-Viewer"
212200 msgstr ""
213201
214 #: ../src/resources/ui/virt-viewer-about.ui.h:2
202 #: src/resources/ui/virt-viewer-about.ui:16
215203 msgid ""
216204 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
217205 "Copyright (C) 2007-2014 Red Hat, Inc."
218206 msgstr ""
219207
220 #: ../src/resources/ui/virt-viewer-about.ui.h:4
208 #: src/resources/ui/virt-viewer-about.ui:18
221209 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
222210 msgstr "GTK-VNC, SPICE-GTK మరియు libvirtతో నిర్మించబడిన వొక రిమోట్ డెస్కుటాప్ క్లైంట్"
223211
224 #: ../src/resources/ui/virt-viewer-about.ui.h:5
225 msgid "virt-manager.org"
226 msgstr "virt-manager.org"
227
228 #: ../src/resources/ui/virt-viewer-about.ui.h:6
212 #: src/resources/ui/virt-viewer-about.ui:20
213 msgid "gitlab.com/virt-viewer/virt-viewer"
214 msgstr ""
215
216 #: src/resources/ui/virt-viewer-about.ui:21
229217 msgid ""
230218 "This program is free software; you can redistribute it and/or modify\n"
231219 "it under the terms of the GNU General Public License as published by\n"
255243 "పొందకపోతే, Free Software Foundation, Inc., Temple Place,\n"
256244 "Suite 330, Boston, MA 02111-1307 USAకు వ్రాయండి.\n"
257245
258 #: ../src/resources/ui/virt-viewer-about.ui.h:20
246 #: src/resources/ui/virt-viewer-about.ui:38
259247 msgid "The Fedora Translation Team"
260248 msgstr "Fedora అనువాద సమూహం"
261249
262 #: ../src/virt-viewer-app.c:459
250 #: src/virt-viewer-app.c:594
263251 msgid "Do you want to close the session?"
264252 msgstr "సెషన్ మూసివేయాలనుకుంటున్నారా ?"
265253
266 #: ../src/virt-viewer-app.c:461
254 #: src/virt-viewer-app.c:596
267255 msgid "Do not ask me again"
268256 msgstr "నన్ను మళ్ళీ అడగవద్దు"
269257
270 #: ../src/virt-viewer-app.c:655
258 #: src/virt-viewer-app.c:767
271259 #, c-format
272260 msgid "Address is too long for unix socket_path: %s"
273261 msgstr ""
274262
275 #: ../src/virt-viewer-app.c:665
263 #: src/virt-viewer-app.c:777
276264 #, c-format
277265 msgid "Creating unix socket failed: %s"
278266 msgstr ""
279267
280 #: ../src/virt-viewer-app.c:671
268 #: src/virt-viewer-app.c:783
281269 #, c-format
282270 msgid "Connecting to unix socket failed: %s"
283271 msgstr ""
284272
285 #: ../src/virt-viewer-app.c:955
273 #: src/virt-viewer-app.c:1077
286274 #, c-format
287275 msgid "Waiting for display %d..."
288276 msgstr "ప్రదర్శన %d కొరకు వేచివుంది..."
289277
290 #: ../src/virt-viewer-app.c:1062
278 #: src/virt-viewer-app.c:1193
291279 #, c-format
292280 msgid "Unsupported graphic type '%s'"
293281 msgstr ""
294282
295 #: ../src/virt-viewer-app.c:1146
283 #: src/virt-viewer-app.c:1277
296284 msgid "Connect to ssh failed."
297285 msgstr "ssh క్షేత్రముకు అనుసంధానించు."
298286
299 #: ../src/virt-viewer-app.c:1161
287 #: src/virt-viewer-app.c:1292
300288 #, c-format
301289 msgid "Can't connect to channel: %s"
302290 msgstr ""
303291
304 #: ../src/virt-viewer-app.c:1163
292 #: src/virt-viewer-app.c:1294
305293 msgid "only SSH or unix socket connection supported."
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1176
296 #: src/virt-viewer-app.c:1311
309297 msgid "Connect to channel unsupported."
310298 msgstr "చానల్ అనుసంధానంకు తోడ్పాటులేదు."
311299
312 #: ../src/virt-viewer-app.c:1238
300 #: src/virt-viewer-app.c:1376
313301 msgid "Display can only be attached through libvirt with --attach"
314302 msgstr ""
315303
316 #: ../src/virt-viewer-app.c:1263
304 #: src/virt-viewer-app.c:1401
317305 msgid "Connecting to graphic server"
318306 msgstr "గ్రాఫిక్ సేవికకు అనుసంధానమౌతోంది"
319307
320 #: ../src/virt-viewer-app.c:1362
308 #: src/virt-viewer-app.c:1500
321309 msgid "Guest domain has shutdown"
322310 msgstr "అతిథి డొమైన్ మూసివేసింది"
323311
324 #: ../src/virt-viewer-app.c:1423
312 #: src/virt-viewer-app.c:1561
325313 msgid "Connected to graphic server"
326314 msgstr "గ్రాఫిక్ సేవికకు అనుసంధానమైంది"
327315
328 #: ../src/virt-viewer-app.c:1452
316 #: src/virt-viewer-app.c:1590
329317 #, c-format
330318 msgid "Unable to connect to the graphic server %s"
331319 msgstr "గ్రాఫిక్ సేవిక %sకు అనుసంధానం కాలేక పోయింది"
332320
333 #: ../src/virt-viewer-app.c:1478
321 #: src/virt-viewer-app.c:1616
334322 #, c-format
335323 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
336324 msgstr ""
337325
338 #: ../src/virt-viewer-app.c:1492
326 #: src/virt-viewer-app.c:1630
339327 #, c-format
340328 msgid "Unable to authenticate with remote desktop server: %s"
341329 msgstr "రిమోట్ డెస్కుటాప్ సేవికతో ధృవీకరించలేక పోయింది: %s"
342330
343 #: ../src/virt-viewer-app.c:1500
331 #: src/virt-viewer-app.c:1638
344332 #, c-format
345333 msgid "USB redirection error: %s"
346334 msgstr "USB రీడైరెక్షన్ దోషం: %s"
347335
348 #: ../src/virt-viewer-app.c:1834
336 #: src/virt-viewer-app.c:2026
349337 #, c-format
350338 msgid "Zoom level must be within %d-%d\n"
351339 msgstr "జూమ్ స్థాయి తప్పకుండా %d-%d మధ్యన వుండాలి\n"
352340
353 #: ../src/virt-viewer-app.c:1887
341 #: src/virt-viewer-app.c:2081
354342 #, c-format
355343 msgid "%s\n"
356344 msgstr ""
357345
358 #: ../src/virt-viewer-app.c:1897
346 #: src/virt-viewer-app.c:2091
359347 #, c-format
360348 msgid "%s version %s"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2321
351 #: src/virt-viewer-app.c:2545
364352 #, c-format
365353 msgid "Display _%d"
366354 msgstr ""
367355
368 #: ../src/virt-viewer-app.c:2577
356 #: src/virt-viewer-app.c:2829
369357 #, c-format
370358 msgid "Invalid kiosk-quit argument: %s"
371359 msgstr "చెల్లని kiosk-quit ఆర్గుమెంట్: %s"
372360
373 #: ../src/virt-viewer-app.c:2588
361 #: src/virt-viewer-app.c:2840
374362 msgid "Display version information"
375363 msgstr "వర్షన్ సమాచారం ప్రదర్శించు"
376364
377 #: ../src/virt-viewer-app.c:2590
365 #: src/virt-viewer-app.c:2842
378366 msgid "Zoom level of window, in percentage"
379367 msgstr "విండో యొక్క జూమ్ స్థాయి, శాతంలో"
380368
381 #: ../src/virt-viewer-app.c:2592
369 #: src/virt-viewer-app.c:2844
382370 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
383371 msgstr "పూర్తి తెర రీతినందు తెరువుము (క్లైంట్‌కు అమరుటకు అతిథి రిజొల్యూషన్ సర్దుబాటుచేయి)"
384372
385 #: ../src/virt-viewer-app.c:2594
373 #: src/virt-viewer-app.c:2846
386374 msgid "Customise hotkeys"
387375 msgstr "అనుకూలీకరించి హాట్కీస్"
388376
389 #: ../src/virt-viewer-app.c:2596
377 #: src/virt-viewer-app.c:2848
390378 msgid "Enable kiosk mode"
391379 msgstr "kiosk రీతిని చేతనం చేయి"
392380
393 #: ../src/virt-viewer-app.c:2598
381 #: src/virt-viewer-app.c:2850
394382 msgid "Quit on given condition in kiosk mode"
395383 msgstr "ఇచ్చిన నియమంపై kiosk రీతినందు నిష్క్రమించు"
396384
397 #: ../src/virt-viewer-app.c:2598
385 #: src/virt-viewer-app.c:2850
398386 msgid "<never|on-disconnect>"
399387 msgstr "<never|on-disconnect>"
400388
401 #: ../src/virt-viewer-app.c:2600
389 #: src/virt-viewer-app.c:2852
402390 msgid "Display verbose information"
403391 msgstr "వెర్బోస్ సమాచారమును ప్రదర్శించుము"
404392
405 #: ../src/virt-viewer-app.c:2602
393 #: src/virt-viewer-app.c:2854
406394 msgid "Display debugging information"
407395 msgstr "డీబగ్గింగ్ సమాచారమును ప్రదర్శించుము"
408396
409 #: ../src/virt-viewer-auth.c:89
397 #: src/virt-viewer-auth.c:89
410398 #, c-format
411399 msgid ""
412400 "Authentication is required for the %s connection to:\n"
415403 "\n"
416404 msgstr ""
417405
418 #: ../src/virt-viewer-auth.c:93
406 #: src/virt-viewer-auth.c:93
419407 #, c-format
420408 msgid "Authentication is required for the %s connection:\n"
421409 msgstr ""
422410
423 #.
424 #. * Local variables:
425 #. * c-indent-level: 4
426 #. * c-basic-offset: 4
427 #. * indent-tabs-mode: nil
428 #. * End:
429 #.
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
411 #: src/resources/ui/virt-viewer-auth.ui:7
431412 msgid "Authentication required"
432413 msgstr "ధృవీకరణము అవసరమైంది"
433414
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
415 #: src/resources/ui/virt-viewer-auth.ui:42
435416 msgid "_OK"
436417 msgstr ""
437418
438 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
439 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
440 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
419 #: src/resources/ui/virt-viewer-auth.ui:71
420 #: src/resources/ui/virt-viewer-guest-details.ui:82
421 #: src/resources/ui/virt-viewer-guest-details.ui:96
422 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
441423 msgid "label"
442424 msgstr "లేబుల్"
443425
444 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
426 #: src/resources/ui/virt-viewer-auth.ui:93
445427 msgid "Password:"
446428 msgstr "సంకేతపదము:"
447429
448 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
430 #: src/resources/ui/virt-viewer-auth.ui:105
449431 msgid "Username:"
450432 msgstr "వినియోగదారినామము:"
451433
452 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
434 #: src/resources/ui/virt-viewer-auth.ui:137
453435 msgid "Show password"
454436 msgstr ""
455437
456 #: ../src/virt-viewer-display-vnc.c:134
438 #: src/virt-viewer-display-vnc.c:130
457439 msgid "VNC does not provide GUID"
458440 msgstr ""
459441
460 #: ../src/virt-viewer-file-transfer-dialog.c:128
442 #: src/virt-viewer-display-vte.c:181
443 msgid "Console support is compiled out!"
444 msgstr ""
445
446 #: src/virt-viewer-file-transfer-dialog.c:124
461447 msgid "File Transfers"
462448 msgstr ""
463449
464 #: ../src/virt-viewer-file-transfer-dialog.c:154
450 #: src/virt-viewer-file-transfer-dialog.c:150
465451 msgid "Transferring 1 file..."
466452 msgstr ""
467453
468 #: ../src/virt-viewer-file-transfer-dialog.c:156
469 #, c-format
470 msgid "Transferring %d file of %d..."
471 msgid_plural "Transferring %d files of %d..."
454 #: src/virt-viewer-file-transfer-dialog.c:152
455 #, c-format
456 msgid "Transferring %u file of %u..."
457 msgid_plural "Transferring %u files of %u..."
472458 msgstr[0] ""
473
474 #: ../src/virt-viewer-file-transfer-dialog.c:228
475 #, c-format
476 msgid "An error caused the following file transfers to fail:%s"
477 msgstr ""
478
479 #: ../src/virt-viewer-main.c:38
459 msgstr[1] ""
460
461 #: src/virt-viewer-file-transfer-dialog.c:225
462 msgid "An error caused the following file transfers to fail:"
463 msgstr ""
464
465 #: src/virt-viewer-main.c:38
480466 msgid "Virt Viewer"
481467 msgstr "వర్ట్ వ్యూయర్"
482468
483 #: ../src/virt-viewer-session-spice.c:704
469 #: src/virt-viewer-session-spice.c:731
484470 msgid "Invalid password"
485471 msgstr ""
486472
487 #. Create the widgets
488 #: ../src/virt-viewer-session-spice.c:802
473 #: src/virt-viewer-session-spice.c:829
489474 msgid "Select USB devices for redirection"
490475 msgstr "రీడైరెక్షన్ కొరకు USB పరికరాలను యెంపికచేయి"
491476
492 #: ../src/virt-viewer-session-spice.c:804
493 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
477 #: src/virt-viewer-session-spice.c:831
478 #: src/resources/ui/virt-viewer-guest-details.ui:23
494479 msgid "_Close"
495480 msgstr ""
496481
497 #: ../src/virt-viewer-session-vnc.c:162
498 #, c-format
499 msgid "Unsupported authentication type %d"
500 msgstr "మద్దతీయని దృవీకరణ రకము %d"
501
502 #: ../src/virt-viewer-vm-connection.c:64
482 #: src/virt-viewer-session-spice.c:1019
483 msgid "Serial"
484 msgstr ""
485
486 #: src/virt-viewer-session-spice.c:1021
487 msgid "QEMU human monitor"
488 msgstr ""
489
490 #: src/virt-viewer-session-spice.c:1023
491 msgid "QEMU debug console"
492 msgstr ""
493
494 #: src/virt-viewer-session-vnc.c:158
495 #, c-format
496 msgid "Unsupported authentication type %u"
497 msgstr ""
498
499 #: src/virt-viewer-vm-connection.c:64
503500 msgid "No running virtual machine found"
504501 msgstr ""
505502
506 #: ../src/virt-viewer-vm-connection.c:93
503 #: src/virt-viewer-vm-connection.c:93
507504 msgid "No virtual machine was chosen"
508505 msgstr ""
509506
510 #: ../src/virt-viewer-window.c:544
507 #: src/virt-viewer-window.c:621
511508 msgid "Ctrl+Alt+_Del"
512509 msgstr "Ctrl+Alt+_Del"
513510
514 #: ../src/virt-viewer-window.c:545
511 #: src/virt-viewer-window.c:622
515512 msgid "Ctrl+Alt+_Backspace"
516513 msgstr "Ctrl+Alt+_Backspace"
517514
518 #: ../src/virt-viewer-window.c:547
515 #: src/virt-viewer-window.c:624
519516 msgid "Ctrl+Alt+F_1"
520517 msgstr "Ctrl+Alt+F_1"
521518
522 #: ../src/virt-viewer-window.c:548
519 #: src/virt-viewer-window.c:625
523520 msgid "Ctrl+Alt+F_2"
524521 msgstr "Ctrl+Alt+F_2"
525522
526 #: ../src/virt-viewer-window.c:549
523 #: src/virt-viewer-window.c:626
527524 msgid "Ctrl+Alt+F_3"
528525 msgstr "Ctrl+Alt+F_3"
529526
530 #: ../src/virt-viewer-window.c:550
527 #: src/virt-viewer-window.c:627
531528 msgid "Ctrl+Alt+F_4"
532529 msgstr "Ctrl+Alt+F_4"
533530
534 #: ../src/virt-viewer-window.c:551
531 #: src/virt-viewer-window.c:628
535532 msgid "Ctrl+Alt+F_5"
536533 msgstr "Ctrl+Alt+F_5"
537534
538 #: ../src/virt-viewer-window.c:552
535 #: src/virt-viewer-window.c:629
539536 msgid "Ctrl+Alt+F_6"
540537 msgstr "Ctrl+Alt+F_6"
541538
542 #: ../src/virt-viewer-window.c:553
539 #: src/virt-viewer-window.c:630
543540 msgid "Ctrl+Alt+F_7"
544541 msgstr "Ctrl+Alt+F_7"
545542
546 #: ../src/virt-viewer-window.c:554
543 #: src/virt-viewer-window.c:631
547544 msgid "Ctrl+Alt+F_8"
548545 msgstr "Ctrl+Alt+F_8"
549546
550 #: ../src/virt-viewer-window.c:555
547 #: src/virt-viewer-window.c:632
551548 msgid "Ctrl+Alt+F_9"
552549 msgstr "Ctrl+Alt+F_9"
553550
554 #: ../src/virt-viewer-window.c:556
551 #: src/virt-viewer-window.c:633
555552 msgid "Ctrl+Alt+F1_0"
556553 msgstr "Ctrl+Alt+F1_0"
557554
558 #: ../src/virt-viewer-window.c:557
555 #: src/virt-viewer-window.c:634
559556 msgid "Ctrl+Alt+F11"
560557 msgstr "Ctrl+Alt+F11"
561558
562 #: ../src/virt-viewer-window.c:558
559 #: src/virt-viewer-window.c:635
563560 msgid "Ctrl+Alt+F12"
564561 msgstr "Ctrl+Alt+F12"
565562
566 #: ../src/virt-viewer-window.c:953
563 #: src/virt-viewer-window.c:637
564 msgid "_PrintScreen"
565 msgstr ""
566
567 #: src/virt-viewer-window.c:1030
567568 #, c-format
568569 msgid "Unable to determine image format for file '%s'"
569570 msgstr ""
570571
571 #: ../src/virt-viewer-window.c:980
572 #: src/virt-viewer-window.c:1053
573 msgid "Save screenshot"
574 msgstr ""
575
576 #: src/virt-viewer-window.c:1057
572577 msgid "_Save"
573578 msgstr ""
574579
575 #: ../src/virt-viewer-window.c:988
580 #: src/virt-viewer-window.c:1065
576581 msgid "Screenshot.png"
577582 msgstr ""
578583
579 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
584 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
580585 msgid "Unknown"
581586 msgstr ""
582587
583 #: ../src/virt-viewer-window.c:1152
588 #: src/virt-viewer-window.c:1237
584589 msgid "Unable to connnect to oVirt"
585590 msgstr ""
586591
587 #: ../src/virt-viewer-window.c:1175
592 #: src/virt-viewer-window.c:1260
588593 msgid "Disconnect"
589594 msgstr "అననుసంధానించు"
590595
591 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
596 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
592597 msgid "USB device selection"
593598 msgstr "USB పరికర యెంపిక"
594599
595 #: ../src/virt-viewer-window.c:1193
600 #: src/virt-viewer-window.c:1278
596601 msgid "Send key combination"
597602 msgstr "కీ జోడీను పంపు"
598603
599 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
604 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
600605 msgid "Leave fullscreen"
601606 msgstr "నిండుతెర విడు"
602607
603 #: ../src/virt-viewer-window.c:1279
608 #: src/virt-viewer-window.c:1364
604609 msgid "Ctrl+Alt"
605610 msgstr "Ctrl+Alt"
606611
607 #: ../src/virt-viewer-window.c:1282
612 #: src/virt-viewer-window.c:1367
608613 #, c-format
609614 msgid "(Press %s to release pointer)"
610615 msgstr "(సూచీను విడుదల చేయుటకు %s వత్తండి)"
611616
612 #. translators:
613 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
614 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
615 #.
616 #: ../src/virt-viewer-window.c:1293
617 #: src/virt-viewer-window.c:1378
617618 #, c-format
618619 msgid "%s%s%s - %s"
619620 msgstr "%s%s%s - %s"
620621
621 #. translators: <space>
622 #: ../src/virt-viewer-window.c:1297
622 #: src/virt-viewer-window.c:1382
623623 msgid " "
624624 msgstr " "
625625
626 #: ../src/virt-viewer-file.c:862
626 #: src/virt-viewer-file.c:875
627627 #, c-format
628628 msgid ""
629629 "At least %s version %s is required to setup this connection, see %s for "
630630 "details"
631631 msgstr ""
632632
633 #: ../src/virt-viewer-file.c:870
633 #: src/virt-viewer-file.c:883
634634 #, c-format
635635 msgid "At least %s version %s is required to setup this connection"
636636 msgstr "కనీసం% s వెర్షన్% s వద్ద ఈ కనెక్షన్ని సెటప్ చెయ్యడానికి అవసరం"
637637
638 #: ../src/virt-viewer.c:133
638 #: src/virt-viewer.c:131
639639 msgid "Direct connection with no automatic tunnels"
640640 msgstr "ఎటువంటి స్వయంచాలక టన్నెల్సు లేకుండా నేరుగా అనుసంధానము"
641641
642 #: ../src/virt-viewer.c:135
642 #: src/virt-viewer.c:133
643643 msgid "Attach to the local display using libvirt"
644644 msgstr "libvirt వుపయోగించి స్థానిక ప్రదర్శనకు అనుబందించు"
645645
646 #: ../src/virt-viewer.c:137
646 #: src/virt-viewer.c:135
647647 msgid "Connect to hypervisor"
648648 msgstr "హైపర్విజర్‌కు అనుసంధానమవ్వు"
649649
650 #: ../src/virt-viewer.c:139
650 #: src/virt-viewer.c:137
651651 msgid "Wait for domain to start"
652652 msgstr "ప్రారంభమగుటకు డొమైన్ కొరకు వేచివుండుము"
653653
654 #: ../src/virt-viewer.c:141
654 #: src/virt-viewer.c:139
655655 msgid "Reconnect to domain upon restart"
656656 msgstr "పునఃప్రారంభముపై డొమైన్‌కు తిరిగిఅనుసంధానమవ్వు"
657657
658 #: ../src/virt-viewer.c:143
658 #: src/virt-viewer.c:141
659659 msgid "Select the virtual machine only by its name"
660660 msgstr ""
661661
662 #: ../src/virt-viewer.c:145
662 #: src/virt-viewer.c:143
663663 msgid "Select the virtual machine only by its id"
664664 msgstr ""
665665
666 #: ../src/virt-viewer.c:147
666 #: src/virt-viewer.c:145
667667 msgid "Select the virtual machine only by its uuid"
668668 msgstr ""
669669
670 #: ../src/virt-viewer.c:154
670 #: src/virt-viewer.c:152
671671 msgid "Virtual machine graphical console"
672672 msgstr ""
673673
674 #: ../src/virt-viewer.c:173
674 #: src/virt-viewer.c:171
675675 #, c-format
676676 msgid ""
677677 "\n"
679679 "\n"
680680 msgstr ""
681681
682 #: ../src/virt-viewer.c:185
682 #: src/virt-viewer.c:183
683683 #, c-format
684684 msgid ""
685685 "\n"
687687 "\n"
688688 msgstr ""
689689
690 #: ../src/virt-viewer.c:300
690 #: src/virt-viewer.c:296
691691 msgid "Waiting for guest domain to re-start"
692692 msgstr "అతిథి డొమైన్ పునఃప్రారంభం కొరకు వేచివుంది"
693693
694 #: ../src/virt-viewer.c:554
694 #: src/virt-viewer.c:550
695695 #, c-format
696696 msgid "Cannot determine the graphic type for the guest %s"
697697 msgstr "అతిథి %s కొరకు గ్రాఫిక్ రకంను నిర్థారించలేక పోయింది"
698698
699 #: ../src/virt-viewer.c:603
699 #: src/virt-viewer.c:599
700700 #, c-format
701701 msgid "Cannot determine the host for the guest %s"
702702 msgstr "అతిథి %s కొరకు అతిథేయను నిర్ధారించలేదు"
703703
704 #: ../src/virt-viewer.c:631
704 #: src/virt-viewer.c:627
705705 #, c-format
706706 msgid "Guest '%s' is not reachable"
707707 msgstr ""
708708
709 #: ../src/virt-viewer.c:860
709 #: src/virt-viewer.c:856
710710 #, c-format
711711 msgid "Virtual machine %s is not running"
712712 msgstr ""
713713
714 #: ../src/virt-viewer.c:884
714 #: src/virt-viewer.c:881
715715 msgid "Waiting for libvirt to start"
716716 msgstr "libvirt ప్రారంభించడానికి కోసం వేచి ఉన్నారు"
717717
718 #: ../src/virt-viewer.c:888
718 #: src/virt-viewer.c:885
719719 msgid "Finding guest domain"
720720 msgstr "అతిథి డొమైన్‌ కనుగొనుచున్నది"
721721
722 #: ../src/virt-viewer.c:892
722 #: src/virt-viewer.c:889
723723 msgid "Waiting for guest domain to be created"
724724 msgstr "అతిథి డొమైన్ సృష్టించబడుటకు వేచివుంది"
725725
726 #: ../src/virt-viewer.c:918
726 #: src/virt-viewer.c:921
727727 msgid "Checking guest domain status"
728728 msgstr "అతిథి డొమైన్‌ స్థితి పరిశీలిస్తోంది"
729729
730 #: ../src/virt-viewer.c:921
730 #: src/virt-viewer.c:924
731731 msgid "Cannot get guest state"
732732 msgstr ""
733733
734 #: ../src/virt-viewer.c:927
734 #: src/virt-viewer.c:930
735735 msgid "Waiting for guest domain to start"
736736 msgstr "అతిథి డొమైన్ ప్రారంభమగుటకు వేచివుంది"
737737
738 #: ../src/virt-viewer.c:1040
738 #: src/virt-viewer.c:1044
739739 #, c-format
740740 msgid "Unable to connect to libvirt with URI: %s."
741741 msgstr ""
742742
743 #: ../src/virt-viewer.c:1041
743 #: src/virt-viewer.c:1045
744744 msgid "[none]"
745745 msgstr "[ఏదీకాదు]"
746746
747 #: ../src/virt-viewer.c:1048
747 #: src/virt-viewer.c:1052
748748 msgid "Authentication failed."
749749 msgstr ""
750750
751 #: ../src/virt-viewer.c:1108
751 #: src/virt-viewer.c:1112
752752 msgid "Failed to connect: "
753753 msgstr ""
754754
755 #.
756 #. * Local variables:
757 #. * c-indent-level: 4
758 #. * c-basic-offset: 4
759 #. * indent-tabs-mode: nil
760 #. * End:
761 #.
762 #: ../src/resources/ui/virt-viewer.ui.h:1
755 #: src/resources/ui/virt-viewer.ui:28
763756 msgid "_File"
764757 msgstr "ఫైలు (_F)"
765758
766 #: ../src/resources/ui/virt-viewer.ui.h:2
759 #: src/resources/ui/virt-viewer.ui:41
767760 msgid "_Screenshot"
768761 msgstr ""
769762
770 #: ../src/resources/ui/virt-viewer.ui.h:3
763 #: src/resources/ui/virt-viewer.ui:52
771764 msgid "_USB device selection"
772765 msgstr ""
773766
774 #: ../src/resources/ui/virt-viewer.ui.h:4
767 #: src/resources/ui/virt-viewer.ui:62
775768 msgid "Smartcard insertion"
776769 msgstr "స్మార్టుకార్డ్ చొప్పింత"
777770
778 #: ../src/resources/ui/virt-viewer.ui.h:5
771 #: src/resources/ui/virt-viewer.ui:72
779772 msgid "Smartcard removal"
780773 msgstr "స్మార్టుకార్డ్ తీసివేత"
781774
782 #: ../src/resources/ui/virt-viewer.ui.h:6
775 #: src/resources/ui/virt-viewer.ui:80
783776 msgid "_Change CD"
784777 msgstr ""
785778
786 #: ../src/resources/ui/virt-viewer.ui.h:7
779 #: src/resources/ui/virt-viewer.ui:90
787780 msgid "_Preferences"
788781 msgstr ""
789782
790 #: ../src/resources/ui/virt-viewer.ui.h:8
783 #: src/resources/ui/virt-viewer.ui:103
791784 msgid "_Quit"
792785 msgstr ""
793786
794 #: ../src/resources/ui/virt-viewer.ui.h:9
787 #: src/resources/ui/virt-viewer.ui:119
788 msgid "_Machine"
789 msgstr ""
790
791 #: src/resources/ui/virt-viewer.ui:129
792 msgid "_Pause"
793 msgstr ""
794
795 #: src/resources/ui/virt-viewer.ui:144
796 msgid "_Reset"
797 msgstr ""
798
799 #: src/resources/ui/virt-viewer.ui:153
800 msgid "_Power down"
801 msgstr ""
802
803 #: src/resources/ui/virt-viewer.ui:167
795804 msgid "_View"
796805 msgstr "దర్శించు (_V)"
797806
798 #: ../src/resources/ui/virt-viewer.ui.h:10
807 #: src/resources/ui/virt-viewer.ui:180
799808 msgid "_Full screen"
800809 msgstr ""
801810
802 #: ../src/resources/ui/virt-viewer.ui.h:11
811 #: src/resources/ui/virt-viewer.ui:191
803812 msgid "_Zoom"
804813 msgstr "జూమ్ (_Z)"
805814
806 #: ../src/resources/ui/virt-viewer.ui.h:12
815 #: src/resources/ui/virt-viewer.ui:201
807816 msgid "Zoom _In"
808817 msgstr ""
809818
810 #: ../src/resources/ui/virt-viewer.ui.h:13
819 #: src/resources/ui/virt-viewer.ui:212
811820 msgid "Zoom _Out"
812821 msgstr ""
813822
814 #: ../src/resources/ui/virt-viewer.ui.h:14
823 #: src/resources/ui/virt-viewer.ui:229
815824 msgid "_Normal Size"
816825 msgstr ""
817826
818 #: ../src/resources/ui/virt-viewer.ui.h:15
827 #: src/resources/ui/virt-viewer.ui:246
819828 msgid "_Displays"
820829 msgstr ""
821830
822 #: ../src/resources/ui/virt-viewer.ui.h:16
831 #: src/resources/ui/virt-viewer.ui:255
823832 msgid "Release cursor"
824833 msgstr "సూచీ విడుదలచేయి"
825834
826 #: ../src/resources/ui/virt-viewer.ui.h:17
835 #: src/resources/ui/virt-viewer.ui:270
827836 msgid "_Send key"
828837 msgstr "పంపు కీ(_S)"
829838
830 #: ../src/resources/ui/virt-viewer.ui.h:18
839 #: src/resources/ui/virt-viewer.ui:279
831840 msgid "_Help"
832841 msgstr "సహాయము(_H)"
833842
834 #: ../src/resources/ui/virt-viewer.ui.h:19
843 #: src/resources/ui/virt-viewer.ui:290
835844 msgid "_Guest Details"
836845 msgstr ""
837846
838 #: ../src/resources/ui/virt-viewer.ui.h:20
847 #: src/resources/ui/virt-viewer.ui:297
839848 msgid "_About"
840849 msgstr ""
841850
842 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
851 #: src/resources/ui/virt-viewer-guest-details.ui:7
843852 msgid "Guest Details"
844853 msgstr ""
845854
846 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
855 #: src/resources/ui/virt-viewer-guest-details.ui:56
847856 msgid "Name:"
848857 msgstr ""
849858
850 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
859 #: src/resources/ui/virt-viewer-guest-details.ui:68
851860 msgid "GUID:"
852861 msgstr ""
853862
854 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
863 #: src/resources/ui/virt-viewer-vm-connection.ui:7
855864 msgid "Choose a virtual machine"
856865 msgstr ""
857866
858 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
867 #: src/resources/ui/virt-viewer-vm-connection.ui:96
859868 msgid "Available virtual machines"
860869 msgstr ""
861870
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
871 #: src/resources/ui/virt-viewer-preferences.ui:8
863872 msgid "Preferences"
864873 msgstr ""
865874
866 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
875 #: src/resources/ui/virt-viewer-preferences.ui:48
867876 msgid "Folder sharing"
868877 msgstr ""
869878
870 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
879 #: src/resources/ui/virt-viewer-preferences.ui:70
871880 msgid "Share folder"
872881 msgstr ""
873882
874 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
883 #: src/resources/ui/virt-viewer-preferences.ui:82
875884 msgid "Read-only"
876885 msgstr ""
877886
878 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
887 #: src/resources/ui/virt-viewer-preferences.ui:96
888 msgid "Share clipboard"
889 msgstr ""
890
891 #: src/resources/ui/virt-viewer-preferences.ui:132
879892 msgid "Spice"
880893 msgstr ""
894
895 #~ msgid "virt-manager.org"
896 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/tg.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Tajik\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/th.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Thai\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+269
-253
po/tr.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
55 # Necdet Yücel <necdetyucel@gmail.com>, 2012
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: PACKAGE VERSION\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
11 "PO-Revision-Date: 2015-02-20 08:11-0500\n"
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: 2015-02-20 08:11+0000\n"
1212 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
1313 "Language-Team: Turkish (http://www.transifex.com/projects/p/virt-viewer/"
1414 "language/tr/)\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20 "X-Generator: Zanata 3.9.6\n"
21
22 #: ../data/remote-viewer.appdata.xml.in.h:1
23 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
20 "X-Generator: Zanata 4.6.2\n"
21
22 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
23 #: src/remote-viewer-main.c:39
2424 msgid "Remote Viewer"
2525 msgstr ""
2626
27 #: ../data/remote-viewer.appdata.xml.in.h:2
27 #: data/remote-viewer.appdata.xml.in:7
2828 msgid "Remotely access virtual machines"
2929 msgstr ""
3030
31 #: ../data/remote-viewer.appdata.xml.in.h:3
31 #: data/remote-viewer.appdata.xml.in:9
3232 msgid ""
3333 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3434 "time it supports guest OS using the VNC or SPICE protocols. Further "
3737 "using SSL/TLS encryption."
3838 msgstr ""
3939
40 #: ../data/remote-viewer.desktop.in.h:2
40 #: data/remote-viewer.desktop.in:4
4141 msgid "Access remote desktops"
4242 msgstr ""
4343
44 #: ../data/virt-viewer-mime.xml.in.h:1
45 msgid "Virt-Viewer connection file"
46 msgstr ""
47
48 #: ../src/remote-viewer-iso-list-dialog.c:160
44 #: src/remote-viewer-iso-list-dialog.c:156
4945 msgid "Failed to fetch CD names"
5046 msgstr ""
5147
52 #: ../src/remote-viewer-iso-list-dialog.c:212
48 #: src/remote-viewer-iso-list-dialog.c:205
5349 msgid "<b>Loading...</b>"
5450 msgstr ""
5551
56 #: ../src/remote-viewer-iso-list-dialog.c:285
52 #: src/remote-viewer-iso-list-dialog.c:276
5753 msgid "Refresh"
5854 msgstr ""
5955
60 #: ../src/remote-viewer-iso-list-dialog.c:286
56 #: src/remote-viewer-iso-list-dialog.c:277
6157 msgid "Close"
6258 msgstr ""
6359
64 #: ../src/remote-viewer-iso-list-dialog.c:306
60 #: src/remote-viewer-iso-list-dialog.c:297
6561 msgid "Unspecified error"
6662 msgstr ""
6763
68 #: ../src/remote-viewer-iso-list-dialog.c:328
64 #: src/remote-viewer-iso-list-dialog.c:318
6965 msgid "Failed to change CD"
7066 msgstr ""
7167
72 #: ../src/remote-viewer-iso-list-dialog.c:380
68 #: src/remote-viewer-iso-list-dialog.c:370
7369 msgid "Change CD"
7470 msgstr ""
7571
76 #: ../src/remote-viewer.c:118
72 #: src/remote-viewer.c:116
7773 msgid "Set window title"
7874 msgstr ""
7975
80 #: ../src/remote-viewer.c:125
76 #: src/remote-viewer.c:123
8177 msgid "Remote viewer client"
8278 msgstr ""
8379
84 #: ../src/remote-viewer.c:150
85 #, c-format
80 #: src/remote-viewer.c:148
8681 msgid ""
8782 "\n"
8883 "Error: can't handle multiple URIs\n"
8984 "\n"
9085 msgstr ""
9186
92 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
87 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9388 #, c-format
9489 msgid "Run '%s --help' to see a full list of available command line options\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:435
92 #: src/remote-viewer.c:429
9893 msgid "failed to parse ovirt uri"
9994 msgstr ""
10095
101 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
96 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10297 msgid "Authentication was cancelled"
10398 msgstr ""
10499
105 #: ../src/remote-viewer.c:480
100 #: src/remote-viewer.c:472
106101 #, c-format
107102 msgid "oVirt VM %s is not running"
108103 msgstr ""
109104
110 #: ../src/remote-viewer.c:494
105 #: src/remote-viewer.c:486
111106 #, c-format
112107 msgid "oVirt VM %s has no display"
113108 msgstr ""
114109
115 #: ../src/remote-viewer.c:520
110 #: src/remote-viewer.c:512
116111 #, c-format
117112 msgid "oVirt VM %s has no host information"
118113 msgstr ""
119114
120 #: ../src/remote-viewer.c:531
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %d"
123 msgstr ""
124
125 #: ../src/remote-viewer.c:713
115 #: src/remote-viewer.c:523
116 #, c-format
117 msgid "oVirt VM %s has unknown display type: %u"
118 msgstr ""
119
120 #: src/remote-viewer.c:690
121 msgid "Couldn't open oVirt session: "
122 msgstr ""
123
124 #: src/remote-viewer.c:718
126125 msgid "Failed to initiate connection"
127126 msgstr ""
128127
129 #: ../src/remote-viewer.c:742
128 #: src/remote-viewer.c:747
130129 msgid "No connection was chosen"
131130 msgstr ""
132131
133 #: ../src/remote-viewer.c:759
132 #: src/remote-viewer.c:764
134133 msgid "Failed to read stdin: "
135134 msgstr ""
136135
137 #: ../src/remote-viewer.c:776
136 #: src/remote-viewer.c:781
138137 #, c-format
139138 msgid "Invalid file %s: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:786
141 #: src/remote-viewer.c:791
143142 msgid "Cannot determine the connection type from URI"
144143 msgstr ""
145144
146 #: ../src/remote-viewer.c:792
147 msgid "Couldn't open oVirt session: "
148 msgstr ""
149
150 #: ../src/remote-viewer.c:815
145 #: src/remote-viewer.c:810
151146 #, c-format
152147 msgid "Unable to connect: %s"
153148 msgstr ""
154149
155 #.
156 #. * Local variables:
157 #. * c-indent-level: 4
158 #. * c-basic-offset: 4
159 #. * indent-tabs-mode: nil
160 #. * End:
161 #.
162 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
150 #: src/resources/ui/remote-viewer-connect.ui:6
163151 msgid "Connection details"
164152 msgstr ""
165153
166 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
154 #: src/resources/ui/remote-viewer-connect.ui:24
167155 msgid "Connection _Address"
168156 msgstr ""
169157
170 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
158 #: src/resources/ui/remote-viewer-connect.ui:54
171159 msgid "For example, spice://foo.example.org:5900"
172160 msgstr ""
173161
174 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
162 #: src/resources/ui/remote-viewer-connect.ui:78
175163 msgid "Recent connections"
176164 msgstr ""
177165
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
179 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
180 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
181 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
166 #: src/resources/ui/remote-viewer-connect.ui:120
167 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
168 #: src/resources/ui/virt-viewer-vm-connection.ui:24
169 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
182170 msgid "_Cancel"
183171 msgstr ""
184172
185 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
173 #: src/resources/ui/remote-viewer-connect.ui:134
174 #: src/resources/ui/virt-viewer-vm-connection.ui:38
187175 msgid "C_onnect"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
178 #: src/resources/ui/remote-viewer-iso-list.ui:28
191179 msgid "Loading..."
192180 msgstr ""
193181
194 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
182 #: src/resources/ui/remote-viewer-iso-list.ui:78
195183 msgid "Select ISO"
196184 msgstr ""
197185
198 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
186 #: src/resources/ui/remote-viewer-iso-list.ui:116
199187 msgid "Selected"
200188 msgstr ""
201189
202 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
203 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
190 #: src/resources/ui/remote-viewer-iso-list.ui:129
191 #: src/resources/ui/virt-viewer-vm-connection.ui:72
204192 msgid "Name"
205193 msgstr ""
206194
207 #: ../src/resources/ui/virt-viewer-about.ui.h:1
195 #: src/resources/ui/virt-viewer-about.ui:7
208196 msgid "About Virt-Viewer"
209197 msgstr ""
210198
211 #: ../src/resources/ui/virt-viewer-about.ui.h:2
199 #: src/resources/ui/virt-viewer-about.ui:16
212200 msgid ""
213201 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
214202 "Copyright (C) 2007-2014 Red Hat, Inc."
215203 msgstr ""
216204
217 #: ../src/resources/ui/virt-viewer-about.ui.h:4
205 #: src/resources/ui/virt-viewer-about.ui:18
218206 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
219207 msgstr ""
220208
221 #: ../src/resources/ui/virt-viewer-about.ui.h:5
222 msgid "virt-manager.org"
223 msgstr "virt-manager.org"
224
225 #: ../src/resources/ui/virt-viewer-about.ui.h:6
209 #: src/resources/ui/virt-viewer-about.ui:20
210 msgid "gitlab.com/virt-viewer/virt-viewer"
211 msgstr ""
212
213 #: src/resources/ui/virt-viewer-about.ui:21
226214 msgid ""
227215 "This program is free software; you can redistribute it and/or modify\n"
228216 "it under the terms of the GNU General Public License as published by\n"
239227 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
240228 msgstr ""
241229
242 #: ../src/resources/ui/virt-viewer-about.ui.h:20
230 #: src/resources/ui/virt-viewer-about.ui:38
243231 msgid "The Fedora Translation Team"
244232 msgstr "Fedora Çeviri Ekibi"
245233
246 #: ../src/virt-viewer-app.c:459
234 #: src/virt-viewer-app.c:594
247235 msgid "Do you want to close the session?"
248236 msgstr ""
249237
250 #: ../src/virt-viewer-app.c:461
238 #: src/virt-viewer-app.c:596
251239 msgid "Do not ask me again"
252240 msgstr ""
253241
254 #: ../src/virt-viewer-app.c:655
242 #: src/virt-viewer-app.c:767
255243 #, c-format
256244 msgid "Address is too long for unix socket_path: %s"
257245 msgstr ""
258246
259 #: ../src/virt-viewer-app.c:665
247 #: src/virt-viewer-app.c:777
260248 #, c-format
261249 msgid "Creating unix socket failed: %s"
262250 msgstr ""
263251
264 #: ../src/virt-viewer-app.c:671
252 #: src/virt-viewer-app.c:783
265253 #, c-format
266254 msgid "Connecting to unix socket failed: %s"
267255 msgstr ""
268256
269 #: ../src/virt-viewer-app.c:955
257 #: src/virt-viewer-app.c:1077
270258 #, c-format
271259 msgid "Waiting for display %d..."
272260 msgstr ""
273261
274 #: ../src/virt-viewer-app.c:1062
262 #: src/virt-viewer-app.c:1193
275263 #, c-format
276264 msgid "Unsupported graphic type '%s'"
277265 msgstr ""
278266
279 #: ../src/virt-viewer-app.c:1146
267 #: src/virt-viewer-app.c:1277
280268 msgid "Connect to ssh failed."
281269 msgstr "Ssh bağlantısı başarısız oldu."
282270
283 #: ../src/virt-viewer-app.c:1161
271 #: src/virt-viewer-app.c:1292
284272 #, c-format
285273 msgid "Can't connect to channel: %s"
286274 msgstr ""
287275
288 #: ../src/virt-viewer-app.c:1163
276 #: src/virt-viewer-app.c:1294
289277 msgid "only SSH or unix socket connection supported."
290278 msgstr ""
291279
292 #: ../src/virt-viewer-app.c:1176
280 #: src/virt-viewer-app.c:1311
293281 msgid "Connect to channel unsupported."
294282 msgstr ""
295283
296 #: ../src/virt-viewer-app.c:1238
284 #: src/virt-viewer-app.c:1376
297285 msgid "Display can only be attached through libvirt with --attach"
298286 msgstr ""
299287
300 #: ../src/virt-viewer-app.c:1263
288 #: src/virt-viewer-app.c:1401
301289 msgid "Connecting to graphic server"
302290 msgstr "Grafik sunucuya bağlanıyor"
303291
304 #: ../src/virt-viewer-app.c:1362
292 #: src/virt-viewer-app.c:1500
305293 msgid "Guest domain has shutdown"
306294 msgstr ""
307295
308 #: ../src/virt-viewer-app.c:1423
296 #: src/virt-viewer-app.c:1561
309297 msgid "Connected to graphic server"
310298 msgstr "Grafik sunucuya bağlandı"
311299
312 #: ../src/virt-viewer-app.c:1452
300 #: src/virt-viewer-app.c:1590
313301 #, c-format
314302 msgid "Unable to connect to the graphic server %s"
315303 msgstr ""
316304
317 #: ../src/virt-viewer-app.c:1478
305 #: src/virt-viewer-app.c:1616
318306 #, c-format
319307 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
320308 msgstr ""
321309
322 #: ../src/virt-viewer-app.c:1492
310 #: src/virt-viewer-app.c:1630
323311 #, c-format
324312 msgid "Unable to authenticate with remote desktop server: %s"
325313 msgstr ""
326314
327 #: ../src/virt-viewer-app.c:1500
315 #: src/virt-viewer-app.c:1638
328316 #, c-format
329317 msgid "USB redirection error: %s"
330318 msgstr "USB yönlendirme hatası: %s"
331319
332 #: ../src/virt-viewer-app.c:1834
320 #: src/virt-viewer-app.c:2026
333321 #, c-format
334322 msgid "Zoom level must be within %d-%d\n"
335323 msgstr ""
336324
337 #: ../src/virt-viewer-app.c:1887
325 #: src/virt-viewer-app.c:2081
338326 #, c-format
339327 msgid "%s\n"
340328 msgstr ""
341329
342 #: ../src/virt-viewer-app.c:1897
330 #: src/virt-viewer-app.c:2091
343331 #, c-format
344332 msgid "%s version %s"
345333 msgstr ""
346334
347 #: ../src/virt-viewer-app.c:2321
335 #: src/virt-viewer-app.c:2545
348336 #, c-format
349337 msgid "Display _%d"
350338 msgstr ""
351339
352 #: ../src/virt-viewer-app.c:2577
340 #: src/virt-viewer-app.c:2829
353341 #, c-format
354342 msgid "Invalid kiosk-quit argument: %s"
355343 msgstr ""
356344
357 #: ../src/virt-viewer-app.c:2588
345 #: src/virt-viewer-app.c:2840
358346 msgid "Display version information"
359347 msgstr "Sürüm bilgisini göster"
360348
361 #: ../src/virt-viewer-app.c:2590
349 #: src/virt-viewer-app.c:2842
362350 msgid "Zoom level of window, in percentage"
363351 msgstr ""
364352
365 #: ../src/virt-viewer-app.c:2592
353 #: src/virt-viewer-app.c:2844
366354 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2594
357 #: src/virt-viewer-app.c:2846
370358 msgid "Customise hotkeys"
371359 msgstr ""
372360
373 #: ../src/virt-viewer-app.c:2596
361 #: src/virt-viewer-app.c:2848
374362 msgid "Enable kiosk mode"
375363 msgstr ""
376364
377 #: ../src/virt-viewer-app.c:2598
365 #: src/virt-viewer-app.c:2850
378366 msgid "Quit on given condition in kiosk mode"
379367 msgstr ""
380368
381 #: ../src/virt-viewer-app.c:2598
369 #: src/virt-viewer-app.c:2850
382370 msgid "<never|on-disconnect>"
383371 msgstr ""
384372
385 #: ../src/virt-viewer-app.c:2600
373 #: src/virt-viewer-app.c:2852
386374 msgid "Display verbose information"
387375 msgstr ""
388376
389 #: ../src/virt-viewer-app.c:2602
377 #: src/virt-viewer-app.c:2854
390378 msgid "Display debugging information"
391379 msgstr "Hata ayıklama bilgisini görüntüle"
392380
393 #: ../src/virt-viewer-auth.c:89
381 #: src/virt-viewer-auth.c:89
394382 #, c-format
395383 msgid ""
396384 "Authentication is required for the %s connection to:\n"
399387 "\n"
400388 msgstr ""
401389
402 #: ../src/virt-viewer-auth.c:93
390 #: src/virt-viewer-auth.c:93
403391 #, c-format
404392 msgid "Authentication is required for the %s connection:\n"
405393 msgstr ""
406394
407 #.
408 #. * Local variables:
409 #. * c-indent-level: 4
410 #. * c-basic-offset: 4
411 #. * indent-tabs-mode: nil
412 #. * End:
413 #.
414 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
395 #: src/resources/ui/virt-viewer-auth.ui:7
415396 msgid "Authentication required"
416397 msgstr "Kimlik Doğrulama gerekli"
417398
418 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
399 #: src/resources/ui/virt-viewer-auth.ui:42
419400 msgid "_OK"
420401 msgstr ""
421402
422 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
423 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
424 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
403 #: src/resources/ui/virt-viewer-auth.ui:71
404 #: src/resources/ui/virt-viewer-guest-details.ui:82
405 #: src/resources/ui/virt-viewer-guest-details.ui:96
406 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
425407 msgid "label"
426408 msgstr "etiket"
427409
428 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
410 #: src/resources/ui/virt-viewer-auth.ui:93
429411 msgid "Password:"
430412 msgstr "Parola:"
431413
432 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
414 #: src/resources/ui/virt-viewer-auth.ui:105
433415 msgid "Username:"
434416 msgstr "Kullanıcı Adı:"
435417
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
418 #: src/resources/ui/virt-viewer-auth.ui:137
437419 msgid "Show password"
438420 msgstr ""
439421
440 #: ../src/virt-viewer-display-vnc.c:134
422 #: src/virt-viewer-display-vnc.c:130
441423 msgid "VNC does not provide GUID"
442424 msgstr ""
443425
444 #: ../src/virt-viewer-file-transfer-dialog.c:128
426 #: src/virt-viewer-display-vte.c:181
427 msgid "Console support is compiled out!"
428 msgstr ""
429
430 #: src/virt-viewer-file-transfer-dialog.c:124
445431 msgid "File Transfers"
446432 msgstr ""
447433
448 #: ../src/virt-viewer-file-transfer-dialog.c:154
434 #: src/virt-viewer-file-transfer-dialog.c:150
449435 msgid "Transferring 1 file..."
450436 msgstr ""
451437
452 #: ../src/virt-viewer-file-transfer-dialog.c:156
453 #, c-format
454 msgid "Transferring %d file of %d..."
455 msgid_plural "Transferring %d files of %d..."
438 #: src/virt-viewer-file-transfer-dialog.c:152
439 #, c-format
440 msgid "Transferring %u file of %u..."
441 msgid_plural "Transferring %u files of %u..."
456442 msgstr[0] ""
457
458 #: ../src/virt-viewer-file-transfer-dialog.c:228
459 #, c-format
460 msgid "An error caused the following file transfers to fail:%s"
461 msgstr ""
462
463 #: ../src/virt-viewer-main.c:38
443 msgstr[1] ""
444
445 #: src/virt-viewer-file-transfer-dialog.c:225
446 msgid "An error caused the following file transfers to fail:"
447 msgstr ""
448
449 #: src/virt-viewer-main.c:38
464450 msgid "Virt Viewer"
465451 msgstr ""
466452
467 #: ../src/virt-viewer-session-spice.c:704
453 #: src/virt-viewer-session-spice.c:731
468454 msgid "Invalid password"
469455 msgstr ""
470456
471 #. Create the widgets
472 #: ../src/virt-viewer-session-spice.c:802
457 #: src/virt-viewer-session-spice.c:829
473458 msgid "Select USB devices for redirection"
474459 msgstr ""
475460
476 #: ../src/virt-viewer-session-spice.c:804
477 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
461 #: src/virt-viewer-session-spice.c:831
462 #: src/resources/ui/virt-viewer-guest-details.ui:23
478463 msgid "_Close"
479464 msgstr ""
480465
481 #: ../src/virt-viewer-session-vnc.c:162
482 #, c-format
483 msgid "Unsupported authentication type %d"
484 msgstr ""
485
486 #: ../src/virt-viewer-vm-connection.c:64
466 #: src/virt-viewer-session-spice.c:1019
467 msgid "Serial"
468 msgstr ""
469
470 #: src/virt-viewer-session-spice.c:1021
471 msgid "QEMU human monitor"
472 msgstr ""
473
474 #: src/virt-viewer-session-spice.c:1023
475 msgid "QEMU debug console"
476 msgstr ""
477
478 #: src/virt-viewer-session-vnc.c:158
479 #, c-format
480 msgid "Unsupported authentication type %u"
481 msgstr ""
482
483 #: src/virt-viewer-vm-connection.c:64
487484 msgid "No running virtual machine found"
488485 msgstr ""
489486
490 #: ../src/virt-viewer-vm-connection.c:93
487 #: src/virt-viewer-vm-connection.c:93
491488 msgid "No virtual machine was chosen"
492489 msgstr ""
493490
494 #: ../src/virt-viewer-window.c:544
491 #: src/virt-viewer-window.c:621
495492 msgid "Ctrl+Alt+_Del"
496493 msgstr "Ctrl+Alt+_Del"
497494
498 #: ../src/virt-viewer-window.c:545
495 #: src/virt-viewer-window.c:622
499496 msgid "Ctrl+Alt+_Backspace"
500497 msgstr "Ctrl+Alt+_Backspace"
501498
502 #: ../src/virt-viewer-window.c:547
499 #: src/virt-viewer-window.c:624
503500 msgid "Ctrl+Alt+F_1"
504501 msgstr "Ctrl+Alt+F_1"
505502
506 #: ../src/virt-viewer-window.c:548
503 #: src/virt-viewer-window.c:625
507504 msgid "Ctrl+Alt+F_2"
508505 msgstr "Ctrl+Alt+F_2"
509506
510 #: ../src/virt-viewer-window.c:549
507 #: src/virt-viewer-window.c:626
511508 msgid "Ctrl+Alt+F_3"
512509 msgstr "Ctrl+Alt+F_3"
513510
514 #: ../src/virt-viewer-window.c:550
511 #: src/virt-viewer-window.c:627
515512 msgid "Ctrl+Alt+F_4"
516513 msgstr "Ctrl+Alt+F_4"
517514
518 #: ../src/virt-viewer-window.c:551
515 #: src/virt-viewer-window.c:628
519516 msgid "Ctrl+Alt+F_5"
520517 msgstr "Ctrl+Alt+F_5"
521518
522 #: ../src/virt-viewer-window.c:552
519 #: src/virt-viewer-window.c:629
523520 msgid "Ctrl+Alt+F_6"
524521 msgstr "Ctrl+Alt+F_6"
525522
526 #: ../src/virt-viewer-window.c:553
523 #: src/virt-viewer-window.c:630
527524 msgid "Ctrl+Alt+F_7"
528525 msgstr "Ctrl+Alt+F_7"
529526
530 #: ../src/virt-viewer-window.c:554
527 #: src/virt-viewer-window.c:631
531528 msgid "Ctrl+Alt+F_8"
532529 msgstr "Ctrl+Alt+F_8"
533530
534 #: ../src/virt-viewer-window.c:555
531 #: src/virt-viewer-window.c:632
535532 msgid "Ctrl+Alt+F_9"
536533 msgstr "Ctrl+Alt+F_9"
537534
538 #: ../src/virt-viewer-window.c:556
535 #: src/virt-viewer-window.c:633
539536 msgid "Ctrl+Alt+F1_0"
540537 msgstr "Ctrl+Alt+F1_0"
541538
542 #: ../src/virt-viewer-window.c:557
539 #: src/virt-viewer-window.c:634
543540 msgid "Ctrl+Alt+F11"
544541 msgstr "Ctrl+Alt+F11"
545542
546 #: ../src/virt-viewer-window.c:558
543 #: src/virt-viewer-window.c:635
547544 msgid "Ctrl+Alt+F12"
548545 msgstr "Ctrl+Alt+F12"
549546
550 #: ../src/virt-viewer-window.c:953
547 #: src/virt-viewer-window.c:637
548 msgid "_PrintScreen"
549 msgstr ""
550
551 #: src/virt-viewer-window.c:1030
551552 #, c-format
552553 msgid "Unable to determine image format for file '%s'"
553554 msgstr ""
554555
555 #: ../src/virt-viewer-window.c:980
556 #: src/virt-viewer-window.c:1053
557 msgid "Save screenshot"
558 msgstr ""
559
560 #: src/virt-viewer-window.c:1057
556561 msgid "_Save"
557562 msgstr ""
558563
559 #: ../src/virt-viewer-window.c:988
564 #: src/virt-viewer-window.c:1065
560565 msgid "Screenshot.png"
561566 msgstr ""
562567
563 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
568 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
564569 msgid "Unknown"
565570 msgstr ""
566571
567 #: ../src/virt-viewer-window.c:1152
572 #: src/virt-viewer-window.c:1237
568573 msgid "Unable to connnect to oVirt"
569574 msgstr ""
570575
571 #: ../src/virt-viewer-window.c:1175
576 #: src/virt-viewer-window.c:1260
572577 msgid "Disconnect"
573578 msgstr "Bağlantıyı Kes"
574579
575 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
580 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
576581 msgid "USB device selection"
577582 msgstr "USB aygıt seçimi"
578583
579 #: ../src/virt-viewer-window.c:1193
584 #: src/virt-viewer-window.c:1278
580585 msgid "Send key combination"
581586 msgstr ""
582587
583 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
588 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
584589 msgid "Leave fullscreen"
585590 msgstr "Tam ekrandan ayrıl"
586591
587 #: ../src/virt-viewer-window.c:1279
592 #: src/virt-viewer-window.c:1364
588593 msgid "Ctrl+Alt"
589594 msgstr ""
590595
591 #: ../src/virt-viewer-window.c:1282
596 #: src/virt-viewer-window.c:1367
592597 #, c-format
593598 msgid "(Press %s to release pointer)"
594599 msgstr ""
595600
596 #. translators:
597 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
598 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
599 #.
600 #: ../src/virt-viewer-window.c:1293
601 #: src/virt-viewer-window.c:1378
601602 #, c-format
602603 msgid "%s%s%s - %s"
603604 msgstr "%s%s%s - %s"
604605
605 #. translators: <space>
606 #: ../src/virt-viewer-window.c:1297
606 #: src/virt-viewer-window.c:1382
607607 msgid " "
608608 msgstr " "
609609
610 #: ../src/virt-viewer-file.c:862
610 #: src/virt-viewer-file.c:875
611611 #, c-format
612612 msgid ""
613613 "At least %s version %s is required to setup this connection, see %s for "
614614 "details"
615615 msgstr ""
616616
617 #: ../src/virt-viewer-file.c:870
617 #: src/virt-viewer-file.c:883
618618 #, c-format
619619 msgid "At least %s version %s is required to setup this connection"
620620 msgstr ""
621621
622 #: ../src/virt-viewer.c:133
622 #: src/virt-viewer.c:131
623623 msgid "Direct connection with no automatic tunnels"
624624 msgstr ""
625625
626 #: ../src/virt-viewer.c:135
626 #: src/virt-viewer.c:133
627627 msgid "Attach to the local display using libvirt"
628628 msgstr ""
629629
630 #: ../src/virt-viewer.c:137
630 #: src/virt-viewer.c:135
631631 msgid "Connect to hypervisor"
632632 msgstr ""
633633
634 #: ../src/virt-viewer.c:139
634 #: src/virt-viewer.c:137
635635 msgid "Wait for domain to start"
636636 msgstr ""
637637
638 #: ../src/virt-viewer.c:141
638 #: src/virt-viewer.c:139
639639 msgid "Reconnect to domain upon restart"
640640 msgstr ""
641641
642 #: ../src/virt-viewer.c:143
642 #: src/virt-viewer.c:141
643643 msgid "Select the virtual machine only by its name"
644644 msgstr ""
645645
646 #: ../src/virt-viewer.c:145
646 #: src/virt-viewer.c:143
647647 msgid "Select the virtual machine only by its id"
648648 msgstr ""
649649
650 #: ../src/virt-viewer.c:147
650 #: src/virt-viewer.c:145
651651 msgid "Select the virtual machine only by its uuid"
652652 msgstr ""
653653
654 #: ../src/virt-viewer.c:154
654 #: src/virt-viewer.c:152
655655 msgid "Virtual machine graphical console"
656656 msgstr ""
657657
658 #: ../src/virt-viewer.c:173
658 #: src/virt-viewer.c:171
659659 #, c-format
660660 msgid ""
661661 "\n"
663663 "\n"
664664 msgstr ""
665665
666 #: ../src/virt-viewer.c:185
666 #: src/virt-viewer.c:183
667667 #, c-format
668668 msgid ""
669669 "\n"
671671 "\n"
672672 msgstr ""
673673
674 #: ../src/virt-viewer.c:300
674 #: src/virt-viewer.c:296
675675 msgid "Waiting for guest domain to re-start"
676676 msgstr ""
677677
678 #: ../src/virt-viewer.c:554
678 #: src/virt-viewer.c:550
679679 #, c-format
680680 msgid "Cannot determine the graphic type for the guest %s"
681681 msgstr ""
682682
683 #: ../src/virt-viewer.c:603
683 #: src/virt-viewer.c:599
684684 #, c-format
685685 msgid "Cannot determine the host for the guest %s"
686686 msgstr ""
687687
688 #: ../src/virt-viewer.c:631
688 #: src/virt-viewer.c:627
689689 #, c-format
690690 msgid "Guest '%s' is not reachable"
691691 msgstr ""
692692
693 #: ../src/virt-viewer.c:860
693 #: src/virt-viewer.c:856
694694 #, c-format
695695 msgid "Virtual machine %s is not running"
696696 msgstr ""
697697
698 #: ../src/virt-viewer.c:884
698 #: src/virt-viewer.c:881
699699 msgid "Waiting for libvirt to start"
700700 msgstr ""
701701
702 #: ../src/virt-viewer.c:888
702 #: src/virt-viewer.c:885
703703 msgid "Finding guest domain"
704704 msgstr ""
705705
706 #: ../src/virt-viewer.c:892
706 #: src/virt-viewer.c:889
707707 msgid "Waiting for guest domain to be created"
708708 msgstr ""
709709
710 #: ../src/virt-viewer.c:918
710 #: src/virt-viewer.c:921
711711 msgid "Checking guest domain status"
712712 msgstr ""
713713
714 #: ../src/virt-viewer.c:921
714 #: src/virt-viewer.c:924
715715 msgid "Cannot get guest state"
716716 msgstr ""
717717
718 #: ../src/virt-viewer.c:927
718 #: src/virt-viewer.c:930
719719 msgid "Waiting for guest domain to start"
720720 msgstr ""
721721
722 #: ../src/virt-viewer.c:1040
722 #: src/virt-viewer.c:1044
723723 #, c-format
724724 msgid "Unable to connect to libvirt with URI: %s."
725725 msgstr ""
726726
727 #: ../src/virt-viewer.c:1041
727 #: src/virt-viewer.c:1045
728728 msgid "[none]"
729729 msgstr ""
730730
731 #: ../src/virt-viewer.c:1048
731 #: src/virt-viewer.c:1052
732732 msgid "Authentication failed."
733733 msgstr ""
734734
735 #: ../src/virt-viewer.c:1108
735 #: src/virt-viewer.c:1112
736736 msgid "Failed to connect: "
737737 msgstr ""
738738
739 #.
740 #. * Local variables:
741 #. * c-indent-level: 4
742 #. * c-basic-offset: 4
743 #. * indent-tabs-mode: nil
744 #. * End:
745 #.
746 #: ../src/resources/ui/virt-viewer.ui.h:1
739 #: src/resources/ui/virt-viewer.ui:28
747740 msgid "_File"
748741 msgstr "_Dosya"
749742
750 #: ../src/resources/ui/virt-viewer.ui.h:2
743 #: src/resources/ui/virt-viewer.ui:41
751744 msgid "_Screenshot"
752745 msgstr ""
753746
754 #: ../src/resources/ui/virt-viewer.ui.h:3
747 #: src/resources/ui/virt-viewer.ui:52
755748 msgid "_USB device selection"
756749 msgstr ""
757750
758 #: ../src/resources/ui/virt-viewer.ui.h:4
751 #: src/resources/ui/virt-viewer.ui:62
759752 msgid "Smartcard insertion"
760753 msgstr ""
761754
762 #: ../src/resources/ui/virt-viewer.ui.h:5
755 #: src/resources/ui/virt-viewer.ui:72
763756 msgid "Smartcard removal"
764757 msgstr ""
765758
766 #: ../src/resources/ui/virt-viewer.ui.h:6
759 #: src/resources/ui/virt-viewer.ui:80
767760 msgid "_Change CD"
768761 msgstr ""
769762
770 #: ../src/resources/ui/virt-viewer.ui.h:7
763 #: src/resources/ui/virt-viewer.ui:90
771764 msgid "_Preferences"
772765 msgstr ""
773766
774 #: ../src/resources/ui/virt-viewer.ui.h:8
767 #: src/resources/ui/virt-viewer.ui:103
775768 msgid "_Quit"
776769 msgstr ""
777770
778 #: ../src/resources/ui/virt-viewer.ui.h:9
771 #: src/resources/ui/virt-viewer.ui:119
772 msgid "_Machine"
773 msgstr ""
774
775 #: src/resources/ui/virt-viewer.ui:129
776 msgid "_Pause"
777 msgstr ""
778
779 #: src/resources/ui/virt-viewer.ui:144
780 msgid "_Reset"
781 msgstr ""
782
783 #: src/resources/ui/virt-viewer.ui:153
784 msgid "_Power down"
785 msgstr ""
786
787 #: src/resources/ui/virt-viewer.ui:167
779788 msgid "_View"
780789 msgstr ""
781790
782 #: ../src/resources/ui/virt-viewer.ui.h:10
791 #: src/resources/ui/virt-viewer.ui:180
783792 msgid "_Full screen"
784793 msgstr ""
785794
786 #: ../src/resources/ui/virt-viewer.ui.h:11
795 #: src/resources/ui/virt-viewer.ui:191
787796 msgid "_Zoom"
788797 msgstr ""
789798
790 #: ../src/resources/ui/virt-viewer.ui.h:12
799 #: src/resources/ui/virt-viewer.ui:201
791800 msgid "Zoom _In"
792801 msgstr ""
793802
794 #: ../src/resources/ui/virt-viewer.ui.h:13
803 #: src/resources/ui/virt-viewer.ui:212
795804 msgid "Zoom _Out"
796805 msgstr ""
797806
798 #: ../src/resources/ui/virt-viewer.ui.h:14
807 #: src/resources/ui/virt-viewer.ui:229
799808 msgid "_Normal Size"
800809 msgstr ""
801810
802 #: ../src/resources/ui/virt-viewer.ui.h:15
811 #: src/resources/ui/virt-viewer.ui:246
803812 msgid "_Displays"
804813 msgstr ""
805814
806 #: ../src/resources/ui/virt-viewer.ui.h:16
815 #: src/resources/ui/virt-viewer.ui:255
807816 msgid "Release cursor"
808817 msgstr ""
809818
810 #: ../src/resources/ui/virt-viewer.ui.h:17
819 #: src/resources/ui/virt-viewer.ui:270
811820 msgid "_Send key"
812821 msgstr ""
813822
814 #: ../src/resources/ui/virt-viewer.ui.h:18
823 #: src/resources/ui/virt-viewer.ui:279
815824 msgid "_Help"
816825 msgstr "_Yardım"
817826
818 #: ../src/resources/ui/virt-viewer.ui.h:19
827 #: src/resources/ui/virt-viewer.ui:290
819828 msgid "_Guest Details"
820829 msgstr ""
821830
822 #: ../src/resources/ui/virt-viewer.ui.h:20
831 #: src/resources/ui/virt-viewer.ui:297
823832 msgid "_About"
824833 msgstr ""
825834
826 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
835 #: src/resources/ui/virt-viewer-guest-details.ui:7
827836 msgid "Guest Details"
828837 msgstr ""
829838
830 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
839 #: src/resources/ui/virt-viewer-guest-details.ui:56
831840 msgid "Name:"
832841 msgstr ""
833842
834 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
843 #: src/resources/ui/virt-viewer-guest-details.ui:68
835844 msgid "GUID:"
836845 msgstr ""
837846
838 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
847 #: src/resources/ui/virt-viewer-vm-connection.ui:7
839848 msgid "Choose a virtual machine"
840849 msgstr ""
841850
842 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
851 #: src/resources/ui/virt-viewer-vm-connection.ui:96
843852 msgid "Available virtual machines"
844853 msgstr ""
845854
846 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
855 #: src/resources/ui/virt-viewer-preferences.ui:8
847856 msgid "Preferences"
848857 msgstr ""
849858
850 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
859 #: src/resources/ui/virt-viewer-preferences.ui:48
851860 msgid "Folder sharing"
852861 msgstr ""
853862
854 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
863 #: src/resources/ui/virt-viewer-preferences.ui:70
855864 msgid "Share folder"
856865 msgstr ""
857866
858 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
867 #: src/resources/ui/virt-viewer-preferences.ui:82
859868 msgid "Read-only"
860869 msgstr ""
861870
862 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
871 #: src/resources/ui/virt-viewer-preferences.ui:96
872 msgid "Share clipboard"
873 msgstr ""
874
875 #: src/resources/ui/virt-viewer-preferences.ui:132
863876 msgid "Spice"
864877 msgstr ""
878
879 #~ msgid "virt-manager.org"
880 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/tw.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Twi\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+284
-265
po/uk.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
66 # Yuri Chornoivan <yurchor@ukr.net>, 2015. #zanata
77 # Yuri Chornoivan <yurchor@ukr.net>, 2016. #zanata
88 # Yuri Chornoivan <yurchor@ukr.net>, 2017. #zanata
9 # Yuri Chornoivan <yurchor@ukr.net>, 2019. #zanata
910 msgid ""
1011 msgstr ""
11 "Project-Id-Version: PACKAGE VERSION\n"
12 "Report-Msgid-Bugs-To: \n"
13 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
14 "PO-Revision-Date: 2017-05-24 01:48-0400\n"
15 "Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
12 "Project-Id-Version: virt-viewer 9.0\n"
13 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
14 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
15 "PO-Revision-Date: 2019-02-21 07:53+0000\n"
16 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
1617 "Language-Team: Ukrainian (http://www.transifex.com/projects/p/virt-viewer/"
1718 "language/uk/)\n"
1819 "Language: uk\n"
2122 "Content-Transfer-Encoding: 8bit\n"
2223 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
2324 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
24 "X-Generator: Zanata 3.9.6\n"
25
26 #: ../data/remote-viewer.appdata.xml.in.h:1
27 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
25 "X-Generator: Zanata 4.6.2\n"
26
27 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
28 #: src/remote-viewer-main.c:39
2829 msgid "Remote Viewer"
2930 msgstr "Віддалений переглядач"
3031
31 #: ../data/remote-viewer.appdata.xml.in.h:2
32 #: data/remote-viewer.appdata.xml.in:7
3233 msgid "Remotely access virtual machines"
3334 msgstr "Віддалений досуп до віртуальних машин"
3435
35 #: ../data/remote-viewer.appdata.xml.in.h:3
36 #: data/remote-viewer.appdata.xml.in:9
3637 msgid ""
3738 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3839 "time it supports guest OS using the VNC or SPICE protocols. Further "
4849 "вузлі або віддалених вузлах. Якщо потрібно, може бути використано шифрування "
4950 "обміну даними на основі SSL/TLS."
5051
51 #: ../data/remote-viewer.desktop.in.h:2
52 #: data/remote-viewer.desktop.in:4
5253 msgid "Access remote desktops"
5354 msgstr "Доступ до віддалених стільниць"
5455
55 #: ../data/virt-viewer-mime.xml.in.h:1
56 msgid "Virt-Viewer connection file"
57 msgstr "Файл з’єднань Virt-Viewer"
58
59 #: ../src/remote-viewer-iso-list-dialog.c:160
56 #: src/remote-viewer-iso-list-dialog.c:156
6057 msgid "Failed to fetch CD names"
6158 msgstr "Не вдалося отримати назви компакт-дисків"
6259
63 #: ../src/remote-viewer-iso-list-dialog.c:212
60 #: src/remote-viewer-iso-list-dialog.c:205
6461 msgid "<b>Loading...</b>"
6562 msgstr "<b>Завантаження…</b>"
6663
67 #: ../src/remote-viewer-iso-list-dialog.c:285
64 #: src/remote-viewer-iso-list-dialog.c:276
6865 msgid "Refresh"
6966 msgstr "Оновити"
7067
71 #: ../src/remote-viewer-iso-list-dialog.c:286
68 #: src/remote-viewer-iso-list-dialog.c:277
7269 msgid "Close"
7370 msgstr "Закрити"
7471
75 #: ../src/remote-viewer-iso-list-dialog.c:306
72 #: src/remote-viewer-iso-list-dialog.c:297
7673 msgid "Unspecified error"
7774 msgstr "Невизначена помилка"
7875
79 #: ../src/remote-viewer-iso-list-dialog.c:328
76 #: src/remote-viewer-iso-list-dialog.c:318
8077 msgid "Failed to change CD"
8178 msgstr "Не вдалося змінити компакт-диск"
8279
83 #: ../src/remote-viewer-iso-list-dialog.c:380
80 #: src/remote-viewer-iso-list-dialog.c:370
8481 msgid "Change CD"
8582 msgstr "Змінити компакт-диск"
8683
87 #: ../src/remote-viewer.c:118
84 #: src/remote-viewer.c:116
8885 msgid "Set window title"
8986 msgstr "Встановити вказаний заголовок вікна"
9087
91 #: ../src/remote-viewer.c:125
88 #: src/remote-viewer.c:123
9289 msgid "Remote viewer client"
9390 msgstr "Клієнтська програма для перегляду віддалених систем"
9491
95 #: ../src/remote-viewer.c:150
96 #, c-format
92 #: src/remote-viewer.c:148
9793 msgid ""
9894 "\n"
9995 "Error: can't handle multiple URIs\n"
10399 "Помилка: обробки декількох адрес одразу не передбачено\n"
104100 "\n"
105101
106 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
102 #: src/remote-viewer.c:162 src/virt-viewer.c:200
107103 #, c-format
108104 msgid "Run '%s --help' to see a full list of available command line options\n"
109105 msgstr ""
110106 "Щоб переглянути повний список можливих параметрів командного рядка, віддайте "
111107 "команду «%s --help»\n"
112108
113 #: ../src/remote-viewer.c:435
109 #: src/remote-viewer.c:429
114110 msgid "failed to parse ovirt uri"
115111 msgstr "не вдалося обробити адресу ovirt"
116112
117 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
113 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
118114 msgid "Authentication was cancelled"
119115 msgstr "Розпізнавання було скасовано"
120116
121 #: ../src/remote-viewer.c:480
117 #: src/remote-viewer.c:472
122118 #, c-format
123119 msgid "oVirt VM %s is not running"
124120 msgstr "ВМ oVirt %s не запущено"
125121
126 #: ../src/remote-viewer.c:494
122 #: src/remote-viewer.c:486
127123 #, c-format
128124 msgid "oVirt VM %s has no display"
129125 msgstr "ВМ oVirt %s не має дисплея"
130126
131 #: ../src/remote-viewer.c:520
127 #: src/remote-viewer.c:512
132128 #, c-format
133129 msgid "oVirt VM %s has no host information"
134130 msgstr "ВМ oVirt %s не містить даних щодо основної системи"
135131
136 #: ../src/remote-viewer.c:531
137 #, c-format
138 msgid "oVirt VM %s has unknown display type: %d"
139 msgstr "Дисплей ВМ oVirt %s належить до невідомого типу: %d"
140
141 #: ../src/remote-viewer.c:713
132 #: src/remote-viewer.c:523
133 #, c-format
134 msgid "oVirt VM %s has unknown display type: %u"
135 msgstr "ВМ oVirt %s має дисплей невідомого типу: %u"
136
137 #: src/remote-viewer.c:690
138 msgid "Couldn't open oVirt session: "
139 msgstr "Не вдалося відкрити сеанс oVirt: "
140
141 #: src/remote-viewer.c:718
142142 msgid "Failed to initiate connection"
143143 msgstr "Не вдалося започаткувати з’єднання"
144144
145 #: ../src/remote-viewer.c:742
145 #: src/remote-viewer.c:747
146146 msgid "No connection was chosen"
147147 msgstr "Не вибрано з’єднання"
148148
149 #: ../src/remote-viewer.c:759
149 #: src/remote-viewer.c:764
150150 msgid "Failed to read stdin: "
151 msgstr ""
152
153 #: ../src/remote-viewer.c:776
151 msgstr "Не вдалося прочитати дані зі stdin: "
152
153 #: src/remote-viewer.c:781
154154 #, c-format
155155 msgid "Invalid file %s: "
156156 msgstr "Некоректний файл %s: "
157157
158 #: ../src/remote-viewer.c:786
158 #: src/remote-viewer.c:791
159159 msgid "Cannot determine the connection type from URI"
160160 msgstr "Не вдалося визначити тип з’єднання за адресою"
161161
162 #: ../src/remote-viewer.c:792
163 msgid "Couldn't open oVirt session: "
164 msgstr "Не вдалося відкрити сеанс oVirt: "
165
166 #: ../src/remote-viewer.c:815
162 #: src/remote-viewer.c:810
167163 #, c-format
168164 msgid "Unable to connect: %s"
169165 msgstr "Не вдалося встановити з’єднання: %s"
170166
171 #.
172 #. * Local variables:
173 #. * c-indent-level: 4
174 #. * c-basic-offset: 4
175 #. * indent-tabs-mode: nil
176 #. * End:
177 #.
178 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
167 #: src/resources/ui/remote-viewer-connect.ui:6
179168 msgid "Connection details"
180169 msgstr "Параметри з’єднання"
181170
182 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
171 #: src/resources/ui/remote-viewer-connect.ui:24
183172 msgid "Connection _Address"
184173 msgstr "_Адреса з’єднання"
185174
186 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
175 #: src/resources/ui/remote-viewer-connect.ui:54
187176 msgid "For example, spice://foo.example.org:5900"
188177 msgstr "Приклад: spice://foo.example.org:5900"
189178
190 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
179 #: src/resources/ui/remote-viewer-connect.ui:78
191180 msgid "Recent connections"
192181 msgstr "Нещодавні з’єднання"
193182
194 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
195 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
196 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
197 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
183 #: src/resources/ui/remote-viewer-connect.ui:120
184 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
185 #: src/resources/ui/virt-viewer-vm-connection.ui:24
186 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
198187 msgid "_Cancel"
199188 msgstr "_Скасувати"
200189
201 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
202 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
190 #: src/resources/ui/remote-viewer-connect.ui:134
191 #: src/resources/ui/virt-viewer-vm-connection.ui:38
203192 msgid "C_onnect"
204193 msgstr "З’_єднати"
205194
206 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
195 #: src/resources/ui/remote-viewer-iso-list.ui:28
207196 msgid "Loading..."
208197 msgstr "Завантаження…"
209198
210 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
199 #: src/resources/ui/remote-viewer-iso-list.ui:78
211200 msgid "Select ISO"
212201 msgstr "Виберіть ISO"
213202
214 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
203 #: src/resources/ui/remote-viewer-iso-list.ui:116
215204 msgid "Selected"
216205 msgstr "Вибрано"
217206
218 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
219 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
207 #: src/resources/ui/remote-viewer-iso-list.ui:129
208 #: src/resources/ui/virt-viewer-vm-connection.ui:72
220209 msgid "Name"
221210 msgstr "Назва"
222211
223 #: ../src/resources/ui/virt-viewer-about.ui.h:1
212 #: src/resources/ui/virt-viewer-about.ui:7
224213 msgid "About Virt-Viewer"
225214 msgstr "Про Virt-Viewer"
226215
227 #: ../src/resources/ui/virt-viewer-about.ui.h:2
216 #: src/resources/ui/virt-viewer-about.ui:16
228217 msgid ""
229218 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
230219 "Copyright (C) 2007-2014 Red Hat, Inc."
232221 "© Daniel P. Berrange, 2007–2012\n"
233222 "© Red Hat, Inc., 2007–2014"
234223
235 #: ../src/resources/ui/virt-viewer-about.ui.h:4
224 #: src/resources/ui/virt-viewer-about.ui:18
236225 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
237226 msgstr ""
238227 "Клієнтську частину віддаленого керування стільницею побудовано на основі GTK-"
239228 "VNC, SPICE-GTK та libvirt"
240229
241 #: ../src/resources/ui/virt-viewer-about.ui.h:5
242 msgid "virt-manager.org"
243 msgstr "virt-manager.org"
244
245 #: ../src/resources/ui/virt-viewer-about.ui.h:6
230 #: src/resources/ui/virt-viewer-about.ui:20
231 msgid "gitlab.com/virt-viewer/virt-viewer"
232 msgstr ""
233
234 #: src/resources/ui/virt-viewer-about.ui:21
246235 msgid ""
247236 "This program is free software; you can redistribute it and/or modify\n"
248237 "it under the terms of the GNU General Public License as published by\n"
271260 "Якщо ви її не отримали, повідомте про це на адресу Free Software\n"
272261 "Foundation, Inc, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
273262
274 #: ../src/resources/ui/virt-viewer-about.ui.h:20
263 #: src/resources/ui/virt-viewer-about.ui:38
275264 msgid "The Fedora Translation Team"
276265 msgstr "Команда локалізації Fedora"
277266
278 #: ../src/virt-viewer-app.c:459
267 #: src/virt-viewer-app.c:594
279268 msgid "Do you want to close the session?"
280269 msgstr "Бажаєте завершити сеанс?"
281270
282 #: ../src/virt-viewer-app.c:461
271 #: src/virt-viewer-app.c:596
283272 msgid "Do not ask me again"
284273 msgstr "Більше не питати про це"
285274
286 #: ../src/virt-viewer-app.c:655
275 #: src/virt-viewer-app.c:767
287276 #, c-format
288277 msgid "Address is too long for unix socket_path: %s"
289278 msgstr "Адреса є надто довгою для socket_path UNIX: %s"
290279
291 #: ../src/virt-viewer-app.c:665
280 #: src/virt-viewer-app.c:777
292281 #, c-format
293282 msgid "Creating unix socket failed: %s"
294283 msgstr "Не вдалося створити сокет UNIX: %s"
295284
296 #: ../src/virt-viewer-app.c:671
285 #: src/virt-viewer-app.c:783
297286 #, c-format
298287 msgid "Connecting to unix socket failed: %s"
299288 msgstr "Не вдалося встановити з’єднання із сокетом UNIX: %s"
300289
301 #: ../src/virt-viewer-app.c:955
290 #: src/virt-viewer-app.c:1077
302291 #, c-format
303292 msgid "Waiting for display %d..."
304293 msgstr "Очікування на показ %d…"
305294
306 #: ../src/virt-viewer-app.c:1062
295 #: src/virt-viewer-app.c:1193
307296 #, c-format
308297 msgid "Unsupported graphic type '%s'"
309298 msgstr "Непідтримуваний тип графіки, «%s»"
310299
311 #: ../src/virt-viewer-app.c:1146
300 #: src/virt-viewer-app.c:1277
312301 msgid "Connect to ssh failed."
313302 msgstr "Спроба встановлення з’єднання ssh зазнала невдачі."
314303
315 #: ../src/virt-viewer-app.c:1161
304 #: src/virt-viewer-app.c:1292
316305 #, c-format
317306 msgid "Can't connect to channel: %s"
318307 msgstr "Не вдалося з’єднатися із каналом: %s"
319308
320 #: ../src/virt-viewer-app.c:1163
309 #: src/virt-viewer-app.c:1294
321310 msgid "only SSH or unix socket connection supported."
322311 msgstr ""
323312 "передбачено підтримку встановлення з’єднань лише з сокетами SSH або unix."
324313
325 #: ../src/virt-viewer-app.c:1176
314 #: src/virt-viewer-app.c:1311
326315 msgid "Connect to channel unsupported."
327316 msgstr "Встановлення з’єднання з каналом не підтримується."
328317
329 #: ../src/virt-viewer-app.c:1238
318 #: src/virt-viewer-app.c:1376
330319 msgid "Display can only be attached through libvirt with --attach"
331320 msgstr "Дисплей можна з’єднати лише за допомогою libvirt з параметром --attach"
332321
333 #: ../src/virt-viewer-app.c:1263
322 #: src/virt-viewer-app.c:1401
334323 msgid "Connecting to graphic server"
335324 msgstr "Встановлення з’єднання з графічним сервером"
336325
337 #: ../src/virt-viewer-app.c:1362
326 #: src/virt-viewer-app.c:1500
338327 msgid "Guest domain has shutdown"
339328 msgstr "Гостьовий домен завершив роботу"
340329
341 #: ../src/virt-viewer-app.c:1423
330 #: src/virt-viewer-app.c:1561
342331 msgid "Connected to graphic server"
343332 msgstr "Встановлено з’єднання з графічним сервером"
344333
345 #: ../src/virt-viewer-app.c:1452
334 #: src/virt-viewer-app.c:1590
346335 #, c-format
347336 msgid "Unable to connect to the graphic server %s"
348337 msgstr "Не вдалося встановити з’єднання з графічним сервером %s"
349338
350 #: ../src/virt-viewer-app.c:1478
339 #: src/virt-viewer-app.c:1616
351340 #, c-format
352341 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
353342 msgstr ""
354343 "Не вдалося пройти розпізнавання на сервері віддаленої стільниці за адресою "
355344 "%s: %s\n"
356345
357 #: ../src/virt-viewer-app.c:1492
346 #: src/virt-viewer-app.c:1630
358347 #, c-format
359348 msgid "Unable to authenticate with remote desktop server: %s"
360349 msgstr "Не вдалося пройти розпізнавання на сервері віддаленої стільниці: %s"
361350
362 #: ../src/virt-viewer-app.c:1500
351 #: src/virt-viewer-app.c:1638
363352 #, c-format
364353 msgid "USB redirection error: %s"
365354 msgstr "Помилка переспрямування USB: %s"
366355
367 #: ../src/virt-viewer-app.c:1834
356 #: src/virt-viewer-app.c:2026
368357 #, c-format
369358 msgid "Zoom level must be within %d-%d\n"
370359 msgstr "Масштаб слід вказувати у діапазоні від %d до %d\n"
371360
372 #: ../src/virt-viewer-app.c:1887
361 #: src/virt-viewer-app.c:2081
373362 #, c-format
374363 msgid "%s\n"
375364 msgstr "%s\n"
376365
377 #: ../src/virt-viewer-app.c:1897
366 #: src/virt-viewer-app.c:2091
378367 #, c-format
379368 msgid "%s version %s"
380369 msgstr "%s, версія %s"
381370
382 #: ../src/virt-viewer-app.c:2321
371 #: src/virt-viewer-app.c:2545
383372 #, c-format
384373 msgid "Display _%d"
385374 msgstr "Дисплей _%d"
386375
387 #: ../src/virt-viewer-app.c:2577
376 #: src/virt-viewer-app.c:2829
388377 #, c-format
389378 msgid "Invalid kiosk-quit argument: %s"
390379 msgstr "Некоректний параметр kiosk-quit: %s"
391380
392 #: ../src/virt-viewer-app.c:2588
381 #: src/virt-viewer-app.c:2840
393382 msgid "Display version information"
394383 msgstr "Показати інформацію щодо версії"
395384
396 #: ../src/virt-viewer-app.c:2590
385 #: src/virt-viewer-app.c:2842
397386 msgid "Zoom level of window, in percentage"
398387 msgstr "Масштаб вікна, у відсотках"
399388
400 #: ../src/virt-viewer-app.c:2592
389 #: src/virt-viewer-app.c:2844
401390 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
402391 msgstr ""
403392 "Відкрити у повноекранному режимі (узгоджує роздільність гостьової системи з "
404393 "роздільністю клієнта)"
405394
406 #: ../src/virt-viewer-app.c:2594
395 #: src/virt-viewer-app.c:2846
407396 msgid "Customise hotkeys"
408397 msgstr "Налаштувати клавіатурні скорочення"
409398
410 #: ../src/virt-viewer-app.c:2596
399 #: src/virt-viewer-app.c:2848
411400 msgid "Enable kiosk mode"
412401 msgstr "Увімкнути режим кіоску"
413402
414 #: ../src/virt-viewer-app.c:2598
403 #: src/virt-viewer-app.c:2850
415404 msgid "Quit on given condition in kiosk mode"
416405 msgstr "Вийти за вказаної умови у режимі кіоску"
417406
418 #: ../src/virt-viewer-app.c:2598
407 #: src/virt-viewer-app.c:2850
419408 msgid "<never|on-disconnect>"
420409 msgstr "<never|on-disconnect>"
421410
422 #: ../src/virt-viewer-app.c:2600
411 #: src/virt-viewer-app.c:2852
423412 msgid "Display verbose information"
424413 msgstr "Показати докладну інформацію"
425414
426 #: ../src/virt-viewer-app.c:2602
415 #: src/virt-viewer-app.c:2854
427416 msgid "Display debugging information"
428417 msgstr "Показати діагностичну інформацію"
429418
430 #: ../src/virt-viewer-auth.c:89
419 #: src/virt-viewer-auth.c:89
431420 #, c-format
432421 msgid ""
433422 "Authentication is required for the %s connection to:\n"
440429 "<b>%s</b>\n"
441430 "\n"
442431
443 #: ../src/virt-viewer-auth.c:93
432 #: src/virt-viewer-auth.c:93
444433 #, c-format
445434 msgid "Authentication is required for the %s connection:\n"
446435 msgstr "Для встановлення з’єднання з %s слід пройти розпізнавання:\n"
447436
448 #.
449 #. * Local variables:
450 #. * c-indent-level: 4
451 #. * c-basic-offset: 4
452 #. * indent-tabs-mode: nil
453 #. * End:
454 #.
455 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
437 #: src/resources/ui/virt-viewer-auth.ui:7
456438 msgid "Authentication required"
457439 msgstr "Потрібно пройти розпізнавання"
458440
459 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
441 #: src/resources/ui/virt-viewer-auth.ui:42
460442 msgid "_OK"
461443 msgstr "_Гаразд"
462444
463 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
464 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
465 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
445 #: src/resources/ui/virt-viewer-auth.ui:71
446 #: src/resources/ui/virt-viewer-guest-details.ui:82
447 #: src/resources/ui/virt-viewer-guest-details.ui:96
448 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
466449 msgid "label"
467450 msgstr "мітка"
468451
469 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
452 #: src/resources/ui/virt-viewer-auth.ui:93
470453 msgid "Password:"
471454 msgstr "Пароль:"
472455
473 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
456 #: src/resources/ui/virt-viewer-auth.ui:105
474457 msgid "Username:"
475458 msgstr "Користувач:"
476459
477 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
460 #: src/resources/ui/virt-viewer-auth.ui:137
478461 msgid "Show password"
479462 msgstr "Показувати пароль"
480463
481 #: ../src/virt-viewer-display-vnc.c:134
464 #: src/virt-viewer-display-vnc.c:130
482465 msgid "VNC does not provide GUID"
483466 msgstr "VNC не надає GUID"
484467
485 #: ../src/virt-viewer-file-transfer-dialog.c:128
468 #: src/virt-viewer-display-vte.c:181
469 msgid "Console support is compiled out!"
470 msgstr "Підтримку консолі не передбачено під час збирання!"
471
472 #: src/virt-viewer-file-transfer-dialog.c:124
486473 msgid "File Transfers"
487474 msgstr "Передавання файлів"
488475
489 #: ../src/virt-viewer-file-transfer-dialog.c:154
476 #: src/virt-viewer-file-transfer-dialog.c:150
490477 msgid "Transferring 1 file..."
491478 msgstr "Передаємо 1 файл…"
492479
493 #: ../src/virt-viewer-file-transfer-dialog.c:156
494 #, c-format
495 msgid "Transferring %d file of %d..."
496 msgid_plural "Transferring %d files of %d..."
497 msgstr[0] "Передаємо %d файл з %d…"
498 msgstr[1] "Передаємо %d файли з %d…"
499 msgstr[2] "Передаємо %d файлів з %d…"
500
501 #: ../src/virt-viewer-file-transfer-dialog.c:228
502 #, c-format
503 msgid "An error caused the following file transfers to fail:%s"
504 msgstr "Помилка спричинила невдале передавання таких файлів:%s"
505
506 #: ../src/virt-viewer-main.c:38
480 #: src/virt-viewer-file-transfer-dialog.c:152
481 #, c-format
482 msgid "Transferring %u file of %u..."
483 msgid_plural "Transferring %u files of %u..."
484 msgstr[0] "Передаємо файл %u з %u..."
485 msgstr[1] "Передаємо файл %u з %u..."
486 msgstr[2] "Передаємо файл %u з %u..."
487
488 #: src/virt-viewer-file-transfer-dialog.c:225
489 msgid "An error caused the following file transfers to fail:"
490 msgstr ""
491
492 #: src/virt-viewer-main.c:38
507493 msgid "Virt Viewer"
508494 msgstr "Перегляд віртуальних систем"
509495
510 #: ../src/virt-viewer-session-spice.c:704
496 #: src/virt-viewer-session-spice.c:731
511497 msgid "Invalid password"
512498 msgstr "Некоректний пароль"
513499
514 #. Create the widgets
515 #: ../src/virt-viewer-session-spice.c:802
500 #: src/virt-viewer-session-spice.c:829
516501 msgid "Select USB devices for redirection"
517502 msgstr "Виберіть пристрої USB для переспрямування"
518503
519 #: ../src/virt-viewer-session-spice.c:804
520 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
504 #: src/virt-viewer-session-spice.c:831
505 #: src/resources/ui/virt-viewer-guest-details.ui:23
521506 msgid "_Close"
522507 msgstr "З_акрити"
523508
524 #: ../src/virt-viewer-session-vnc.c:162
525 #, c-format
526 msgid "Unsupported authentication type %d"
527 msgstr "Непідтримуваний тип розпізнавання %d"
528
529 #: ../src/virt-viewer-vm-connection.c:64
509 #: src/virt-viewer-session-spice.c:1019
510 msgid "Serial"
511 msgstr "Послідовний"
512
513 #: src/virt-viewer-session-spice.c:1021
514 msgid "QEMU human monitor"
515 msgstr "Монітор для людини QEMU"
516
517 #: src/virt-viewer-session-spice.c:1023
518 msgid "QEMU debug console"
519 msgstr "Діагностична консоль QEMU"
520
521 #: src/virt-viewer-session-vnc.c:158
522 #, c-format
523 msgid "Unsupported authentication type %u"
524 msgstr "Непідтримуваний тип розпізнавання %u"
525
526 #: src/virt-viewer-vm-connection.c:64
530527 msgid "No running virtual machine found"
531 msgstr ""
532
533 #: ../src/virt-viewer-vm-connection.c:93
528 msgstr "Не знайдено запущених віртуальних машин"
529
530 #: src/virt-viewer-vm-connection.c:93
534531 msgid "No virtual machine was chosen"
535532 msgstr "Не вибрано віртуальної машини"
536533
537 #: ../src/virt-viewer-window.c:544
534 #: src/virt-viewer-window.c:621
538535 msgid "Ctrl+Alt+_Del"
539536 msgstr "Ctrl+Alt+_Del"
540537
541 #: ../src/virt-viewer-window.c:545
538 #: src/virt-viewer-window.c:622
542539 msgid "Ctrl+Alt+_Backspace"
543540 msgstr "Ctrl+Alt+_Backspace"
544541
545 #: ../src/virt-viewer-window.c:547
542 #: src/virt-viewer-window.c:624
546543 msgid "Ctrl+Alt+F_1"
547544 msgstr "Ctrl+Alt+F_1"
548545
549 #: ../src/virt-viewer-window.c:548
546 #: src/virt-viewer-window.c:625
550547 msgid "Ctrl+Alt+F_2"
551548 msgstr "Ctrl+Alt+F_2"
552549
553 #: ../src/virt-viewer-window.c:549
550 #: src/virt-viewer-window.c:626
554551 msgid "Ctrl+Alt+F_3"
555552 msgstr "Ctrl+Alt+F_3"
556553
557 #: ../src/virt-viewer-window.c:550
554 #: src/virt-viewer-window.c:627
558555 msgid "Ctrl+Alt+F_4"
559556 msgstr "Ctrl+Alt+F_4"
560557
561 #: ../src/virt-viewer-window.c:551
558 #: src/virt-viewer-window.c:628
562559 msgid "Ctrl+Alt+F_5"
563560 msgstr "Ctrl+Alt+F_5"
564561
565 #: ../src/virt-viewer-window.c:552
562 #: src/virt-viewer-window.c:629
566563 msgid "Ctrl+Alt+F_6"
567564 msgstr "Ctrl+Alt+F_6"
568565
569 #: ../src/virt-viewer-window.c:553
566 #: src/virt-viewer-window.c:630
570567 msgid "Ctrl+Alt+F_7"
571568 msgstr "Ctrl+Alt+F_7"
572569
573 #: ../src/virt-viewer-window.c:554
570 #: src/virt-viewer-window.c:631
574571 msgid "Ctrl+Alt+F_8"
575572 msgstr "Ctrl+Alt+F_8"
576573
577 #: ../src/virt-viewer-window.c:555
574 #: src/virt-viewer-window.c:632
578575 msgid "Ctrl+Alt+F_9"
579576 msgstr "Ctrl+Alt+F_9"
580577
581 #: ../src/virt-viewer-window.c:556
578 #: src/virt-viewer-window.c:633
582579 msgid "Ctrl+Alt+F1_0"
583580 msgstr "Ctrl+Alt+F1_0"
584581
585 #: ../src/virt-viewer-window.c:557
582 #: src/virt-viewer-window.c:634
586583 msgid "Ctrl+Alt+F11"
587584 msgstr "Ctrl+Alt+F11"
588585
589 #: ../src/virt-viewer-window.c:558
586 #: src/virt-viewer-window.c:635
590587 msgid "Ctrl+Alt+F12"
591588 msgstr "Ctrl+Alt+F12"
592589
593 #: ../src/virt-viewer-window.c:953
590 #: src/virt-viewer-window.c:637
591 msgid "_PrintScreen"
592 msgstr ""
593
594 #: src/virt-viewer-window.c:1030
594595 #, c-format
595596 msgid "Unable to determine image format for file '%s'"
596 msgstr ""
597
598 #: ../src/virt-viewer-window.c:980
597 msgstr "Не вдалося визначити формат образу для файла «%s»"
598
599 #: src/virt-viewer-window.c:1053
600 msgid "Save screenshot"
601 msgstr ""
602
603 #: src/virt-viewer-window.c:1057
599604 msgid "_Save"
600605 msgstr "З_берегти"
601606
602 #: ../src/virt-viewer-window.c:988
607 #: src/virt-viewer-window.c:1065
603608 msgid "Screenshot.png"
604 msgstr ""
605
606 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
609 msgstr "Знімок_вікна.png"
610
611 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
607612 msgid "Unknown"
608613 msgstr "Невідомо"
609614
610 #: ../src/virt-viewer-window.c:1152
615 #: src/virt-viewer-window.c:1237
611616 msgid "Unable to connnect to oVirt"
612617 msgstr "Не вдалося встановити з’єднання із oVirt"
613618
614 #: ../src/virt-viewer-window.c:1175
619 #: src/virt-viewer-window.c:1260
615620 msgid "Disconnect"
616621 msgstr "Від’єднатися"
617622
618 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
623 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
619624 msgid "USB device selection"
620625 msgstr "Вибір пристрою USB"
621626
622 #: ../src/virt-viewer-window.c:1193
627 #: src/virt-viewer-window.c:1278
623628 msgid "Send key combination"
624629 msgstr "Надіслати комбінацію ключів"
625630
626 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
631 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
627632 msgid "Leave fullscreen"
628633 msgstr "Вийти з повноекранного режиму"
629634
630 #: ../src/virt-viewer-window.c:1279
635 #: src/virt-viewer-window.c:1364
631636 msgid "Ctrl+Alt"
632637 msgstr "Ctrl+Alt"
633638
634 #: ../src/virt-viewer-window.c:1282
639 #: src/virt-viewer-window.c:1367
635640 #, c-format
636641 msgid "(Press %s to release pointer)"
637642 msgstr "(Натисніть %s, щоб вивільнити вказівник)"
638643
639 #. translators:
640 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
641 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
642 #.
643 #: ../src/virt-viewer-window.c:1293
644 #: src/virt-viewer-window.c:1378
644645 #, c-format
645646 msgid "%s%s%s - %s"
646647 msgstr "%s%s%s — %s"
647648
648 #. translators: <space>
649 #: ../src/virt-viewer-window.c:1297
649 #: src/virt-viewer-window.c:1382
650650 msgid " "
651651 msgstr " "
652652
653 #: ../src/virt-viewer-file.c:862
653 #: src/virt-viewer-file.c:875
654654 #, c-format
655655 msgid ""
656656 "At least %s version %s is required to setup this connection, see %s for "
659659 "Для налаштовування цього з’єднання потрібна принаймні версія %s %s, див. %s, "
660660 "щоб дізнатися більше"
661661
662 #: ../src/virt-viewer-file.c:870
662 #: src/virt-viewer-file.c:883
663663 #, c-format
664664 msgid "At least %s version %s is required to setup this connection"
665665 msgstr "Для налаштовування цього з’єднання потрібна принаймні версія %s %s"
666666
667 #: ../src/virt-viewer.c:133
667 #: src/virt-viewer.c:131
668668 msgid "Direct connection with no automatic tunnels"
669669 msgstr "Пряме з’єднання без тунелів"
670670
671 #: ../src/virt-viewer.c:135
671 #: src/virt-viewer.c:133
672672 msgid "Attach to the local display using libvirt"
673673 msgstr "З’єднатися з локальним графічним сеансом за допомогою libvirt"
674674
675 #: ../src/virt-viewer.c:137
675 #: src/virt-viewer.c:135
676676 msgid "Connect to hypervisor"
677677 msgstr "З’єднатися з гіпервізором"
678678
679 #: ../src/virt-viewer.c:139
679 #: src/virt-viewer.c:137
680680 msgid "Wait for domain to start"
681681 msgstr "Чекати на запуск служби"
682682
683 #: ../src/virt-viewer.c:141
683 #: src/virt-viewer.c:139
684684 msgid "Reconnect to domain upon restart"
685685 msgstr "Заново приєднатися до домену після перезапуску"
686686
687 #: ../src/virt-viewer.c:143
687 #: src/virt-viewer.c:141
688688 msgid "Select the virtual machine only by its name"
689689 msgstr "Вибирати віртуальну машину лише за її назвою"
690690
691 #: ../src/virt-viewer.c:145
691 #: src/virt-viewer.c:143
692692 msgid "Select the virtual machine only by its id"
693693 msgstr "Вибрати віртуальну машину лише за її ідентифікатором"
694694
695 #: ../src/virt-viewer.c:147
695 #: src/virt-viewer.c:145
696696 msgid "Select the virtual machine only by its uuid"
697697 msgstr "Вибрати віртуальну машину лише за її uuid"
698698
699 #: ../src/virt-viewer.c:154
699 #: src/virt-viewer.c:152
700700 msgid "Virtual machine graphical console"
701701 msgstr "Графічна консоль віртуальної машини"
702702
703 #: ../src/virt-viewer.c:173
703 #: src/virt-viewer.c:171
704704 #, c-format
705705 msgid ""
706706 "\n"
711711 "Користування: %s [ПАРАМЕТРИ] [ІДЕНТИФІКАТОР|UUID|НАЗВА-ДОМЕНУ]\n"
712712 "\n"
713713
714 #: ../src/virt-viewer.c:185
714 #: src/virt-viewer.c:183
715715 #, c-format
716716 msgid ""
717717 "\n"
722722 "Не вказано ІДЕНТИФІКАТОР|UUID|НАЗВА-ДОМЕНУ для «%s»\n"
723723 "\n"
724724
725 #: ../src/virt-viewer.c:300
725 #: src/virt-viewer.c:296
726726 msgid "Waiting for guest domain to re-start"
727727 msgstr "Очікування на перезапуск гостьового домену"
728728
729 #: ../src/virt-viewer.c:554
729 #: src/virt-viewer.c:550
730730 #, c-format
731731 msgid "Cannot determine the graphic type for the guest %s"
732732 msgstr "Не вдалося визначити тип графічної підсистеми для гостьової системи %s"
733733
734 #: ../src/virt-viewer.c:603
734 #: src/virt-viewer.c:599
735735 #, c-format
736736 msgid "Cannot determine the host for the guest %s"
737737 msgstr "Не вдалося визначити вузол для гостьової системи %s"
738738
739 #: ../src/virt-viewer.c:631
739 #: src/virt-viewer.c:627
740740 #, c-format
741741 msgid "Guest '%s' is not reachable"
742742 msgstr "Гостьова система «%s» недоступна"
743743
744 #: ../src/virt-viewer.c:860
744 #: src/virt-viewer.c:856
745745 #, c-format
746746 msgid "Virtual machine %s is not running"
747747 msgstr "Віртуальну машину %s не запущено"
748748
749 #: ../src/virt-viewer.c:884
749 #: src/virt-viewer.c:881
750750 msgid "Waiting for libvirt to start"
751751 msgstr "Очікуємо на запуск libvirt"
752752
753 #: ../src/virt-viewer.c:888
753 #: src/virt-viewer.c:885
754754 msgid "Finding guest domain"
755755 msgstr "Пошук гостьового домену"
756756
757 #: ../src/virt-viewer.c:892
757 #: src/virt-viewer.c:889
758758 msgid "Waiting for guest domain to be created"
759759 msgstr "Очікування на створення гостьового домену"
760760
761 #: ../src/virt-viewer.c:918
761 #: src/virt-viewer.c:921
762762 msgid "Checking guest domain status"
763763 msgstr "Перевірка стану гостьового домену"
764764
765 #: ../src/virt-viewer.c:921
765 #: src/virt-viewer.c:924
766766 msgid "Cannot get guest state"
767767 msgstr "Не вдалося отримати стан гостьової системи"
768768
769 #: ../src/virt-viewer.c:927
769 #: src/virt-viewer.c:930
770770 msgid "Waiting for guest domain to start"
771771 msgstr "Очікування на запуск гостьового домену"
772772
773 #: ../src/virt-viewer.c:1040
773 #: src/virt-viewer.c:1044
774774 #, c-format
775775 msgid "Unable to connect to libvirt with URI: %s."
776776 msgstr "Не вдалося з’єднатися з libvirt з адресою %s."
777777
778 #: ../src/virt-viewer.c:1041
778 #: src/virt-viewer.c:1045
779779 msgid "[none]"
780780 msgstr "[немає]"
781781
782 #: ../src/virt-viewer.c:1048
782 #: src/virt-viewer.c:1052
783783 msgid "Authentication failed."
784784 msgstr "Спроба пройти розпізнавання зазнала невдачі."
785785
786 #: ../src/virt-viewer.c:1108
786 #: src/virt-viewer.c:1112
787787 msgid "Failed to connect: "
788788 msgstr "Не вдалося з’єднатися: "
789789
790 #.
791 #. * Local variables:
792 #. * c-indent-level: 4
793 #. * c-basic-offset: 4
794 #. * indent-tabs-mode: nil
795 #. * End:
796 #.
797 #: ../src/resources/ui/virt-viewer.ui.h:1
790 #: src/resources/ui/virt-viewer.ui:28
798791 msgid "_File"
799792 msgstr "_Файл"
800793
801 #: ../src/resources/ui/virt-viewer.ui.h:2
794 #: src/resources/ui/virt-viewer.ui:41
802795 msgid "_Screenshot"
803796 msgstr "З_німок вікна"
804797
805 #: ../src/resources/ui/virt-viewer.ui.h:3
798 #: src/resources/ui/virt-viewer.ui:52
806799 msgid "_USB device selection"
807800 msgstr "_Вибір пристрою USB"
808801
809 #: ../src/resources/ui/virt-viewer.ui.h:4
802 #: src/resources/ui/virt-viewer.ui:62
810803 msgid "Smartcard insertion"
811804 msgstr "Вставлення картки пам’яті"
812805
813 #: ../src/resources/ui/virt-viewer.ui.h:5
806 #: src/resources/ui/virt-viewer.ui:72
814807 msgid "Smartcard removal"
815808 msgstr "Вилучення картки пам’яті"
816809
817 #: ../src/resources/ui/virt-viewer.ui.h:6
810 #: src/resources/ui/virt-viewer.ui:80
818811 msgid "_Change CD"
819812 msgstr "За_мінити CD"
820813
821 #: ../src/resources/ui/virt-viewer.ui.h:7
814 #: src/resources/ui/virt-viewer.ui:90
822815 msgid "_Preferences"
823816 msgstr "_Налаштування"
824817
825 #: ../src/resources/ui/virt-viewer.ui.h:8
818 #: src/resources/ui/virt-viewer.ui:103
826819 msgid "_Quit"
827820 msgstr "Ви_йти"
828821
829 #: ../src/resources/ui/virt-viewer.ui.h:9
822 #: src/resources/ui/virt-viewer.ui:119
823 msgid "_Machine"
824 msgstr "_Машина"
825
826 #: src/resources/ui/virt-viewer.ui:129
827 msgid "_Pause"
828 msgstr "П_ризупинити"
829
830 #: src/resources/ui/virt-viewer.ui:144
831 msgid "_Reset"
832 msgstr "_Скинути"
833
834 #: src/resources/ui/virt-viewer.ui:153
835 msgid "_Power down"
836 msgstr "Ви_мкнути"
837
838 #: src/resources/ui/virt-viewer.ui:167
830839 msgid "_View"
831840 msgstr "П_ерегляд"
832841
833 #: ../src/resources/ui/virt-viewer.ui.h:10
842 #: src/resources/ui/virt-viewer.ui:180
834843 msgid "_Full screen"
835844 msgstr "_Повноекранний режим"
836845
837 #: ../src/resources/ui/virt-viewer.ui.h:11
846 #: src/resources/ui/virt-viewer.ui:191
838847 msgid "_Zoom"
839848 msgstr "_Масштаб"
840849
841 #: ../src/resources/ui/virt-viewer.ui.h:12
850 #: src/resources/ui/virt-viewer.ui:201
842851 msgid "Zoom _In"
843852 msgstr "З_більшити"
844853
845 #: ../src/resources/ui/virt-viewer.ui.h:13
854 #: src/resources/ui/virt-viewer.ui:212
846855 msgid "Zoom _Out"
847856 msgstr "З_меншити"
848857
849 #: ../src/resources/ui/virt-viewer.ui.h:14
858 #: src/resources/ui/virt-viewer.ui:229
850859 msgid "_Normal Size"
851860 msgstr "З_вичайний розмір"
852861
853 #: ../src/resources/ui/virt-viewer.ui.h:15
862 #: src/resources/ui/virt-viewer.ui:246
854863 msgid "_Displays"
855864 msgstr "_Дисплеї"
856865
857 #: ../src/resources/ui/virt-viewer.ui.h:16
866 #: src/resources/ui/virt-viewer.ui:255
858867 msgid "Release cursor"
859868 msgstr "Вивільнити вказівник"
860869
861 #: ../src/resources/ui/virt-viewer.ui.h:17
870 #: src/resources/ui/virt-viewer.ui:270
862871 msgid "_Send key"
863872 msgstr "_Надіслати клавішу"
864873
865 #: ../src/resources/ui/virt-viewer.ui.h:18
874 #: src/resources/ui/virt-viewer.ui:279
866875 msgid "_Help"
867876 msgstr "_Довідка"
868877
869 #: ../src/resources/ui/virt-viewer.ui.h:19
878 #: src/resources/ui/virt-viewer.ui:290
870879 msgid "_Guest Details"
871880 msgstr "Параметри _гостьової системи"
872881
873 #: ../src/resources/ui/virt-viewer.ui.h:20
882 #: src/resources/ui/virt-viewer.ui:297
874883 msgid "_About"
875884 msgstr "_Про програму"
876885
877 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
886 #: src/resources/ui/virt-viewer-guest-details.ui:7
878887 msgid "Guest Details"
879888 msgstr "Параметри гостьової системи"
880889
881 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
890 #: src/resources/ui/virt-viewer-guest-details.ui:56
882891 msgid "Name:"
883892 msgstr "Назва:"
884893
885 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
894 #: src/resources/ui/virt-viewer-guest-details.ui:68
886895 msgid "GUID:"
887896 msgstr "GUID:"
888897
889 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
898 #: src/resources/ui/virt-viewer-vm-connection.ui:7
890899 msgid "Choose a virtual machine"
891900 msgstr "Виберіть віртуальну машину"
892901
893 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
902 #: src/resources/ui/virt-viewer-vm-connection.ui:96
894903 msgid "Available virtual machines"
895904 msgstr "Доступні віртуальні машини"
896905
897 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
906 #: src/resources/ui/virt-viewer-preferences.ui:8
898907 msgid "Preferences"
899908 msgstr "Параметри"
900909
901 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
910 #: src/resources/ui/virt-viewer-preferences.ui:48
902911 msgid "Folder sharing"
903912 msgstr "Спільне використання тек"
904913
905 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
914 #: src/resources/ui/virt-viewer-preferences.ui:70
906915 msgid "Share folder"
907916 msgstr "Оприлюднити теку"
908917
909 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
918 #: src/resources/ui/virt-viewer-preferences.ui:82
910919 msgid "Read-only"
911920 msgstr "Лише читання"
912921
913 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
922 #: src/resources/ui/virt-viewer-preferences.ui:96
923 msgid "Share clipboard"
924 msgstr ""
925
926 #: src/resources/ui/virt-viewer-preferences.ui:132
914927 msgid "Spice"
915928 msgstr "Spice"
929
930 #~ msgid "virt-manager.org"
931 #~ msgstr "virt-manager.org"
932
933 #~ msgid "virt-viewer"
934 #~ msgstr "virt-viewer"
Binary diff not shown
+264
-252
po/ur.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Urdu\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
+264
-252
po/vi.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Vietnamese\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
0 # Virt Viewer package strings.
1 # Copyright (C) 2020 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4 #
5 #, fuzzy
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: virt-viewer 9.0\n"
9 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
10 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
22 msgid "Remote Viewer"
23 msgstr ""
24
25 #: data/remote-viewer.appdata.xml.in:7
26 msgid "Remotely access virtual machines"
27 msgstr ""
28
29 #: data/remote-viewer.appdata.xml.in:9
30 msgid ""
31 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
32 "time it supports guest OS using the VNC or SPICE protocols. Further "
33 "protocols may be supported in the future as user demand dictates. The viewer "
34 "can connect directly to both local and remotely hosted guest OS, optionally "
35 "using SSL/TLS encryption."
36 msgstr ""
37
38 #: data/remote-viewer.desktop.in:4
39 msgid "Access remote desktops"
40 msgstr ""
41
42 #: src/remote-viewer-iso-list-dialog.c:156
43 msgid "Failed to fetch CD names"
44 msgstr ""
45
46 #: src/remote-viewer-iso-list-dialog.c:205
47 msgid "<b>Loading...</b>"
48 msgstr ""
49
50 #: src/remote-viewer-iso-list-dialog.c:276
51 msgid "Refresh"
52 msgstr ""
53
54 #: src/remote-viewer-iso-list-dialog.c:277
55 msgid "Close"
56 msgstr ""
57
58 #: src/remote-viewer-iso-list-dialog.c:297
59 msgid "Unspecified error"
60 msgstr ""
61
62 #: src/remote-viewer-iso-list-dialog.c:318
63 msgid "Failed to change CD"
64 msgstr ""
65
66 #: src/remote-viewer-iso-list-dialog.c:370
67 msgid "Change CD"
68 msgstr ""
69
70 #: src/remote-viewer.c:116
71 msgid "Set window title"
72 msgstr ""
73
74 #: src/remote-viewer.c:123
75 msgid "Remote viewer client"
76 msgstr ""
77
78 #: src/remote-viewer.c:148
79 msgid ""
80 "\n"
81 "Error: can't handle multiple URIs\n"
82 "\n"
83 msgstr ""
84
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
86 #, c-format
87 msgid "Run '%s --help' to see a full list of available command line options\n"
88 msgstr ""
89
90 #: src/remote-viewer.c:429
91 msgid "failed to parse ovirt uri"
92 msgstr ""
93
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
95 msgid "Authentication was cancelled"
96 msgstr ""
97
98 #: src/remote-viewer.c:472
99 #, c-format
100 msgid "oVirt VM %s is not running"
101 msgstr ""
102
103 #: src/remote-viewer.c:486
104 #, c-format
105 msgid "oVirt VM %s has no display"
106 msgstr ""
107
108 #: src/remote-viewer.c:512
109 #, c-format
110 msgid "oVirt VM %s has no host information"
111 msgstr ""
112
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
123 msgid "Failed to initiate connection"
124 msgstr ""
125
126 #: src/remote-viewer.c:747
127 msgid "No connection was chosen"
128 msgstr ""
129
130 #: src/remote-viewer.c:764
131 msgid "Failed to read stdin: "
132 msgstr ""
133
134 #: src/remote-viewer.c:781
135 #, c-format
136 msgid "Invalid file %s: "
137 msgstr ""
138
139 #: src/remote-viewer.c:791
140 msgid "Cannot determine the connection type from URI"
141 msgstr ""
142
143 #: src/remote-viewer.c:810
144 #, c-format
145 msgid "Unable to connect: %s"
146 msgstr ""
147
148 #: src/resources/ui/remote-viewer-connect.ui:6
149 msgid "Connection details"
150 msgstr ""
151
152 #: src/resources/ui/remote-viewer-connect.ui:24
153 msgid "Connection _Address"
154 msgstr ""
155
156 #: src/resources/ui/remote-viewer-connect.ui:54
157 msgid "For example, spice://foo.example.org:5900"
158 msgstr ""
159
160 #: src/resources/ui/remote-viewer-connect.ui:78
161 msgid "Recent connections"
162 msgstr ""
163
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
168 msgid "_Cancel"
169 msgstr ""
170
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
173 msgid "C_onnect"
174 msgstr ""
175
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
177 msgid "Loading..."
178 msgstr ""
179
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
181 msgid "Select ISO"
182 msgstr ""
183
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
185 msgid "Selected"
186 msgstr ""
187
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
190 msgid "Name"
191 msgstr ""
192
193 #: src/resources/ui/virt-viewer-about.ui:7
194 msgid "About Virt-Viewer"
195 msgstr ""
196
197 #: src/resources/ui/virt-viewer-about.ui:16
198 msgid ""
199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
200 "Copyright (C) 2007-2014 Red Hat, Inc."
201 msgstr ""
202
203 #: src/resources/ui/virt-viewer-about.ui:18
204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
205 msgstr ""
206
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
212 msgid ""
213 "This program is free software; you can redistribute it and/or modify\n"
214 "it under the terms of the GNU General Public License as published by\n"
215 "the Free Software Foundation; either version 2 of the License, or\n"
216 "(at your option) any later version.\n"
217 "\n"
218 "This program is distributed in the hope that it will be useful,\n"
219 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
220 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
221 "GNU General Public License for more details.\n"
222 "\n"
223 "You should have received a copy of the GNU General Public License\n"
224 "along with this program; if not, write to the Free Software\n"
225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
226 msgstr ""
227
228 #: src/resources/ui/virt-viewer-about.ui:38
229 msgid "The Fedora Translation Team"
230 msgstr ""
231
232 #: src/virt-viewer-app.c:594
233 msgid "Do you want to close the session?"
234 msgstr ""
235
236 #: src/virt-viewer-app.c:596
237 msgid "Do not ask me again"
238 msgstr ""
239
240 #: src/virt-viewer-app.c:767
241 #, c-format
242 msgid "Address is too long for unix socket_path: %s"
243 msgstr ""
244
245 #: src/virt-viewer-app.c:777
246 #, c-format
247 msgid "Creating unix socket failed: %s"
248 msgstr ""
249
250 #: src/virt-viewer-app.c:783
251 #, c-format
252 msgid "Connecting to unix socket failed: %s"
253 msgstr ""
254
255 #: src/virt-viewer-app.c:1077
256 #, c-format
257 msgid "Waiting for display %d..."
258 msgstr ""
259
260 #: src/virt-viewer-app.c:1193
261 #, c-format
262 msgid "Unsupported graphic type '%s'"
263 msgstr ""
264
265 #: src/virt-viewer-app.c:1277
266 msgid "Connect to ssh failed."
267 msgstr ""
268
269 #: src/virt-viewer-app.c:1292
270 #, c-format
271 msgid "Can't connect to channel: %s"
272 msgstr ""
273
274 #: src/virt-viewer-app.c:1294
275 msgid "only SSH or unix socket connection supported."
276 msgstr ""
277
278 #: src/virt-viewer-app.c:1311
279 msgid "Connect to channel unsupported."
280 msgstr ""
281
282 #: src/virt-viewer-app.c:1376
283 msgid "Display can only be attached through libvirt with --attach"
284 msgstr ""
285
286 #: src/virt-viewer-app.c:1401
287 msgid "Connecting to graphic server"
288 msgstr ""
289
290 #: src/virt-viewer-app.c:1500
291 msgid "Guest domain has shutdown"
292 msgstr ""
293
294 #: src/virt-viewer-app.c:1561
295 msgid "Connected to graphic server"
296 msgstr ""
297
298 #: src/virt-viewer-app.c:1590
299 #, c-format
300 msgid "Unable to connect to the graphic server %s"
301 msgstr ""
302
303 #: src/virt-viewer-app.c:1616
304 #, c-format
305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
306 msgstr ""
307
308 #: src/virt-viewer-app.c:1630
309 #, c-format
310 msgid "Unable to authenticate with remote desktop server: %s"
311 msgstr ""
312
313 #: src/virt-viewer-app.c:1638
314 #, c-format
315 msgid "USB redirection error: %s"
316 msgstr ""
317
318 #: src/virt-viewer-app.c:2026
319 #, c-format
320 msgid "Zoom level must be within %d-%d\n"
321 msgstr ""
322
323 #: src/virt-viewer-app.c:2081
324 #, c-format
325 msgid "%s\n"
326 msgstr ""
327
328 #: src/virt-viewer-app.c:2091
329 #, c-format
330 msgid "%s version %s"
331 msgstr ""
332
333 #: src/virt-viewer-app.c:2545
334 #, c-format
335 msgid "Display _%d"
336 msgstr ""
337
338 #: src/virt-viewer-app.c:2829
339 #, c-format
340 msgid "Invalid kiosk-quit argument: %s"
341 msgstr ""
342
343 #: src/virt-viewer-app.c:2840
344 msgid "Display version information"
345 msgstr ""
346
347 #: src/virt-viewer-app.c:2842
348 msgid "Zoom level of window, in percentage"
349 msgstr ""
350
351 #: src/virt-viewer-app.c:2844
352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
353 msgstr ""
354
355 #: src/virt-viewer-app.c:2846
356 msgid "Customise hotkeys"
357 msgstr ""
358
359 #: src/virt-viewer-app.c:2848
360 msgid "Enable kiosk mode"
361 msgstr ""
362
363 #: src/virt-viewer-app.c:2850
364 msgid "Quit on given condition in kiosk mode"
365 msgstr ""
366
367 #: src/virt-viewer-app.c:2850
368 msgid "<never|on-disconnect>"
369 msgstr ""
370
371 #: src/virt-viewer-app.c:2852
372 msgid "Display verbose information"
373 msgstr ""
374
375 #: src/virt-viewer-app.c:2854
376 msgid "Display debugging information"
377 msgstr ""
378
379 #: src/virt-viewer-auth.c:89
380 #, c-format
381 msgid ""
382 "Authentication is required for the %s connection to:\n"
383 "\n"
384 "<b>%s</b>\n"
385 "\n"
386 msgstr ""
387
388 #: src/virt-viewer-auth.c:93
389 #, c-format
390 msgid "Authentication is required for the %s connection:\n"
391 msgstr ""
392
393 #: src/resources/ui/virt-viewer-auth.ui:7
394 msgid "Authentication required"
395 msgstr ""
396
397 #: src/resources/ui/virt-viewer-auth.ui:42
398 msgid "_OK"
399 msgstr ""
400
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
405 msgid "label"
406 msgstr ""
407
408 #: src/resources/ui/virt-viewer-auth.ui:93
409 msgid "Password:"
410 msgstr ""
411
412 #: src/resources/ui/virt-viewer-auth.ui:105
413 msgid "Username:"
414 msgstr ""
415
416 #: src/resources/ui/virt-viewer-auth.ui:137
417 msgid "Show password"
418 msgstr ""
419
420 #: src/virt-viewer-display-vnc.c:130
421 msgid "VNC does not provide GUID"
422 msgstr ""
423
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
429 msgid "File Transfers"
430 msgstr ""
431
432 #: src/virt-viewer-file-transfer-dialog.c:150
433 msgid "Transferring 1 file..."
434 msgstr ""
435
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
440 msgstr[0] ""
441 msgstr[1] ""
442
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
448 msgid "Virt Viewer"
449 msgstr ""
450
451 #: src/virt-viewer-session-spice.c:731
452 msgid "Invalid password"
453 msgstr ""
454
455 #: src/virt-viewer-session-spice.c:829
456 msgid "Select USB devices for redirection"
457 msgstr ""
458
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
461 msgid "_Close"
462 msgstr ""
463
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
482 msgid "No running virtual machine found"
483 msgstr ""
484
485 #: src/virt-viewer-vm-connection.c:93
486 msgid "No virtual machine was chosen"
487 msgstr ""
488
489 #: src/virt-viewer-window.c:621
490 msgid "Ctrl+Alt+_Del"
491 msgstr ""
492
493 #: src/virt-viewer-window.c:622
494 msgid "Ctrl+Alt+_Backspace"
495 msgstr ""
496
497 #: src/virt-viewer-window.c:624
498 msgid "Ctrl+Alt+F_1"
499 msgstr ""
500
501 #: src/virt-viewer-window.c:625
502 msgid "Ctrl+Alt+F_2"
503 msgstr ""
504
505 #: src/virt-viewer-window.c:626
506 msgid "Ctrl+Alt+F_3"
507 msgstr ""
508
509 #: src/virt-viewer-window.c:627
510 msgid "Ctrl+Alt+F_4"
511 msgstr ""
512
513 #: src/virt-viewer-window.c:628
514 msgid "Ctrl+Alt+F_5"
515 msgstr ""
516
517 #: src/virt-viewer-window.c:629
518 msgid "Ctrl+Alt+F_6"
519 msgstr ""
520
521 #: src/virt-viewer-window.c:630
522 msgid "Ctrl+Alt+F_7"
523 msgstr ""
524
525 #: src/virt-viewer-window.c:631
526 msgid "Ctrl+Alt+F_8"
527 msgstr ""
528
529 #: src/virt-viewer-window.c:632
530 msgid "Ctrl+Alt+F_9"
531 msgstr ""
532
533 #: src/virt-viewer-window.c:633
534 msgid "Ctrl+Alt+F1_0"
535 msgstr ""
536
537 #: src/virt-viewer-window.c:634
538 msgid "Ctrl+Alt+F11"
539 msgstr ""
540
541 #: src/virt-viewer-window.c:635
542 msgid "Ctrl+Alt+F12"
543 msgstr ""
544
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550 #, c-format
551 msgid "Unable to determine image format for file '%s'"
552 msgstr ""
553
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
559 msgid "_Save"
560 msgstr ""
561
562 #: src/virt-viewer-window.c:1065
563 msgid "Screenshot.png"
564 msgstr ""
565
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
567 msgid "Unknown"
568 msgstr ""
569
570 #: src/virt-viewer-window.c:1237
571 msgid "Unable to connnect to oVirt"
572 msgstr ""
573
574 #: src/virt-viewer-window.c:1260
575 msgid "Disconnect"
576 msgstr ""
577
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
579 msgid "USB device selection"
580 msgstr ""
581
582 #: src/virt-viewer-window.c:1278
583 msgid "Send key combination"
584 msgstr ""
585
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
587 msgid "Leave fullscreen"
588 msgstr ""
589
590 #: src/virt-viewer-window.c:1364
591 msgid "Ctrl+Alt"
592 msgstr ""
593
594 #: src/virt-viewer-window.c:1367
595 #, c-format
596 msgid "(Press %s to release pointer)"
597 msgstr ""
598
599 #: src/virt-viewer-window.c:1378
600 #, c-format
601 msgid "%s%s%s - %s"
602 msgstr ""
603
604 #: src/virt-viewer-window.c:1382
605 msgid " "
606 msgstr ""
607
608 #: src/virt-viewer-file.c:875
609 #, c-format
610 msgid ""
611 "At least %s version %s is required to setup this connection, see %s for "
612 "details"
613 msgstr ""
614
615 #: src/virt-viewer-file.c:883
616 #, c-format
617 msgid "At least %s version %s is required to setup this connection"
618 msgstr ""
619
620 #: src/virt-viewer.c:131
621 msgid "Direct connection with no automatic tunnels"
622 msgstr ""
623
624 #: src/virt-viewer.c:133
625 msgid "Attach to the local display using libvirt"
626 msgstr ""
627
628 #: src/virt-viewer.c:135
629 msgid "Connect to hypervisor"
630 msgstr ""
631
632 #: src/virt-viewer.c:137
633 msgid "Wait for domain to start"
634 msgstr ""
635
636 #: src/virt-viewer.c:139
637 msgid "Reconnect to domain upon restart"
638 msgstr ""
639
640 #: src/virt-viewer.c:141
641 msgid "Select the virtual machine only by its name"
642 msgstr ""
643
644 #: src/virt-viewer.c:143
645 msgid "Select the virtual machine only by its id"
646 msgstr ""
647
648 #: src/virt-viewer.c:145
649 msgid "Select the virtual machine only by its uuid"
650 msgstr ""
651
652 #: src/virt-viewer.c:152
653 msgid "Virtual machine graphical console"
654 msgstr ""
655
656 #: src/virt-viewer.c:171
657 #, c-format
658 msgid ""
659 "\n"
660 "Usage: %s [OPTIONS] [ID|UUID|DOMAIN-NAME]\n"
661 "\n"
662 msgstr ""
663
664 #: src/virt-viewer.c:183
665 #, c-format
666 msgid ""
667 "\n"
668 "No ID|UUID|DOMAIN-NAME was specified for '%s'\n"
669 "\n"
670 msgstr ""
671
672 #: src/virt-viewer.c:296
673 msgid "Waiting for guest domain to re-start"
674 msgstr ""
675
676 #: src/virt-viewer.c:550
677 #, c-format
678 msgid "Cannot determine the graphic type for the guest %s"
679 msgstr ""
680
681 #: src/virt-viewer.c:599
682 #, c-format
683 msgid "Cannot determine the host for the guest %s"
684 msgstr ""
685
686 #: src/virt-viewer.c:627
687 #, c-format
688 msgid "Guest '%s' is not reachable"
689 msgstr ""
690
691 #: src/virt-viewer.c:856
692 #, c-format
693 msgid "Virtual machine %s is not running"
694 msgstr ""
695
696 #: src/virt-viewer.c:881
697 msgid "Waiting for libvirt to start"
698 msgstr ""
699
700 #: src/virt-viewer.c:885
701 msgid "Finding guest domain"
702 msgstr ""
703
704 #: src/virt-viewer.c:889
705 msgid "Waiting for guest domain to be created"
706 msgstr ""
707
708 #: src/virt-viewer.c:921
709 msgid "Checking guest domain status"
710 msgstr ""
711
712 #: src/virt-viewer.c:924
713 msgid "Cannot get guest state"
714 msgstr ""
715
716 #: src/virt-viewer.c:930
717 msgid "Waiting for guest domain to start"
718 msgstr ""
719
720 #: src/virt-viewer.c:1044
721 #, c-format
722 msgid "Unable to connect to libvirt with URI: %s."
723 msgstr ""
724
725 #: src/virt-viewer.c:1045
726 msgid "[none]"
727 msgstr ""
728
729 #: src/virt-viewer.c:1052
730 msgid "Authentication failed."
731 msgstr ""
732
733 #: src/virt-viewer.c:1112
734 msgid "Failed to connect: "
735 msgstr ""
736
737 #: src/resources/ui/virt-viewer.ui:28
738 msgid "_File"
739 msgstr ""
740
741 #: src/resources/ui/virt-viewer.ui:41
742 msgid "_Screenshot"
743 msgstr ""
744
745 #: src/resources/ui/virt-viewer.ui:52
746 msgid "_USB device selection"
747 msgstr ""
748
749 #: src/resources/ui/virt-viewer.ui:62
750 msgid "Smartcard insertion"
751 msgstr ""
752
753 #: src/resources/ui/virt-viewer.ui:72
754 msgid "Smartcard removal"
755 msgstr ""
756
757 #: src/resources/ui/virt-viewer.ui:80
758 msgid "_Change CD"
759 msgstr ""
760
761 #: src/resources/ui/virt-viewer.ui:90
762 msgid "_Preferences"
763 msgstr ""
764
765 #: src/resources/ui/virt-viewer.ui:103
766 msgid "_Quit"
767 msgstr ""
768
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
786 msgid "_View"
787 msgstr ""
788
789 #: src/resources/ui/virt-viewer.ui:180
790 msgid "_Full screen"
791 msgstr ""
792
793 #: src/resources/ui/virt-viewer.ui:191
794 msgid "_Zoom"
795 msgstr ""
796
797 #: src/resources/ui/virt-viewer.ui:201
798 msgid "Zoom _In"
799 msgstr ""
800
801 #: src/resources/ui/virt-viewer.ui:212
802 msgid "Zoom _Out"
803 msgstr ""
804
805 #: src/resources/ui/virt-viewer.ui:229
806 msgid "_Normal Size"
807 msgstr ""
808
809 #: src/resources/ui/virt-viewer.ui:246
810 msgid "_Displays"
811 msgstr ""
812
813 #: src/resources/ui/virt-viewer.ui:255
814 msgid "Release cursor"
815 msgstr ""
816
817 #: src/resources/ui/virt-viewer.ui:270
818 msgid "_Send key"
819 msgstr ""
820
821 #: src/resources/ui/virt-viewer.ui:279
822 msgid "_Help"
823 msgstr ""
824
825 #: src/resources/ui/virt-viewer.ui:290
826 msgid "_Guest Details"
827 msgstr ""
828
829 #: src/resources/ui/virt-viewer.ui:297
830 msgid "_About"
831 msgstr ""
832
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
834 msgid "Guest Details"
835 msgstr ""
836
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
838 msgid "Name:"
839 msgstr ""
840
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
842 msgid "GUID:"
843 msgstr ""
844
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
846 msgid "Choose a virtual machine"
847 msgstr ""
848
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
850 msgid "Available virtual machines"
851 msgstr ""
852
853 #: src/resources/ui/virt-viewer-preferences.ui:8
854 msgid "Preferences"
855 msgstr ""
856
857 #: src/resources/ui/virt-viewer-preferences.ui:48
858 msgid "Folder sharing"
859 msgstr ""
860
861 #: src/resources/ui/virt-viewer-preferences.ui:70
862 msgid "Share folder"
863 msgstr ""
864
865 #: src/resources/ui/virt-viewer-preferences.ui:82
866 msgid "Read-only"
867 msgstr ""
868
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
874 msgid "Spice"
875 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
12 "Language-Team: wba\n"
12 "Language-Team: Warao\n"
1313 "Language: wba\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
+264
-252
po/yo.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Yoruba\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441 msgstr[1] ""
456442
457 #: ../src/virt-viewer-file-transfer-dialog.c:228
458 #, c-format
459 msgid "An error caused the following file transfers to fail:%s"
460 msgstr ""
461
462 #: ../src/virt-viewer-main.c:38
443 #: src/virt-viewer-file-transfer-dialog.c:225
444 msgid "An error caused the following file transfers to fail:"
445 msgstr ""
446
447 #: src/virt-viewer-main.c:38
463448 msgid "Virt Viewer"
464449 msgstr ""
465450
466 #: ../src/virt-viewer-session-spice.c:704
451 #: src/virt-viewer-session-spice.c:731
467452 msgid "Invalid password"
468453 msgstr ""
469454
470 #. Create the widgets
471 #: ../src/virt-viewer-session-spice.c:802
455 #: src/virt-viewer-session-spice.c:829
472456 msgid "Select USB devices for redirection"
473457 msgstr ""
474458
475 #: ../src/virt-viewer-session-spice.c:804
476 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
459 #: src/virt-viewer-session-spice.c:831
460 #: src/resources/ui/virt-viewer-guest-details.ui:23
477461 msgid "_Close"
478462 msgstr ""
479463
480 #: ../src/virt-viewer-session-vnc.c:162
481 #, c-format
482 msgid "Unsupported authentication type %d"
483 msgstr ""
484
485 #: ../src/virt-viewer-vm-connection.c:64
464 #: src/virt-viewer-session-spice.c:1019
465 msgid "Serial"
466 msgstr ""
467
468 #: src/virt-viewer-session-spice.c:1021
469 msgid "QEMU human monitor"
470 msgstr ""
471
472 #: src/virt-viewer-session-spice.c:1023
473 msgid "QEMU debug console"
474 msgstr ""
475
476 #: src/virt-viewer-session-vnc.c:158
477 #, c-format
478 msgid "Unsupported authentication type %u"
479 msgstr ""
480
481 #: src/virt-viewer-vm-connection.c:64
486482 msgid "No running virtual machine found"
487483 msgstr ""
488484
489 #: ../src/virt-viewer-vm-connection.c:93
485 #: src/virt-viewer-vm-connection.c:93
490486 msgid "No virtual machine was chosen"
491487 msgstr ""
492488
493 #: ../src/virt-viewer-window.c:544
489 #: src/virt-viewer-window.c:621
494490 msgid "Ctrl+Alt+_Del"
495491 msgstr ""
496492
497 #: ../src/virt-viewer-window.c:545
493 #: src/virt-viewer-window.c:622
498494 msgid "Ctrl+Alt+_Backspace"
499495 msgstr ""
500496
501 #: ../src/virt-viewer-window.c:547
497 #: src/virt-viewer-window.c:624
502498 msgid "Ctrl+Alt+F_1"
503499 msgstr ""
504500
505 #: ../src/virt-viewer-window.c:548
501 #: src/virt-viewer-window.c:625
506502 msgid "Ctrl+Alt+F_2"
507503 msgstr ""
508504
509 #: ../src/virt-viewer-window.c:549
505 #: src/virt-viewer-window.c:626
510506 msgid "Ctrl+Alt+F_3"
511507 msgstr ""
512508
513 #: ../src/virt-viewer-window.c:550
509 #: src/virt-viewer-window.c:627
514510 msgid "Ctrl+Alt+F_4"
515511 msgstr ""
516512
517 #: ../src/virt-viewer-window.c:551
513 #: src/virt-viewer-window.c:628
518514 msgid "Ctrl+Alt+F_5"
519515 msgstr ""
520516
521 #: ../src/virt-viewer-window.c:552
517 #: src/virt-viewer-window.c:629
522518 msgid "Ctrl+Alt+F_6"
523519 msgstr ""
524520
525 #: ../src/virt-viewer-window.c:553
521 #: src/virt-viewer-window.c:630
526522 msgid "Ctrl+Alt+F_7"
527523 msgstr ""
528524
529 #: ../src/virt-viewer-window.c:554
525 #: src/virt-viewer-window.c:631
530526 msgid "Ctrl+Alt+F_8"
531527 msgstr ""
532528
533 #: ../src/virt-viewer-window.c:555
529 #: src/virt-viewer-window.c:632
534530 msgid "Ctrl+Alt+F_9"
535531 msgstr ""
536532
537 #: ../src/virt-viewer-window.c:556
533 #: src/virt-viewer-window.c:633
538534 msgid "Ctrl+Alt+F1_0"
539535 msgstr ""
540536
541 #: ../src/virt-viewer-window.c:557
537 #: src/virt-viewer-window.c:634
542538 msgid "Ctrl+Alt+F11"
543539 msgstr ""
544540
545 #: ../src/virt-viewer-window.c:558
541 #: src/virt-viewer-window.c:635
546542 msgid "Ctrl+Alt+F12"
547543 msgstr ""
548544
549 #: ../src/virt-viewer-window.c:953
545 #: src/virt-viewer-window.c:637
546 msgid "_PrintScreen"
547 msgstr ""
548
549 #: src/virt-viewer-window.c:1030
550550 #, c-format
551551 msgid "Unable to determine image format for file '%s'"
552552 msgstr ""
553553
554 #: ../src/virt-viewer-window.c:980
554 #: src/virt-viewer-window.c:1053
555 msgid "Save screenshot"
556 msgstr ""
557
558 #: src/virt-viewer-window.c:1057
555559 msgid "_Save"
556560 msgstr ""
557561
558 #: ../src/virt-viewer-window.c:988
562 #: src/virt-viewer-window.c:1065
559563 msgid "Screenshot.png"
560564 msgstr ""
561565
562 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
566 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
563567 msgid "Unknown"
564568 msgstr ""
565569
566 #: ../src/virt-viewer-window.c:1152
570 #: src/virt-viewer-window.c:1237
567571 msgid "Unable to connnect to oVirt"
568572 msgstr ""
569573
570 #: ../src/virt-viewer-window.c:1175
574 #: src/virt-viewer-window.c:1260
571575 msgid "Disconnect"
572576 msgstr ""
573577
574 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
578 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
575579 msgid "USB device selection"
576580 msgstr ""
577581
578 #: ../src/virt-viewer-window.c:1193
582 #: src/virt-viewer-window.c:1278
579583 msgid "Send key combination"
580584 msgstr ""
581585
582 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
586 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
583587 msgid "Leave fullscreen"
584588 msgstr ""
585589
586 #: ../src/virt-viewer-window.c:1279
590 #: src/virt-viewer-window.c:1364
587591 msgid "Ctrl+Alt"
588592 msgstr ""
589593
590 #: ../src/virt-viewer-window.c:1282
594 #: src/virt-viewer-window.c:1367
591595 #, c-format
592596 msgid "(Press %s to release pointer)"
593597 msgstr ""
594598
595 #. translators:
596 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
597 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
598 #.
599 #: ../src/virt-viewer-window.c:1293
599 #: src/virt-viewer-window.c:1378
600600 #, c-format
601601 msgid "%s%s%s - %s"
602602 msgstr ""
603603
604 #. translators: <space>
605 #: ../src/virt-viewer-window.c:1297
604 #: src/virt-viewer-window.c:1382
606605 msgid " "
607606 msgstr ""
608607
609 #: ../src/virt-viewer-file.c:862
608 #: src/virt-viewer-file.c:875
610609 #, c-format
611610 msgid ""
612611 "At least %s version %s is required to setup this connection, see %s for "
613612 "details"
614613 msgstr ""
615614
616 #: ../src/virt-viewer-file.c:870
615 #: src/virt-viewer-file.c:883
617616 #, c-format
618617 msgid "At least %s version %s is required to setup this connection"
619618 msgstr ""
620619
621 #: ../src/virt-viewer.c:133
620 #: src/virt-viewer.c:131
622621 msgid "Direct connection with no automatic tunnels"
623622 msgstr ""
624623
625 #: ../src/virt-viewer.c:135
624 #: src/virt-viewer.c:133
626625 msgid "Attach to the local display using libvirt"
627626 msgstr ""
628627
629 #: ../src/virt-viewer.c:137
628 #: src/virt-viewer.c:135
630629 msgid "Connect to hypervisor"
631630 msgstr ""
632631
633 #: ../src/virt-viewer.c:139
632 #: src/virt-viewer.c:137
634633 msgid "Wait for domain to start"
635634 msgstr ""
636635
637 #: ../src/virt-viewer.c:141
636 #: src/virt-viewer.c:139
638637 msgid "Reconnect to domain upon restart"
639638 msgstr ""
640639
641 #: ../src/virt-viewer.c:143
640 #: src/virt-viewer.c:141
642641 msgid "Select the virtual machine only by its name"
643642 msgstr ""
644643
645 #: ../src/virt-viewer.c:145
644 #: src/virt-viewer.c:143
646645 msgid "Select the virtual machine only by its id"
647646 msgstr ""
648647
649 #: ../src/virt-viewer.c:147
648 #: src/virt-viewer.c:145
650649 msgid "Select the virtual machine only by its uuid"
651650 msgstr ""
652651
653 #: ../src/virt-viewer.c:154
652 #: src/virt-viewer.c:152
654653 msgid "Virtual machine graphical console"
655654 msgstr ""
656655
657 #: ../src/virt-viewer.c:173
656 #: src/virt-viewer.c:171
658657 #, c-format
659658 msgid ""
660659 "\n"
662661 "\n"
663662 msgstr ""
664663
665 #: ../src/virt-viewer.c:185
664 #: src/virt-viewer.c:183
666665 #, c-format
667666 msgid ""
668667 "\n"
670669 "\n"
671670 msgstr ""
672671
673 #: ../src/virt-viewer.c:300
672 #: src/virt-viewer.c:296
674673 msgid "Waiting for guest domain to re-start"
675674 msgstr ""
676675
677 #: ../src/virt-viewer.c:554
676 #: src/virt-viewer.c:550
678677 #, c-format
679678 msgid "Cannot determine the graphic type for the guest %s"
680679 msgstr ""
681680
682 #: ../src/virt-viewer.c:603
681 #: src/virt-viewer.c:599
683682 #, c-format
684683 msgid "Cannot determine the host for the guest %s"
685684 msgstr ""
686685
687 #: ../src/virt-viewer.c:631
686 #: src/virt-viewer.c:627
688687 #, c-format
689688 msgid "Guest '%s' is not reachable"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:860
691 #: src/virt-viewer.c:856
693692 #, c-format
694693 msgid "Virtual machine %s is not running"
695694 msgstr ""
696695
697 #: ../src/virt-viewer.c:884
696 #: src/virt-viewer.c:881
698697 msgid "Waiting for libvirt to start"
699698 msgstr ""
700699
701 #: ../src/virt-viewer.c:888
700 #: src/virt-viewer.c:885
702701 msgid "Finding guest domain"
703702 msgstr ""
704703
705 #: ../src/virt-viewer.c:892
704 #: src/virt-viewer.c:889
706705 msgid "Waiting for guest domain to be created"
707706 msgstr ""
708707
709 #: ../src/virt-viewer.c:918
708 #: src/virt-viewer.c:921
710709 msgid "Checking guest domain status"
711710 msgstr ""
712711
713 #: ../src/virt-viewer.c:921
712 #: src/virt-viewer.c:924
714713 msgid "Cannot get guest state"
715714 msgstr ""
716715
717 #: ../src/virt-viewer.c:927
716 #: src/virt-viewer.c:930
718717 msgid "Waiting for guest domain to start"
719718 msgstr ""
720719
721 #: ../src/virt-viewer.c:1040
720 #: src/virt-viewer.c:1044
722721 #, c-format
723722 msgid "Unable to connect to libvirt with URI: %s."
724723 msgstr ""
725724
726 #: ../src/virt-viewer.c:1041
725 #: src/virt-viewer.c:1045
727726 msgid "[none]"
728727 msgstr ""
729728
730 #: ../src/virt-viewer.c:1048
729 #: src/virt-viewer.c:1052
731730 msgid "Authentication failed."
732731 msgstr ""
733732
734 #: ../src/virt-viewer.c:1108
733 #: src/virt-viewer.c:1112
735734 msgid "Failed to connect: "
736735 msgstr ""
737736
738 #.
739 #. * Local variables:
740 #. * c-indent-level: 4
741 #. * c-basic-offset: 4
742 #. * indent-tabs-mode: nil
743 #. * End:
744 #.
745 #: ../src/resources/ui/virt-viewer.ui.h:1
737 #: src/resources/ui/virt-viewer.ui:28
746738 msgid "_File"
747739 msgstr ""
748740
749 #: ../src/resources/ui/virt-viewer.ui.h:2
741 #: src/resources/ui/virt-viewer.ui:41
750742 msgid "_Screenshot"
751743 msgstr ""
752744
753 #: ../src/resources/ui/virt-viewer.ui.h:3
745 #: src/resources/ui/virt-viewer.ui:52
754746 msgid "_USB device selection"
755747 msgstr ""
756748
757 #: ../src/resources/ui/virt-viewer.ui.h:4
749 #: src/resources/ui/virt-viewer.ui:62
758750 msgid "Smartcard insertion"
759751 msgstr ""
760752
761 #: ../src/resources/ui/virt-viewer.ui.h:5
753 #: src/resources/ui/virt-viewer.ui:72
762754 msgid "Smartcard removal"
763755 msgstr ""
764756
765 #: ../src/resources/ui/virt-viewer.ui.h:6
757 #: src/resources/ui/virt-viewer.ui:80
766758 msgid "_Change CD"
767759 msgstr ""
768760
769 #: ../src/resources/ui/virt-viewer.ui.h:7
761 #: src/resources/ui/virt-viewer.ui:90
770762 msgid "_Preferences"
771763 msgstr ""
772764
773 #: ../src/resources/ui/virt-viewer.ui.h:8
765 #: src/resources/ui/virt-viewer.ui:103
774766 msgid "_Quit"
775767 msgstr ""
776768
777 #: ../src/resources/ui/virt-viewer.ui.h:9
769 #: src/resources/ui/virt-viewer.ui:119
770 msgid "_Machine"
771 msgstr ""
772
773 #: src/resources/ui/virt-viewer.ui:129
774 msgid "_Pause"
775 msgstr ""
776
777 #: src/resources/ui/virt-viewer.ui:144
778 msgid "_Reset"
779 msgstr ""
780
781 #: src/resources/ui/virt-viewer.ui:153
782 msgid "_Power down"
783 msgstr ""
784
785 #: src/resources/ui/virt-viewer.ui:167
778786 msgid "_View"
779787 msgstr ""
780788
781 #: ../src/resources/ui/virt-viewer.ui.h:10
789 #: src/resources/ui/virt-viewer.ui:180
782790 msgid "_Full screen"
783791 msgstr ""
784792
785 #: ../src/resources/ui/virt-viewer.ui.h:11
793 #: src/resources/ui/virt-viewer.ui:191
786794 msgid "_Zoom"
787795 msgstr ""
788796
789 #: ../src/resources/ui/virt-viewer.ui.h:12
797 #: src/resources/ui/virt-viewer.ui:201
790798 msgid "Zoom _In"
791799 msgstr ""
792800
793 #: ../src/resources/ui/virt-viewer.ui.h:13
801 #: src/resources/ui/virt-viewer.ui:212
794802 msgid "Zoom _Out"
795803 msgstr ""
796804
797 #: ../src/resources/ui/virt-viewer.ui.h:14
805 #: src/resources/ui/virt-viewer.ui:229
798806 msgid "_Normal Size"
799807 msgstr ""
800808
801 #: ../src/resources/ui/virt-viewer.ui.h:15
809 #: src/resources/ui/virt-viewer.ui:246
802810 msgid "_Displays"
803811 msgstr ""
804812
805 #: ../src/resources/ui/virt-viewer.ui.h:16
813 #: src/resources/ui/virt-viewer.ui:255
806814 msgid "Release cursor"
807815 msgstr ""
808816
809 #: ../src/resources/ui/virt-viewer.ui.h:17
817 #: src/resources/ui/virt-viewer.ui:270
810818 msgid "_Send key"
811819 msgstr ""
812820
813 #: ../src/resources/ui/virt-viewer.ui.h:18
821 #: src/resources/ui/virt-viewer.ui:279
814822 msgid "_Help"
815823 msgstr ""
816824
817 #: ../src/resources/ui/virt-viewer.ui.h:19
825 #: src/resources/ui/virt-viewer.ui:290
818826 msgid "_Guest Details"
819827 msgstr ""
820828
821 #: ../src/resources/ui/virt-viewer.ui.h:20
829 #: src/resources/ui/virt-viewer.ui:297
822830 msgid "_About"
823831 msgstr ""
824832
825 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
833 #: src/resources/ui/virt-viewer-guest-details.ui:7
826834 msgid "Guest Details"
827835 msgstr ""
828836
829 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
837 #: src/resources/ui/virt-viewer-guest-details.ui:56
830838 msgid "Name:"
831839 msgstr ""
832840
833 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
841 #: src/resources/ui/virt-viewer-guest-details.ui:68
834842 msgid "GUID:"
835843 msgstr ""
836844
837 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
845 #: src/resources/ui/virt-viewer-vm-connection.ui:7
838846 msgid "Choose a virtual machine"
839847 msgstr ""
840848
841 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
849 #: src/resources/ui/virt-viewer-vm-connection.ui:96
842850 msgid "Available virtual machines"
843851 msgstr ""
844852
845 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
853 #: src/resources/ui/virt-viewer-preferences.ui:8
846854 msgid "Preferences"
847855 msgstr ""
848856
849 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
857 #: src/resources/ui/virt-viewer-preferences.ui:48
850858 msgid "Folder sharing"
851859 msgstr ""
852860
853 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
861 #: src/resources/ui/virt-viewer-preferences.ui:70
854862 msgid "Share folder"
855863 msgstr ""
856864
857 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
865 #: src/resources/ui/virt-viewer-preferences.ui:82
858866 msgid "Read-only"
859867 msgstr ""
860868
861 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
869 #: src/resources/ui/virt-viewer-preferences.ui:96
870 msgid "Share clipboard"
871 msgstr ""
872
873 #: src/resources/ui/virt-viewer-preferences.ui:132
862874 msgid "Spice"
863875 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1010 # Leah Liu <lliu@redhat.com>, 2016. #zanata
1111 msgid ""
1212 msgstr ""
13 "Project-Id-Version: PACKAGE VERSION\n"
14 "Report-Msgid-Bugs-To: \n"
15 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
16 "PO-Revision-Date: 2016-02-23 12:28-0500\n"
13 "Project-Id-Version: virt-viewer 9.0\n"
14 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
15 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
16 "PO-Revision-Date: 2016-02-23 12:28+0000\n"
1717 "Last-Translator: Leah Liu <lliu@redhat.com>\n"
1818 "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/virt-"
1919 "viewer/language/zh_CN/)\n"
20 "Language: zh-CN\n"
20 "Language: zh_CN\n"
2121 "MIME-Version: 1.0\n"
2222 "Content-Type: text/plain; charset=UTF-8\n"
2323 "Content-Transfer-Encoding: 8bit\n"
2424 "Plural-Forms: nplurals=1; plural=0;\n"
25 "X-Generator: Zanata 3.9.6\n"
26
27 #: ../data/remote-viewer.appdata.xml.in.h:1
28 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
25 "X-Generator: Zanata 4.6.2\n"
26
27 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
28 #: src/remote-viewer-main.c:39
2929 msgid "Remote Viewer"
3030 msgstr "远程查看程序"
3131
32 #: ../data/remote-viewer.appdata.xml.in.h:2
32 #: data/remote-viewer.appdata.xml.in:7
3333 msgid "Remotely access virtual machines"
3434 msgstr ""
3535
36 #: ../data/remote-viewer.appdata.xml.in.h:3
36 #: data/remote-viewer.appdata.xml.in:9
3737 msgid ""
3838 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3939 "time it supports guest OS using the VNC or SPICE protocols. Further "
4242 "using SSL/TLS encryption."
4343 msgstr ""
4444
45 #: ../data/remote-viewer.desktop.in.h:2
45 #: data/remote-viewer.desktop.in:4
4646 msgid "Access remote desktops"
4747 msgstr "访问远程桌面"
4848
49 #: ../data/virt-viewer-mime.xml.in.h:1
50 msgid "Virt-Viewer connection file"
51 msgstr "Virt-Viewer 连接文件"
52
53 #: ../src/remote-viewer-iso-list-dialog.c:160
49 #: src/remote-viewer-iso-list-dialog.c:156
5450 msgid "Failed to fetch CD names"
5551 msgstr ""
5652
57 #: ../src/remote-viewer-iso-list-dialog.c:212
53 #: src/remote-viewer-iso-list-dialog.c:205
5854 msgid "<b>Loading...</b>"
5955 msgstr ""
6056
61 #: ../src/remote-viewer-iso-list-dialog.c:285
57 #: src/remote-viewer-iso-list-dialog.c:276
6258 msgid "Refresh"
6359 msgstr ""
6460
65 #: ../src/remote-viewer-iso-list-dialog.c:286
61 #: src/remote-viewer-iso-list-dialog.c:277
6662 msgid "Close"
6763 msgstr ""
6864
69 #: ../src/remote-viewer-iso-list-dialog.c:306
65 #: src/remote-viewer-iso-list-dialog.c:297
7066 msgid "Unspecified error"
7167 msgstr ""
7268
73 #: ../src/remote-viewer-iso-list-dialog.c:328
69 #: src/remote-viewer-iso-list-dialog.c:318
7470 msgid "Failed to change CD"
7571 msgstr ""
7672
77 #: ../src/remote-viewer-iso-list-dialog.c:380
73 #: src/remote-viewer-iso-list-dialog.c:370
7874 msgid "Change CD"
7975 msgstr ""
8076
81 #: ../src/remote-viewer.c:118
77 #: src/remote-viewer.c:116
8278 msgid "Set window title"
8379 msgstr "设置窗口标题"
8480
85 #: ../src/remote-viewer.c:125
81 #: src/remote-viewer.c:123
8682 msgid "Remote viewer client"
8783 msgstr "远程查看客户端"
8884
89 #: ../src/remote-viewer.c:150
90 #, c-format
85 #: src/remote-viewer.c:148
9186 msgid ""
9287 "\n"
9388 "Error: can't handle multiple URIs\n"
9489 "\n"
9590 msgstr ""
9691
97 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
92 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9893 #, c-format
9994 msgid "Run '%s --help' to see a full list of available command line options\n"
10095 msgstr ""
10196
102 #: ../src/remote-viewer.c:435
97 #: src/remote-viewer.c:429
10398 msgid "failed to parse ovirt uri"
10499 msgstr "解析 ovirt uri 失败"
105100
106 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
101 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
107102 msgid "Authentication was cancelled"
108103 msgstr "已取消认证"
109104
110 #: ../src/remote-viewer.c:480
105 #: src/remote-viewer.c:472
111106 #, c-format
112107 msgid "oVirt VM %s is not running"
113108 msgstr "oVirt VM %s 未运行"
114109
115 #: ../src/remote-viewer.c:494
110 #: src/remote-viewer.c:486
116111 #, c-format
117112 msgid "oVirt VM %s has no display"
118113 msgstr "oVirt VM %s 没有显示器"
119114
120 #: ../src/remote-viewer.c:520
115 #: src/remote-viewer.c:512
121116 #, c-format
122117 msgid "oVirt VM %s has no host information"
123118 msgstr "oVirt VM %s 没有主机虚拟系"
124119
125 #: ../src/remote-viewer.c:531
126 #, c-format
127 msgid "oVirt VM %s has unknown display type: %d"
128 msgstr "oVirt VM %s 有未知限制器类型:%d"
129
130 #: ../src/remote-viewer.c:713
120 #: src/remote-viewer.c:523
121 #, c-format
122 msgid "oVirt VM %s has unknown display type: %u"
123 msgstr ""
124
125 #: src/remote-viewer.c:690
126 msgid "Couldn't open oVirt session: "
127 msgstr "无法打开 oVirt 会话:"
128
129 #: src/remote-viewer.c:718
131130 msgid "Failed to initiate connection"
132131 msgstr "初始化连接失败"
133132
134 #: ../src/remote-viewer.c:742
133 #: src/remote-viewer.c:747
135134 msgid "No connection was chosen"
136135 msgstr "没有选择任何连接"
137136
138 #: ../src/remote-viewer.c:759
137 #: src/remote-viewer.c:764
139138 msgid "Failed to read stdin: "
140139 msgstr ""
141140
142 #: ../src/remote-viewer.c:776
141 #: src/remote-viewer.c:781
143142 #, c-format
144143 msgid "Invalid file %s: "
145144 msgstr "无效文件 %s:"
146145
147 #: ../src/remote-viewer.c:786
146 #: src/remote-viewer.c:791
148147 msgid "Cannot determine the connection type from URI"
149148 msgstr "无法确定 URI 的连接类型"
150149
151 #: ../src/remote-viewer.c:792
152 msgid "Couldn't open oVirt session: "
153 msgstr "无法打开 oVirt 会话:"
154
155 #: ../src/remote-viewer.c:815
150 #: src/remote-viewer.c:810
156151 #, c-format
157152 msgid "Unable to connect: %s"
158153 msgstr ""
159154
160 #.
161 #. * Local variables:
162 #. * c-indent-level: 4
163 #. * c-basic-offset: 4
164 #. * indent-tabs-mode: nil
165 #. * End:
166 #.
167 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
155 #: src/resources/ui/remote-viewer-connect.ui:6
168156 msgid "Connection details"
169157 msgstr "连接详情"
170158
171 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
159 #: src/resources/ui/remote-viewer-connect.ui:24
172160 msgid "Connection _Address"
173161 msgstr ""
174162
175 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
163 #: src/resources/ui/remote-viewer-connect.ui:54
176164 msgid "For example, spice://foo.example.org:5900"
177165 msgstr "例如:spice://foo.example.org:5900"
178166
179 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
167 #: src/resources/ui/remote-viewer-connect.ui:78
180168 msgid "Recent connections"
181169 msgstr "最近的连接"
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
184 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
185 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
186 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
171 #: src/resources/ui/remote-viewer-connect.ui:120
172 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
173 #: src/resources/ui/virt-viewer-vm-connection.ui:24
174 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
187175 msgid "_Cancel"
188176 msgstr ""
189177
190 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
191 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
178 #: src/resources/ui/remote-viewer-connect.ui:134
179 #: src/resources/ui/virt-viewer-vm-connection.ui:38
192180 msgid "C_onnect"
193181 msgstr ""
194182
195 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
183 #: src/resources/ui/remote-viewer-iso-list.ui:28
196184 msgid "Loading..."
197185 msgstr ""
198186
199 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
187 #: src/resources/ui/remote-viewer-iso-list.ui:78
200188 msgid "Select ISO"
201189 msgstr ""
202190
203 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
191 #: src/resources/ui/remote-viewer-iso-list.ui:116
204192 msgid "Selected"
205193 msgstr ""
206194
207 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
208 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
195 #: src/resources/ui/remote-viewer-iso-list.ui:129
196 #: src/resources/ui/virt-viewer-vm-connection.ui:72
209197 msgid "Name"
210198 msgstr "名称"
211199
212 #: ../src/resources/ui/virt-viewer-about.ui.h:1
200 #: src/resources/ui/virt-viewer-about.ui:7
213201 msgid "About Virt-Viewer"
214202 msgstr ""
215203
216 #: ../src/resources/ui/virt-viewer-about.ui.h:2
204 #: src/resources/ui/virt-viewer-about.ui:16
217205 msgid ""
218206 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
219207 "Copyright (C) 2007-2014 Red Hat, Inc."
221209 "版权所有 (C) 2007-2012 Daniel P. Berrange\n"
222210 "版权所有 (C) 2007-2010 Red Hat, Inc."
223211
224 #: ../src/resources/ui/virt-viewer-about.ui.h:4
212 #: src/resources/ui/virt-viewer-about.ui:18
225213 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
226214 msgstr "使用 GTK-VNC, SPICE-GTK 和 libvirt 构建远程桌面客户端"
227215
228 #: ../src/resources/ui/virt-viewer-about.ui.h:5
229 msgid "virt-manager.org"
230 msgstr "virt-manager.org"
231
232 #: ../src/resources/ui/virt-viewer-about.ui.h:6
216 #: src/resources/ui/virt-viewer-about.ui:20
217 msgid "gitlab.com/virt-viewer/virt-viewer"
218 msgstr ""
219
220 #: src/resources/ui/virt-viewer-about.ui:21
233221 msgid ""
234222 "This program is free software; you can redistribute it and/or modify\n"
235223 "it under the terms of the GNU General Public License as published by\n"
257245 "如果没有,请致电自由软件基金\n"
258246 "59 Temple Place, Suite 330, Boston, MA 02111-1307 USA⏎ \n"
259247
260 #: ../src/resources/ui/virt-viewer-about.ui.h:20
248 #: src/resources/ui/virt-viewer-about.ui:38
261249 msgid "The Fedora Translation Team"
262250 msgstr "Fedora 翻译团队"
263251
264 #: ../src/virt-viewer-app.c:459
252 #: src/virt-viewer-app.c:594
265253 msgid "Do you want to close the session?"
266254 msgstr "您要关闭这个会话吗?"
267255
268 #: ../src/virt-viewer-app.c:461
256 #: src/virt-viewer-app.c:596
269257 msgid "Do not ask me again"
270258 msgstr "不要再问我"
271259
272 #: ../src/virt-viewer-app.c:655
260 #: src/virt-viewer-app.c:767
273261 #, c-format
274262 msgid "Address is too long for unix socket_path: %s"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:665
265 #: src/virt-viewer-app.c:777
278266 #, c-format
279267 msgid "Creating unix socket failed: %s"
280268 msgstr ""
281269
282 #: ../src/virt-viewer-app.c:671
270 #: src/virt-viewer-app.c:783
283271 #, c-format
284272 msgid "Connecting to unix socket failed: %s"
285273 msgstr ""
286274
287 #: ../src/virt-viewer-app.c:955
275 #: src/virt-viewer-app.c:1077
288276 #, c-format
289277 msgid "Waiting for display %d..."
290278 msgstr "等待显示器 %d......"
291279
292 #: ../src/virt-viewer-app.c:1062
280 #: src/virt-viewer-app.c:1193
293281 #, c-format
294282 msgid "Unsupported graphic type '%s'"
295283 msgstr "不支持的图形类型 '%s'"
296284
297 #: ../src/virt-viewer-app.c:1146
285 #: src/virt-viewer-app.c:1277
298286 msgid "Connect to ssh failed."
299287 msgstr "连接到 ssh 失败"
300288
301 #: ../src/virt-viewer-app.c:1161
289 #: src/virt-viewer-app.c:1292
302290 #, c-format
303291 msgid "Can't connect to channel: %s"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1163
294 #: src/virt-viewer-app.c:1294
307295 msgid "only SSH or unix socket connection supported."
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1176
298 #: src/virt-viewer-app.c:1311
311299 msgid "Connect to channel unsupported."
312300 msgstr "无法连接到不支持的通道。"
313301
314 #: ../src/virt-viewer-app.c:1238
302 #: src/virt-viewer-app.c:1376
315303 msgid "Display can only be attached through libvirt with --attach"
316304 msgstr "只能通过 libvirt 使用 --attach 连接显示器"
317305
318 #: ../src/virt-viewer-app.c:1263
306 #: src/virt-viewer-app.c:1401
319307 msgid "Connecting to graphic server"
320308 msgstr "正在连接到图形服务器"
321309
322 #: ../src/virt-viewer-app.c:1362
310 #: src/virt-viewer-app.c:1500
323311 msgid "Guest domain has shutdown"
324312 msgstr "已关闭虚拟机域"
325313
326 #: ../src/virt-viewer-app.c:1423
314 #: src/virt-viewer-app.c:1561
327315 msgid "Connected to graphic server"
328316 msgstr "已连接到图形服务器"
329317
330 #: ../src/virt-viewer-app.c:1452
318 #: src/virt-viewer-app.c:1590
331319 #, c-format
332320 msgid "Unable to connect to the graphic server %s"
333321 msgstr "无法连接到图形服务器 %s"
334322
335 #: ../src/virt-viewer-app.c:1478
323 #: src/virt-viewer-app.c:1616
336324 #, c-format
337325 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
338326 msgstr "无法使用远程桌面服务器在 %s 认证: %s\n"
339327
340 #: ../src/virt-viewer-app.c:1492
328 #: src/virt-viewer-app.c:1630
341329 #, c-format
342330 msgid "Unable to authenticate with remote desktop server: %s"
343331 msgstr "无法使用远程桌面服务器验证:%s"
344332
345 #: ../src/virt-viewer-app.c:1500
333 #: src/virt-viewer-app.c:1638
346334 #, c-format
347335 msgid "USB redirection error: %s"
348336 msgstr "USB 重新定向错误:%s"
349337
350 #: ../src/virt-viewer-app.c:1834
338 #: src/virt-viewer-app.c:2026
351339 #, c-format
352340 msgid "Zoom level must be within %d-%d\n"
353341 msgstr "缩放级别必须在 %d-%d 之间\n"
354342
355 #: ../src/virt-viewer-app.c:1887
343 #: src/virt-viewer-app.c:2081
356344 #, c-format
357345 msgid "%s\n"
358346 msgstr ""
359347
360 #: ../src/virt-viewer-app.c:1897
348 #: src/virt-viewer-app.c:2091
361349 #, c-format
362350 msgid "%s version %s"
363351 msgstr ""
364352
365 #: ../src/virt-viewer-app.c:2321
353 #: src/virt-viewer-app.c:2545
366354 #, c-format
367355 msgid "Display _%d"
368356 msgstr ""
369357
370 #: ../src/virt-viewer-app.c:2577
358 #: src/virt-viewer-app.c:2829
371359 #, c-format
372360 msgid "Invalid kiosk-quit argument: %s"
373361 msgstr "无效的 kiosk-quit 参数:%s"
374362
375 #: ../src/virt-viewer-app.c:2588
363 #: src/virt-viewer-app.c:2840
376364 msgid "Display version information"
377365 msgstr "显示版本信息"
378366
379 #: ../src/virt-viewer-app.c:2590
367 #: src/virt-viewer-app.c:2842
380368 msgid "Zoom level of window, in percentage"
381369 msgstr "窗口缩放级别,以百分比计"
382370
383 #: ../src/virt-viewer-app.c:2592
371 #: src/virt-viewer-app.c:2844
384372 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
385373 msgstr "以全屏模式打开(调整虚拟机解析度使其适用于客户端)"
386374
387 #: ../src/virt-viewer-app.c:2594
375 #: src/virt-viewer-app.c:2846
388376 msgid "Customise hotkeys"
389377 msgstr "自定义快捷键"
390378
391 #: ../src/virt-viewer-app.c:2596
379 #: src/virt-viewer-app.c:2848
392380 msgid "Enable kiosk mode"
393381 msgstr "启用 kiosk 模式"
394382
395 #: ../src/virt-viewer-app.c:2598
383 #: src/virt-viewer-app.c:2850
396384 msgid "Quit on given condition in kiosk mode"
397385 msgstr "以 kiosk 模式中给出的条件退出"
398386
399 #: ../src/virt-viewer-app.c:2598
387 #: src/virt-viewer-app.c:2850
400388 msgid "<never|on-disconnect>"
401389 msgstr "<never|on-disconnect>"
402390
403 #: ../src/virt-viewer-app.c:2600
391 #: src/virt-viewer-app.c:2852
404392 msgid "Display verbose information"
405393 msgstr "显示详细信息"
406394
407 #: ../src/virt-viewer-app.c:2602
395 #: src/virt-viewer-app.c:2854
408396 msgid "Display debugging information"
409397 msgstr "显示调试信息"
410398
411 #: ../src/virt-viewer-auth.c:89
399 #: src/virt-viewer-auth.c:89
412400 #, c-format
413401 msgid ""
414402 "Authentication is required for the %s connection to:\n"
421409 "<b>%s</b>\n"
422410 "\n"
423411
424 #: ../src/virt-viewer-auth.c:93
412 #: src/virt-viewer-auth.c:93
425413 #, c-format
426414 msgid "Authentication is required for the %s connection:\n"
427415 msgstr "需要为 %s 连接进行认证:\n"
428416
429 #.
430 #. * Local variables:
431 #. * c-indent-level: 4
432 #. * c-basic-offset: 4
433 #. * indent-tabs-mode: nil
434 #. * End:
435 #.
436 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
417 #: src/resources/ui/virt-viewer-auth.ui:7
437418 msgid "Authentication required"
438419 msgstr "所需验证"
439420
440 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
421 #: src/resources/ui/virt-viewer-auth.ui:42
441422 msgid "_OK"
442423 msgstr ""
443424
444 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
445 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
446 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
425 #: src/resources/ui/virt-viewer-auth.ui:71
426 #: src/resources/ui/virt-viewer-guest-details.ui:82
427 #: src/resources/ui/virt-viewer-guest-details.ui:96
428 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
447429 msgid "label"
448430 msgstr "标签"
449431
450 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
432 #: src/resources/ui/virt-viewer-auth.ui:93
451433 msgid "Password:"
452434 msgstr "密码:"
453435
454 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
436 #: src/resources/ui/virt-viewer-auth.ui:105
455437 msgid "Username:"
456438 msgstr "用户名:"
457439
458 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
440 #: src/resources/ui/virt-viewer-auth.ui:137
459441 msgid "Show password"
460442 msgstr "显示密码"
461443
462 #: ../src/virt-viewer-display-vnc.c:134
444 #: src/virt-viewer-display-vnc.c:130
463445 msgid "VNC does not provide GUID"
464446 msgstr "VNC 不提供 GUID"
465447
466 #: ../src/virt-viewer-file-transfer-dialog.c:128
448 #: src/virt-viewer-display-vte.c:181
449 msgid "Console support is compiled out!"
450 msgstr ""
451
452 #: src/virt-viewer-file-transfer-dialog.c:124
467453 msgid "File Transfers"
468454 msgstr ""
469455
470 #: ../src/virt-viewer-file-transfer-dialog.c:154
456 #: src/virt-viewer-file-transfer-dialog.c:150
471457 msgid "Transferring 1 file..."
472458 msgstr ""
473459
474 #: ../src/virt-viewer-file-transfer-dialog.c:156
475 #, c-format
476 msgid "Transferring %d file of %d..."
477 msgid_plural "Transferring %d files of %d..."
460 #: src/virt-viewer-file-transfer-dialog.c:152
461 #, c-format
462 msgid "Transferring %u file of %u..."
463 msgid_plural "Transferring %u files of %u..."
478464 msgstr[0] ""
479465
480 #: ../src/virt-viewer-file-transfer-dialog.c:228
481 #, c-format
482 msgid "An error caused the following file transfers to fail:%s"
483 msgstr ""
484
485 #: ../src/virt-viewer-main.c:38
466 #: src/virt-viewer-file-transfer-dialog.c:225
467 msgid "An error caused the following file transfers to fail:"
468 msgstr ""
469
470 #: src/virt-viewer-main.c:38
486471 msgid "Virt Viewer"
487472 msgstr "Virt Viewer"
488473
489 #: ../src/virt-viewer-session-spice.c:704
474 #: src/virt-viewer-session-spice.c:731
490475 msgid "Invalid password"
491476 msgstr "无效密码"
492477
493 #. Create the widgets
494 #: ../src/virt-viewer-session-spice.c:802
478 #: src/virt-viewer-session-spice.c:829
495479 msgid "Select USB devices for redirection"
496480 msgstr "为重新定向选择 USB 设备"
497481
498 #: ../src/virt-viewer-session-spice.c:804
499 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
482 #: src/virt-viewer-session-spice.c:831
483 #: src/resources/ui/virt-viewer-guest-details.ui:23
500484 msgid "_Close"
501485 msgstr ""
502486
503 #: ../src/virt-viewer-session-vnc.c:162
504 #, c-format
505 msgid "Unsupported authentication type %d"
506 msgstr "不支持的验证类型 %d"
507
508 #: ../src/virt-viewer-vm-connection.c:64
487 #: src/virt-viewer-session-spice.c:1019
488 msgid "Serial"
489 msgstr ""
490
491 #: src/virt-viewer-session-spice.c:1021
492 msgid "QEMU human monitor"
493 msgstr ""
494
495 #: src/virt-viewer-session-spice.c:1023
496 msgid "QEMU debug console"
497 msgstr ""
498
499 #: src/virt-viewer-session-vnc.c:158
500 #, c-format
501 msgid "Unsupported authentication type %u"
502 msgstr ""
503
504 #: src/virt-viewer-vm-connection.c:64
509505 msgid "No running virtual machine found"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-vm-connection.c:93
508 #: src/virt-viewer-vm-connection.c:93
513509 msgid "No virtual machine was chosen"
514510 msgstr "未选择虚拟机"
515511
516 #: ../src/virt-viewer-window.c:544
512 #: src/virt-viewer-window.c:621
517513 msgid "Ctrl+Alt+_Del"
518514 msgstr "Ctrl+Alt+_Del"
519515
520 #: ../src/virt-viewer-window.c:545
516 #: src/virt-viewer-window.c:622
521517 msgid "Ctrl+Alt+_Backspace"
522518 msgstr "Ctrl+Alt+_Backspace"
523519
524 #: ../src/virt-viewer-window.c:547
520 #: src/virt-viewer-window.c:624
525521 msgid "Ctrl+Alt+F_1"
526522 msgstr "Ctrl+Alt+F_1"
527523
528 #: ../src/virt-viewer-window.c:548
524 #: src/virt-viewer-window.c:625
529525 msgid "Ctrl+Alt+F_2"
530526 msgstr "Ctrl+Alt+F_2"
531527
532 #: ../src/virt-viewer-window.c:549
528 #: src/virt-viewer-window.c:626
533529 msgid "Ctrl+Alt+F_3"
534530 msgstr "Ctrl+Alt+F_3"
535531
536 #: ../src/virt-viewer-window.c:550
532 #: src/virt-viewer-window.c:627
537533 msgid "Ctrl+Alt+F_4"
538534 msgstr "Ctrl+Alt+F_4"
539535
540 #: ../src/virt-viewer-window.c:551
536 #: src/virt-viewer-window.c:628
541537 msgid "Ctrl+Alt+F_5"
542538 msgstr "Ctrl+Alt+F_5"
543539
544 #: ../src/virt-viewer-window.c:552
540 #: src/virt-viewer-window.c:629
545541 msgid "Ctrl+Alt+F_6"
546542 msgstr "Ctrl+Alt+F_6"
547543
548 #: ../src/virt-viewer-window.c:553
544 #: src/virt-viewer-window.c:630
549545 msgid "Ctrl+Alt+F_7"
550546 msgstr "Ctrl+Alt+F_7"
551547
552 #: ../src/virt-viewer-window.c:554
548 #: src/virt-viewer-window.c:631
553549 msgid "Ctrl+Alt+F_8"
554550 msgstr "Ctrl+Alt+F_8"
555551
556 #: ../src/virt-viewer-window.c:555
552 #: src/virt-viewer-window.c:632
557553 msgid "Ctrl+Alt+F_9"
558554 msgstr "Ctrl+Alt+F_9"
559555
560 #: ../src/virt-viewer-window.c:556
556 #: src/virt-viewer-window.c:633
561557 msgid "Ctrl+Alt+F1_0"
562558 msgstr "Ctrl+Alt+F1_0"
563559
564 #: ../src/virt-viewer-window.c:557
560 #: src/virt-viewer-window.c:634
565561 msgid "Ctrl+Alt+F11"
566562 msgstr "Ctrl+Alt+F11"
567563
568 #: ../src/virt-viewer-window.c:558
564 #: src/virt-viewer-window.c:635
569565 msgid "Ctrl+Alt+F12"
570566 msgstr "Ctrl+Alt+F12"
571567
572 #: ../src/virt-viewer-window.c:953
568 #: src/virt-viewer-window.c:637
569 msgid "_PrintScreen"
570 msgstr ""
571
572 #: src/virt-viewer-window.c:1030
573573 #, c-format
574574 msgid "Unable to determine image format for file '%s'"
575575 msgstr ""
576576
577 #: ../src/virt-viewer-window.c:980
577 #: src/virt-viewer-window.c:1053
578 msgid "Save screenshot"
579 msgstr ""
580
581 #: src/virt-viewer-window.c:1057
578582 msgid "_Save"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:988
585 #: src/virt-viewer-window.c:1065
582586 msgid "Screenshot.png"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
589 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
586590 msgid "Unknown"
587591 msgstr "未知"
588592
589 #: ../src/virt-viewer-window.c:1152
593 #: src/virt-viewer-window.c:1237
590594 msgid "Unable to connnect to oVirt"
591595 msgstr ""
592596
593 #: ../src/virt-viewer-window.c:1175
597 #: src/virt-viewer-window.c:1260
594598 msgid "Disconnect"
595599 msgstr "断开连接"
596600
597 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
601 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
598602 msgid "USB device selection"
599603 msgstr "USB 设备选择"
600604
601 #: ../src/virt-viewer-window.c:1193
605 #: src/virt-viewer-window.c:1278
602606 msgid "Send key combination"
603607 msgstr "发送按键组合"
604608
605 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
609 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
606610 msgid "Leave fullscreen"
607611 msgstr "离开全屏"
608612
609 #: ../src/virt-viewer-window.c:1279
613 #: src/virt-viewer-window.c:1364
610614 msgid "Ctrl+Alt"
611615 msgstr "Ctrl+Alt"
612616
613 #: ../src/virt-viewer-window.c:1282
617 #: src/virt-viewer-window.c:1367
614618 #, c-format
615619 msgid "(Press %s to release pointer)"
616620 msgstr "(按 %s 释放光标)"
617621
618 #. translators:
619 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
620 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
621 #.
622 #: ../src/virt-viewer-window.c:1293
622 #: src/virt-viewer-window.c:1378
623623 #, c-format
624624 msgid "%s%s%s - %s"
625625 msgstr "%s%s%s - %s"
626626
627 #. translators: <space>
628 #: ../src/virt-viewer-window.c:1297
627 #: src/virt-viewer-window.c:1382
629628 msgid " "
630629 msgstr " "
631630
632 #: ../src/virt-viewer-file.c:862
631 #: src/virt-viewer-file.c:875
633632 #, c-format
634633 msgid ""
635634 "At least %s version %s is required to setup this connection, see %s for "
636635 "details"
637636 msgstr "设置这个连接至少需要 %s 的 %s 版本,详情请查看 %s"
638637
639 #: ../src/virt-viewer-file.c:870
638 #: src/virt-viewer-file.c:883
640639 #, c-format
641640 msgid "At least %s version %s is required to setup this connection"
642641 msgstr "设置这个连接至少需要 %s 的 %s 版本"
643642
644 #: ../src/virt-viewer.c:133
643 #: src/virt-viewer.c:131
645644 msgid "Direct connection with no automatic tunnels"
646645 msgstr "无自动通道的直接连接"
647646
648 #: ../src/virt-viewer.c:135
647 #: src/virt-viewer.c:133
649648 msgid "Attach to the local display using libvirt"
650649 msgstr "使用 libvirt 附加本地画面"
651650
652 #: ../src/virt-viewer.c:137
651 #: src/virt-viewer.c:135
653652 msgid "Connect to hypervisor"
654653 msgstr "连接到管理程序(hypervisor)"
655654
656 #: ../src/virt-viewer.c:139
655 #: src/virt-viewer.c:137
657656 msgid "Wait for domain to start"
658657 msgstr "等待域启动"
659658
660 #: ../src/virt-viewer.c:141
659 #: src/virt-viewer.c:139
661660 msgid "Reconnect to domain upon restart"
662661 msgstr "重启后重新连接到域"
663662
664 #: ../src/virt-viewer.c:143
663 #: src/virt-viewer.c:141
665664 msgid "Select the virtual machine only by its name"
666665 msgstr ""
667666
668 #: ../src/virt-viewer.c:145
667 #: src/virt-viewer.c:143
669668 msgid "Select the virtual machine only by its id"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:147
671 #: src/virt-viewer.c:145
673672 msgid "Select the virtual machine only by its uuid"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:154
675 #: src/virt-viewer.c:152
677676 msgid "Virtual machine graphical console"
678677 msgstr "虚拟机图形控制台"
679678
680 #: ../src/virt-viewer.c:173
679 #: src/virt-viewer.c:171
681680 #, c-format
682681 msgid ""
683682 "\n"
685684 "\n"
686685 msgstr ""
687686
688 #: ../src/virt-viewer.c:185
687 #: src/virt-viewer.c:183
689688 #, c-format
690689 msgid ""
691690 "\n"
693692 "\n"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:300
695 #: src/virt-viewer.c:296
697696 msgid "Waiting for guest domain to re-start"
698697 msgstr "等待虚拟机域重启"
699698
700 #: ../src/virt-viewer.c:554
699 #: src/virt-viewer.c:550
701700 #, c-format
702701 msgid "Cannot determine the graphic type for the guest %s"
703702 msgstr "无法确定虚拟机 %s 的图形类型"
704703
705 #: ../src/virt-viewer.c:603
704 #: src/virt-viewer.c:599
706705 #, c-format
707706 msgid "Cannot determine the host for the guest %s"
708707 msgstr "无法确定虚拟机 %s 的主机"
709708
710 #: ../src/virt-viewer.c:631
709 #: src/virt-viewer.c:627
711710 #, c-format
712711 msgid "Guest '%s' is not reachable"
713712 msgstr "无法访问 '%s'"
714713
715 #: ../src/virt-viewer.c:860
714 #: src/virt-viewer.c:856
716715 #, c-format
717716 msgid "Virtual machine %s is not running"
718717 msgstr "虚拟机 %s 未运行"
719718
720 #: ../src/virt-viewer.c:884
719 #: src/virt-viewer.c:881
721720 msgid "Waiting for libvirt to start"
722721 msgstr "等待 libvirt 启动"
723722
724 #: ../src/virt-viewer.c:888
723 #: src/virt-viewer.c:885
725724 msgid "Finding guest domain"
726725 msgstr "正在查找虚拟机域"
727726
728 #: ../src/virt-viewer.c:892
727 #: src/virt-viewer.c:889
729728 msgid "Waiting for guest domain to be created"
730729 msgstr "正在等待生成虚拟机域"
731730
732 #: ../src/virt-viewer.c:918
731 #: src/virt-viewer.c:921
733732 msgid "Checking guest domain status"
734733 msgstr "正在检查虚拟机域状态"
735734
736 #: ../src/virt-viewer.c:921
735 #: src/virt-viewer.c:924
737736 msgid "Cannot get guest state"
738737 msgstr "无法获得虚拟机状态"
739738
740 #: ../src/virt-viewer.c:927
739 #: src/virt-viewer.c:930
741740 msgid "Waiting for guest domain to start"
742741 msgstr "正在等待虚拟机域启动"
743742
744 #: ../src/virt-viewer.c:1040
743 #: src/virt-viewer.c:1044
745744 #, c-format
746745 msgid "Unable to connect to libvirt with URI: %s."
747746 msgstr "无论使用 URI 连接到 libvirt:%s"
748747
749 #: ../src/virt-viewer.c:1041
748 #: src/virt-viewer.c:1045
750749 msgid "[none]"
751750 msgstr "[无]"
752751
753 #: ../src/virt-viewer.c:1048
752 #: src/virt-viewer.c:1052
754753 msgid "Authentication failed."
755754 msgstr "认证失败。"
756755
757 #: ../src/virt-viewer.c:1108
756 #: src/virt-viewer.c:1112
758757 msgid "Failed to connect: "
759758 msgstr "无法连接:"
760759
761 #.
762 #. * Local variables:
763 #. * c-indent-level: 4
764 #. * c-basic-offset: 4
765 #. * indent-tabs-mode: nil
766 #. * End:
767 #.
768 #: ../src/resources/ui/virt-viewer.ui.h:1
760 #: src/resources/ui/virt-viewer.ui:28
769761 msgid "_File"
770762 msgstr "文件(_F)"
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:2
764 #: src/resources/ui/virt-viewer.ui:41
773765 msgid "_Screenshot"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:3
768 #: src/resources/ui/virt-viewer.ui:52
777769 msgid "_USB device selection"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:4
772 #: src/resources/ui/virt-viewer.ui:62
781773 msgid "Smartcard insertion"
782774 msgstr "插入智能卡"
783775
784 #: ../src/resources/ui/virt-viewer.ui.h:5
776 #: src/resources/ui/virt-viewer.ui:72
785777 msgid "Smartcard removal"
786778 msgstr "删除智能卡"
787779
788 #: ../src/resources/ui/virt-viewer.ui.h:6
780 #: src/resources/ui/virt-viewer.ui:80
789781 msgid "_Change CD"
790782 msgstr "更换设备(_C)"
791783
792 #: ../src/resources/ui/virt-viewer.ui.h:7
784 #: src/resources/ui/virt-viewer.ui:90
793785 msgid "_Preferences"
794786 msgstr ""
795787
796 #: ../src/resources/ui/virt-viewer.ui.h:8
788 #: src/resources/ui/virt-viewer.ui:103
797789 msgid "_Quit"
798790 msgstr ""
799791
800 #: ../src/resources/ui/virt-viewer.ui.h:9
792 #: src/resources/ui/virt-viewer.ui:119
793 msgid "_Machine"
794 msgstr ""
795
796 #: src/resources/ui/virt-viewer.ui:129
797 msgid "_Pause"
798 msgstr ""
799
800 #: src/resources/ui/virt-viewer.ui:144
801 msgid "_Reset"
802 msgstr ""
803
804 #: src/resources/ui/virt-viewer.ui:153
805 msgid "_Power down"
806 msgstr ""
807
808 #: src/resources/ui/virt-viewer.ui:167
801809 msgid "_View"
802810 msgstr "查看(_V)"
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:10
812 #: src/resources/ui/virt-viewer.ui:180
805813 msgid "_Full screen"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:11
816 #: src/resources/ui/virt-viewer.ui:191
809817 msgid "_Zoom"
810818 msgstr "缩放(_Z)"
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:12
820 #: src/resources/ui/virt-viewer.ui:201
813821 msgid "Zoom _In"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:13
824 #: src/resources/ui/virt-viewer.ui:212
817825 msgid "Zoom _Out"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:14
828 #: src/resources/ui/virt-viewer.ui:229
821829 msgid "_Normal Size"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:15
832 #: src/resources/ui/virt-viewer.ui:246
825833 msgid "_Displays"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer.ui.h:16
836 #: src/resources/ui/virt-viewer.ui:255
829837 msgid "Release cursor"
830838 msgstr "释放光标"
831839
832 #: ../src/resources/ui/virt-viewer.ui.h:17
840 #: src/resources/ui/virt-viewer.ui:270
833841 msgid "_Send key"
834842 msgstr "发送按键(_S)"
835843
836 #: ../src/resources/ui/virt-viewer.ui.h:18
844 #: src/resources/ui/virt-viewer.ui:279
837845 msgid "_Help"
838846 msgstr "帮助(_H)"
839847
840 #: ../src/resources/ui/virt-viewer.ui.h:19
848 #: src/resources/ui/virt-viewer.ui:290
841849 msgid "_Guest Details"
842850 msgstr "虚拟机详情(_G)"
843851
844 #: ../src/resources/ui/virt-viewer.ui.h:20
852 #: src/resources/ui/virt-viewer.ui:297
845853 msgid "_About"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
856 #: src/resources/ui/virt-viewer-guest-details.ui:7
849857 msgid "Guest Details"
850858 msgstr "虚拟机详情"
851859
852 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
860 #: src/resources/ui/virt-viewer-guest-details.ui:56
853861 msgid "Name:"
854862 msgstr "名称:"
855863
856 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
864 #: src/resources/ui/virt-viewer-guest-details.ui:68
857865 msgid "GUID:"
858866 msgstr "GUID:"
859867
860 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
868 #: src/resources/ui/virt-viewer-vm-connection.ui:7
861869 msgid "Choose a virtual machine"
862870 msgstr "选择虚拟机"
863871
864 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
872 #: src/resources/ui/virt-viewer-vm-connection.ui:96
865873 msgid "Available virtual machines"
866874 msgstr "可用虚拟机"
867875
868 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
876 #: src/resources/ui/virt-viewer-preferences.ui:8
869877 msgid "Preferences"
870878 msgstr "属性"
871879
872 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
880 #: src/resources/ui/virt-viewer-preferences.ui:48
873881 msgid "Folder sharing"
874882 msgstr "文件夹共享"
875883
876 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
884 #: src/resources/ui/virt-viewer-preferences.ui:70
877885 msgid "Share folder"
878886 msgstr "共享文件夹"
879887
880 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
888 #: src/resources/ui/virt-viewer-preferences.ui:82
881889 msgid "Read-only"
882890 msgstr "只读"
883891
884 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
892 #: src/resources/ui/virt-viewer-preferences.ui:96
893 msgid "Share clipboard"
894 msgstr ""
895
896 #: src/resources/ui/virt-viewer-preferences.ui:132
885897 msgid "Spice"
886898 msgstr "Spice"
899
900 #~ msgid "virt-manager.org"
901 #~ msgstr "virt-manager.org"
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Chinese (Hong Kong SAR China)\n"
13 "Language: zh-HK\n"
13 "Language: zh_HK\n"
1414 "MIME-Version: 1.0\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
Binary diff not shown
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 THE PACKAGE'S COPYRIGHT HOLDER
22 # This file is distributed under the same license as the PACKAGE package.
33 #
44 # Translators:
1111 # Terry Chuang <tchuang@redhat.com>, 2016. #zanata
1212 msgid ""
1313 msgstr ""
14 "Project-Id-Version: PACKAGE VERSION\n"
15 "Report-Msgid-Bugs-To: \n"
16 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
17 "PO-Revision-Date: 2016-02-25 07:46-0500\n"
14 "Project-Id-Version: virt-viewer 9.0\n"
15 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
16 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
17 "PO-Revision-Date: 2016-02-25 07:46+0000\n"
1818 "Last-Translator: Chester Cheng <snowlet.cheng@gmail.com>\n"
1919 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/virt-"
2020 "viewer/language/zh_TW/)\n"
21 "Language: zh-TW\n"
21 "Language: zh_TW\n"
2222 "MIME-Version: 1.0\n"
2323 "Content-Type: text/plain; charset=UTF-8\n"
2424 "Content-Transfer-Encoding: 8bit\n"
2525 "Plural-Forms: nplurals=1; plural=0;\n"
26 "X-Generator: Zanata 3.9.6\n"
27
28 #: ../data/remote-viewer.appdata.xml.in.h:1
29 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
26 "X-Generator: Zanata 4.6.2\n"
27
28 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
29 #: src/remote-viewer-main.c:39
3030 msgid "Remote Viewer"
3131 msgstr "遠端檢視器"
3232
33 #: ../data/remote-viewer.appdata.xml.in.h:2
33 #: data/remote-viewer.appdata.xml.in:7
3434 msgid "Remotely access virtual machines"
3535 msgstr ""
3636
37 #: ../data/remote-viewer.appdata.xml.in.h:3
37 #: data/remote-viewer.appdata.xml.in:9
3838 msgid ""
3939 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
4040 "time it supports guest OS using the VNC or SPICE protocols. Further "
4343 "using SSL/TLS encryption."
4444 msgstr ""
4545
46 #: ../data/remote-viewer.desktop.in.h:2
46 #: data/remote-viewer.desktop.in:4
4747 msgid "Access remote desktops"
4848 msgstr "存取遠端桌面"
4949
50 #: ../data/virt-viewer-mime.xml.in.h:1
51 msgid "Virt-Viewer connection file"
52 msgstr "Virt-Viewer 連線檔案"
53
54 #: ../src/remote-viewer-iso-list-dialog.c:160
50 #: src/remote-viewer-iso-list-dialog.c:156
5551 msgid "Failed to fetch CD names"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:212
54 #: src/remote-viewer-iso-list-dialog.c:205
5955 msgid "<b>Loading...</b>"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:285
58 #: src/remote-viewer-iso-list-dialog.c:276
6359 msgid "Refresh"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:286
62 #: src/remote-viewer-iso-list-dialog.c:277
6763 msgid "Close"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:306
66 #: src/remote-viewer-iso-list-dialog.c:297
7167 msgid "Unspecified error"
7268 msgstr ""
7369
74 #: ../src/remote-viewer-iso-list-dialog.c:328
70 #: src/remote-viewer-iso-list-dialog.c:318
7571 msgid "Failed to change CD"
7672 msgstr ""
7773
78 #: ../src/remote-viewer-iso-list-dialog.c:380
74 #: src/remote-viewer-iso-list-dialog.c:370
7975 msgid "Change CD"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:118
78 #: src/remote-viewer.c:116
8379 msgid "Set window title"
8480 msgstr "設定視窗標題"
8581
86 #: ../src/remote-viewer.c:125
82 #: src/remote-viewer.c:123
8783 msgid "Remote viewer client"
8884 msgstr "遠端檢視器客戶端"
8985
90 #: ../src/remote-viewer.c:150
91 #, c-format
86 #: src/remote-viewer.c:148
9287 msgid ""
9388 "\n"
9489 "Error: can't handle multiple URIs\n"
9590 "\n"
9691 msgstr ""
9792
98 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
93 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9994 #, c-format
10095 msgid "Run '%s --help' to see a full list of available command line options\n"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:435
98 #: src/remote-viewer.c:429
10499 msgid "failed to parse ovirt uri"
105100 msgstr "無法叵析 ovirt uri"
106101
107 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
102 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
108103 msgid "Authentication was cancelled"
109104 msgstr "認證已取消"
110105
111 #: ../src/remote-viewer.c:480
106 #: src/remote-viewer.c:472
112107 #, c-format
113108 msgid "oVirt VM %s is not running"
114109 msgstr "oVirt VM %s 沒有在執行"
115110
116 #: ../src/remote-viewer.c:494
111 #: src/remote-viewer.c:486
117112 #, c-format
118113 msgid "oVirt VM %s has no display"
119114 msgstr "oVirt VM %s 沒有畫面"
120115
121 #: ../src/remote-viewer.c:520
116 #: src/remote-viewer.c:512
122117 #, c-format
123118 msgid "oVirt VM %s has no host information"
124119 msgstr "oVirt VM %s 沒有主機資訊"
125120
126 #: ../src/remote-viewer.c:531
127 #, c-format
128 msgid "oVirt VM %s has unknown display type: %d"
129 msgstr "oVirt VM %s 含有不明顯示類型:%d"
130
131 #: ../src/remote-viewer.c:713
121 #: src/remote-viewer.c:523
122 #, c-format
123 msgid "oVirt VM %s has unknown display type: %u"
124 msgstr ""
125
126 #: src/remote-viewer.c:690
127 msgid "Couldn't open oVirt session: "
128 msgstr "無法開啟 oVirt session:"
129
130 #: src/remote-viewer.c:718
132131 msgid "Failed to initiate connection"
133132 msgstr "初始化連線失敗"
134133
135 #: ../src/remote-viewer.c:742
134 #: src/remote-viewer.c:747
136135 msgid "No connection was chosen"
137136 msgstr "未選擇連線"
138137
139 #: ../src/remote-viewer.c:759
138 #: src/remote-viewer.c:764
140139 msgid "Failed to read stdin: "
141140 msgstr ""
142141
143 #: ../src/remote-viewer.c:776
142 #: src/remote-viewer.c:781
144143 #, c-format
145144 msgid "Invalid file %s: "
146145 msgstr "無效的檔案 %s:"
147146
148 #: ../src/remote-viewer.c:786
147 #: src/remote-viewer.c:791
149148 msgid "Cannot determine the connection type from URI"
150149 msgstr "無法從 URI 判斷連線類型"
151150
152 #: ../src/remote-viewer.c:792
153 msgid "Couldn't open oVirt session: "
154 msgstr "無法開啟 oVirt session:"
155
156 #: ../src/remote-viewer.c:815
151 #: src/remote-viewer.c:810
157152 #, c-format
158153 msgid "Unable to connect: %s"
159154 msgstr ""
160155
161 #.
162 #. * Local variables:
163 #. * c-indent-level: 4
164 #. * c-basic-offset: 4
165 #. * indent-tabs-mode: nil
166 #. * End:
167 #.
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
156 #: src/resources/ui/remote-viewer-connect.ui:6
169157 msgid "Connection details"
170158 msgstr "連線細節"
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
160 #: src/resources/ui/remote-viewer-connect.ui:24
173161 msgid "Connection _Address"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
164 #: src/resources/ui/remote-viewer-connect.ui:54
177165 msgid "For example, spice://foo.example.org:5900"
178166 msgstr "例如 spice://foo.example.org:5900"
179167
180 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
168 #: src/resources/ui/remote-viewer-connect.ui:78
181169 msgid "Recent connections"
182170 msgstr "最近的連線"
183171
184 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
185 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
186 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
187 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
172 #: src/resources/ui/remote-viewer-connect.ui:120
173 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
174 #: src/resources/ui/virt-viewer-vm-connection.ui:24
175 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
188176 msgid "_Cancel"
189177 msgstr ""
190178
191 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
192 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
179 #: src/resources/ui/remote-viewer-connect.ui:134
180 #: src/resources/ui/virt-viewer-vm-connection.ui:38
193181 msgid "C_onnect"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
184 #: src/resources/ui/remote-viewer-iso-list.ui:28
197185 msgid "Loading..."
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
188 #: src/resources/ui/remote-viewer-iso-list.ui:78
201189 msgid "Select ISO"
202190 msgstr ""
203191
204 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
192 #: src/resources/ui/remote-viewer-iso-list.ui:116
205193 msgid "Selected"
206194 msgstr ""
207195
208 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
209 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
196 #: src/resources/ui/remote-viewer-iso-list.ui:129
197 #: src/resources/ui/virt-viewer-vm-connection.ui:72
210198 msgid "Name"
211199 msgstr "名稱"
212200
213 #: ../src/resources/ui/virt-viewer-about.ui.h:1
201 #: src/resources/ui/virt-viewer-about.ui:7
214202 msgid "About Virt-Viewer"
215203 msgstr ""
216204
217 #: ../src/resources/ui/virt-viewer-about.ui.h:2
205 #: src/resources/ui/virt-viewer-about.ui:16
218206 msgid ""
219207 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
220208 "Copyright (C) 2007-2014 Red Hat, Inc."
222210 "著作權 (C) 2007-2012 Daniel P. Berrange\n"
223211 "著作權 (C) 2007-2014 Red Hat, Inc."
224212
225 #: ../src/resources/ui/virt-viewer-about.ui.h:4
213 #: src/resources/ui/virt-viewer-about.ui:18
226214 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
227215 msgstr "以 GTK-VNC、SPICE-GTK 和 libvirt 所建立的遠端桌面客戶端"
228216
229 #: ../src/resources/ui/virt-viewer-about.ui.h:5
230 msgid "virt-manager.org"
231 msgstr "virt-manager.org"
232
233 #: ../src/resources/ui/virt-viewer-about.ui.h:6
217 #: src/resources/ui/virt-viewer-about.ui:20
218 msgid "gitlab.com/virt-viewer/virt-viewer"
219 msgstr ""
220
221 #: src/resources/ui/virt-viewer-about.ui:21
234222 msgid ""
235223 "This program is free software; you can redistribute it and/or modify\n"
236224 "it under the terms of the GNU General Public License as published by\n"
261249 "基金會(Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, "
262250 "MA 02111-1307 USA\n"
263251
264 #: ../src/resources/ui/virt-viewer-about.ui.h:20
252 #: src/resources/ui/virt-viewer-about.ui:38
265253 msgid "The Fedora Translation Team"
266254 msgstr "Fedora 翻譯團隊"
267255
268 #: ../src/virt-viewer-app.c:459
256 #: src/virt-viewer-app.c:594
269257 msgid "Do you want to close the session?"
270258 msgstr "您是否希望關閉本作業階段?"
271259
272 #: ../src/virt-viewer-app.c:461
260 #: src/virt-viewer-app.c:596
273261 msgid "Do not ask me again"
274262 msgstr "不再詢問我"
275263
276 #: ../src/virt-viewer-app.c:655
264 #: src/virt-viewer-app.c:767
277265 #, c-format
278266 msgid "Address is too long for unix socket_path: %s"
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:665
269 #: src/virt-viewer-app.c:777
282270 #, c-format
283271 msgid "Creating unix socket failed: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:671
274 #: src/virt-viewer-app.c:783
287275 #, c-format
288276 msgid "Connecting to unix socket failed: %s"
289277 msgstr ""
290278
291 #: ../src/virt-viewer-app.c:955
279 #: src/virt-viewer-app.c:1077
292280 #, c-format
293281 msgid "Waiting for display %d..."
294282 msgstr "正在等候顯示器 %d..."
295283
296 #: ../src/virt-viewer-app.c:1062
284 #: src/virt-viewer-app.c:1193
297285 #, c-format
298286 msgid "Unsupported graphic type '%s'"
299287 msgstr "不支援的圖形類型「%s」"
300288
301 #: ../src/virt-viewer-app.c:1146
289 #: src/virt-viewer-app.c:1277
302290 msgid "Connect to ssh failed."
303291 msgstr "連至 ssh 的連線失敗。"
304292
305 #: ../src/virt-viewer-app.c:1161
293 #: src/virt-viewer-app.c:1292
306294 #, c-format
307295 msgid "Can't connect to channel: %s"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1163
298 #: src/virt-viewer-app.c:1294
311299 msgid "only SSH or unix socket connection supported."
312300 msgstr ""
313301
314 #: ../src/virt-viewer-app.c:1176
302 #: src/virt-viewer-app.c:1311
315303 msgid "Connect to channel unsupported."
316304 msgstr "不支援頻道的連接。"
317305
318 #: ../src/virt-viewer-app.c:1238
306 #: src/virt-viewer-app.c:1376
319307 msgid "Display can only be attached through libvirt with --attach"
320308 msgstr "顯示器僅能以 --attach 透過 libvirt 來連接"
321309
322 #: ../src/virt-viewer-app.c:1263
310 #: src/virt-viewer-app.c:1401
323311 msgid "Connecting to graphic server"
324312 msgstr "正在連接圖形化伺服器"
325313
326 #: ../src/virt-viewer-app.c:1362
314 #: src/virt-viewer-app.c:1500
327315 msgid "Guest domain has shutdown"
328316 msgstr "客座端網域已關閉"
329317
330 #: ../src/virt-viewer-app.c:1423
318 #: src/virt-viewer-app.c:1561
331319 msgid "Connected to graphic server"
332320 msgstr "已連上圖形化伺服器"
333321
334 #: ../src/virt-viewer-app.c:1452
322 #: src/virt-viewer-app.c:1590
335323 #, c-format
336324 msgid "Unable to connect to the graphic server %s"
337325 msgstr "無法連接圖形化伺服器 %s"
338326
339 #: ../src/virt-viewer-app.c:1478
327 #: src/virt-viewer-app.c:1616
340328 #, c-format
341329 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
342330 msgstr "無法取得位於 %s 的遠端桌面伺服器的認證:%s\n"
343331
344 #: ../src/virt-viewer-app.c:1492
332 #: src/virt-viewer-app.c:1630
345333 #, c-format
346334 msgid "Unable to authenticate with remote desktop server: %s"
347335 msgstr "無法取得遠端桌面伺服器的認證:%s"
348336
349 #: ../src/virt-viewer-app.c:1500
337 #: src/virt-viewer-app.c:1638
350338 #, c-format
351339 msgid "USB redirection error: %s"
352340 msgstr "USB 重定向錯誤:%s"
353341
354 #: ../src/virt-viewer-app.c:1834
342 #: src/virt-viewer-app.c:2026
355343 #, c-format
356344 msgid "Zoom level must be within %d-%d\n"
357345 msgstr "縮放等級必須介於 %d-%d\n"
358346
359 #: ../src/virt-viewer-app.c:1887
347 #: src/virt-viewer-app.c:2081
360348 #, c-format
361349 msgid "%s\n"
362350 msgstr ""
363351
364 #: ../src/virt-viewer-app.c:1897
352 #: src/virt-viewer-app.c:2091
365353 #, c-format
366354 msgid "%s version %s"
367355 msgstr ""
368356
369 #: ../src/virt-viewer-app.c:2321
357 #: src/virt-viewer-app.c:2545
370358 #, c-format
371359 msgid "Display _%d"
372360 msgstr ""
373361
374 #: ../src/virt-viewer-app.c:2577
362 #: src/virt-viewer-app.c:2829
375363 #, c-format
376364 msgid "Invalid kiosk-quit argument: %s"
377365 msgstr "無效的 kiosk-quit 引數:%s"
378366
379 #: ../src/virt-viewer-app.c:2588
367 #: src/virt-viewer-app.c:2840
380368 msgid "Display version information"
381369 msgstr "顯示版本資訊"
382370
383 #: ../src/virt-viewer-app.c:2590
371 #: src/virt-viewer-app.c:2842
384372 msgid "Zoom level of window, in percentage"
385373 msgstr "視窗放大等級,單位為百分比"
386374
387 #: ../src/virt-viewer-app.c:2592
375 #: src/virt-viewer-app.c:2844
388376 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
389377 msgstr "以全螢幕模式開啟 (調整客端解析度以適應客戶端)"
390378
391 #: ../src/virt-viewer-app.c:2594
379 #: src/virt-viewer-app.c:2846
392380 msgid "Customise hotkeys"
393381 msgstr "自訂快速鍵"
394382
395 #: ../src/virt-viewer-app.c:2596
383 #: src/virt-viewer-app.c:2848
396384 msgid "Enable kiosk mode"
397385 msgstr "啟用 kiosk 模式"
398386
399 #: ../src/virt-viewer-app.c:2598
387 #: src/virt-viewer-app.c:2850
400388 msgid "Quit on given condition in kiosk mode"
401389 msgstr "於 kiosk 模式中的指定情況下離開"
402390
403 #: ../src/virt-viewer-app.c:2598
391 #: src/virt-viewer-app.c:2850
404392 msgid "<never|on-disconnect>"
405393 msgstr "<never|on-disconnect>"
406394
407 #: ../src/virt-viewer-app.c:2600
395 #: src/virt-viewer-app.c:2852
408396 msgid "Display verbose information"
409397 msgstr "顯示詳細資訊"
410398
411 #: ../src/virt-viewer-app.c:2602
399 #: src/virt-viewer-app.c:2854
412400 msgid "Display debugging information"
413401 msgstr "顯示除錯資訊"
414402
415 #: ../src/virt-viewer-auth.c:89
403 #: src/virt-viewer-auth.c:89
416404 #, c-format
417405 msgid ""
418406 "Authentication is required for the %s connection to:\n"
425413 "<b>%s</b>\n"
426414 "\n"
427415
428 #: ../src/virt-viewer-auth.c:93
416 #: src/virt-viewer-auth.c:93
429417 #, c-format
430418 msgid "Authentication is required for the %s connection:\n"
431419 msgstr "%s 連線需通過認證:\n"
432420
433 #.
434 #. * Local variables:
435 #. * c-indent-level: 4
436 #. * c-basic-offset: 4
437 #. * indent-tabs-mode: nil
438 #. * End:
439 #.
440 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
421 #: src/resources/ui/virt-viewer-auth.ui:7
441422 msgid "Authentication required"
442423 msgstr "須要通過認證"
443424
444 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
425 #: src/resources/ui/virt-viewer-auth.ui:42
445426 msgid "_OK"
446427 msgstr ""
447428
448 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
449 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
450 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
429 #: src/resources/ui/virt-viewer-auth.ui:71
430 #: src/resources/ui/virt-viewer-guest-details.ui:82
431 #: src/resources/ui/virt-viewer-guest-details.ui:96
432 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
451433 msgid "label"
452434 msgstr "標籤"
453435
454 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
436 #: src/resources/ui/virt-viewer-auth.ui:93
455437 msgid "Password:"
456438 msgstr "密碼:"
457439
458 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
440 #: src/resources/ui/virt-viewer-auth.ui:105
459441 msgid "Username:"
460442 msgstr "使用者名稱:"
461443
462 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
444 #: src/resources/ui/virt-viewer-auth.ui:137
463445 msgid "Show password"
464446 msgstr "顯示密碼"
465447
466 #: ../src/virt-viewer-display-vnc.c:134
448 #: src/virt-viewer-display-vnc.c:130
467449 msgid "VNC does not provide GUID"
468450 msgstr "VNC 不提供 GUID"
469451
470 #: ../src/virt-viewer-file-transfer-dialog.c:128
452 #: src/virt-viewer-display-vte.c:181
453 msgid "Console support is compiled out!"
454 msgstr ""
455
456 #: src/virt-viewer-file-transfer-dialog.c:124
471457 msgid "File Transfers"
472458 msgstr ""
473459
474 #: ../src/virt-viewer-file-transfer-dialog.c:154
460 #: src/virt-viewer-file-transfer-dialog.c:150
475461 msgid "Transferring 1 file..."
476462 msgstr ""
477463
478 #: ../src/virt-viewer-file-transfer-dialog.c:156
479 #, c-format
480 msgid "Transferring %d file of %d..."
481 msgid_plural "Transferring %d files of %d..."
464 #: src/virt-viewer-file-transfer-dialog.c:152
465 #, c-format
466 msgid "Transferring %u file of %u..."
467 msgid_plural "Transferring %u files of %u..."
482468 msgstr[0] ""
483469
484 #: ../src/virt-viewer-file-transfer-dialog.c:228
485 #, c-format
486 msgid "An error caused the following file transfers to fail:%s"
487 msgstr ""
488
489 #: ../src/virt-viewer-main.c:38
470 #: src/virt-viewer-file-transfer-dialog.c:225
471 msgid "An error caused the following file transfers to fail:"
472 msgstr ""
473
474 #: src/virt-viewer-main.c:38
490475 msgid "Virt Viewer"
491476 msgstr "Virt 檢視器"
492477
493 #: ../src/virt-viewer-session-spice.c:704
478 #: src/virt-viewer-session-spice.c:731
494479 msgid "Invalid password"
495480 msgstr "密碼無效"
496481
497 #. Create the widgets
498 #: ../src/virt-viewer-session-spice.c:802
482 #: src/virt-viewer-session-spice.c:829
499483 msgid "Select USB devices for redirection"
500484 msgstr "選擇欲重定向的 USB 裝置"
501485
502 #: ../src/virt-viewer-session-spice.c:804
503 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
486 #: src/virt-viewer-session-spice.c:831
487 #: src/resources/ui/virt-viewer-guest-details.ui:23
504488 msgid "_Close"
505489 msgstr ""
506490
507 #: ../src/virt-viewer-session-vnc.c:162
508 #, c-format
509 msgid "Unsupported authentication type %d"
510 msgstr "不支援的認證類型 %d"
511
512 #: ../src/virt-viewer-vm-connection.c:64
491 #: src/virt-viewer-session-spice.c:1019
492 msgid "Serial"
493 msgstr ""
494
495 #: src/virt-viewer-session-spice.c:1021
496 msgid "QEMU human monitor"
497 msgstr ""
498
499 #: src/virt-viewer-session-spice.c:1023
500 msgid "QEMU debug console"
501 msgstr ""
502
503 #: src/virt-viewer-session-vnc.c:158
504 #, c-format
505 msgid "Unsupported authentication type %u"
506 msgstr ""
507
508 #: src/virt-viewer-vm-connection.c:64
513509 msgid "No running virtual machine found"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-vm-connection.c:93
512 #: src/virt-viewer-vm-connection.c:93
517513 msgid "No virtual machine was chosen"
518514 msgstr "未選擇虛擬機器"
519515
520 #: ../src/virt-viewer-window.c:544
516 #: src/virt-viewer-window.c:621
521517 msgid "Ctrl+Alt+_Del"
522518 msgstr "Ctrl+Alt+_Del"
523519
524 #: ../src/virt-viewer-window.c:545
520 #: src/virt-viewer-window.c:622
525521 msgid "Ctrl+Alt+_Backspace"
526522 msgstr "Ctrl+Alt+_Backspace"
527523
528 #: ../src/virt-viewer-window.c:547
524 #: src/virt-viewer-window.c:624
529525 msgid "Ctrl+Alt+F_1"
530526 msgstr "Ctrl+Alt+F_1"
531527
532 #: ../src/virt-viewer-window.c:548
528 #: src/virt-viewer-window.c:625
533529 msgid "Ctrl+Alt+F_2"
534530 msgstr "Ctrl+Alt+F_2"
535531
536 #: ../src/virt-viewer-window.c:549
532 #: src/virt-viewer-window.c:626
537533 msgid "Ctrl+Alt+F_3"
538534 msgstr "Ctrl+Alt+F_3"
539535
540 #: ../src/virt-viewer-window.c:550
536 #: src/virt-viewer-window.c:627
541537 msgid "Ctrl+Alt+F_4"
542538 msgstr "Ctrl+Alt+F_4"
543539
544 #: ../src/virt-viewer-window.c:551
540 #: src/virt-viewer-window.c:628
545541 msgid "Ctrl+Alt+F_5"
546542 msgstr "Ctrl+Alt+F_5"
547543
548 #: ../src/virt-viewer-window.c:552
544 #: src/virt-viewer-window.c:629
549545 msgid "Ctrl+Alt+F_6"
550546 msgstr "Ctrl+Alt+F_6"
551547
552 #: ../src/virt-viewer-window.c:553
548 #: src/virt-viewer-window.c:630
553549 msgid "Ctrl+Alt+F_7"
554550 msgstr "Ctrl+Alt+F_7"
555551
556 #: ../src/virt-viewer-window.c:554
552 #: src/virt-viewer-window.c:631
557553 msgid "Ctrl+Alt+F_8"
558554 msgstr "Ctrl+Alt+F_8"
559555
560 #: ../src/virt-viewer-window.c:555
556 #: src/virt-viewer-window.c:632
561557 msgid "Ctrl+Alt+F_9"
562558 msgstr "Ctrl+Alt+F_9"
563559
564 #: ../src/virt-viewer-window.c:556
560 #: src/virt-viewer-window.c:633
565561 msgid "Ctrl+Alt+F1_0"
566562 msgstr "Ctrl+Alt+F1_0"
567563
568 #: ../src/virt-viewer-window.c:557
564 #: src/virt-viewer-window.c:634
569565 msgid "Ctrl+Alt+F11"
570566 msgstr "Ctrl+Alt+F11"
571567
572 #: ../src/virt-viewer-window.c:558
568 #: src/virt-viewer-window.c:635
573569 msgid "Ctrl+Alt+F12"
574570 msgstr "Ctrl+Alt+F12"
575571
576 #: ../src/virt-viewer-window.c:953
572 #: src/virt-viewer-window.c:637
573 msgid "_PrintScreen"
574 msgstr ""
575
576 #: src/virt-viewer-window.c:1030
577577 #, c-format
578578 msgid "Unable to determine image format for file '%s'"
579579 msgstr ""
580580
581 #: ../src/virt-viewer-window.c:980
581 #: src/virt-viewer-window.c:1053
582 msgid "Save screenshot"
583 msgstr ""
584
585 #: src/virt-viewer-window.c:1057
582586 msgid "_Save"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:988
589 #: src/virt-viewer-window.c:1065
586590 msgid "Screenshot.png"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
593 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
590594 msgid "Unknown"
591595 msgstr "不明"
592596
593 #: ../src/virt-viewer-window.c:1152
597 #: src/virt-viewer-window.c:1237
594598 msgid "Unable to connnect to oVirt"
595599 msgstr ""
596600
597 #: ../src/virt-viewer-window.c:1175
601 #: src/virt-viewer-window.c:1260
598602 msgid "Disconnect"
599603 msgstr "中斷連接"
600604
601 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
605 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
602606 msgid "USB device selection"
603607 msgstr "USB 裝置選取"
604608
605 #: ../src/virt-viewer-window.c:1193
609 #: src/virt-viewer-window.c:1278
606610 msgid "Send key combination"
607611 msgstr "傳送按鍵組合"
608612
609 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
613 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
610614 msgid "Leave fullscreen"
611615 msgstr "離開全螢幕"
612616
613 #: ../src/virt-viewer-window.c:1279
617 #: src/virt-viewer-window.c:1364
614618 msgid "Ctrl+Alt"
615619 msgstr "Ctrl+Alt"
616620
617 #: ../src/virt-viewer-window.c:1282
621 #: src/virt-viewer-window.c:1367
618622 #, c-format
619623 msgid "(Press %s to release pointer)"
620624 msgstr "(按下 %s 以釋放游標)"
621625
622 #. translators:
623 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
624 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
625 #.
626 #: ../src/virt-viewer-window.c:1293
626 #: src/virt-viewer-window.c:1378
627627 #, c-format
628628 msgid "%s%s%s - %s"
629629 msgstr "%s%s%s - %s"
630630
631 #. translators: <space>
632 #: ../src/virt-viewer-window.c:1297
631 #: src/virt-viewer-window.c:1382
633632 msgid " "
634633 msgstr " "
635634
636 #: ../src/virt-viewer-file.c:862
635 #: src/virt-viewer-file.c:875
637636 #, c-format
638637 msgid ""
639638 "At least %s version %s is required to setup this connection, see %s for "
640639 "details"
641640 msgstr "至少需要 %s 版本 %s 以上才能設置此連線,詳情請見 %s"
642641
643 #: ../src/virt-viewer-file.c:870
642 #: src/virt-viewer-file.c:883
644643 #, c-format
645644 msgid "At least %s version %s is required to setup this connection"
646645 msgstr "至少需要 %s 版本 %s 以上才能設置此連線"
647646
648 #: ../src/virt-viewer.c:133
647 #: src/virt-viewer.c:131
649648 msgid "Direct connection with no automatic tunnels"
650649 msgstr "無自動穿隧的直接連線"
651650
652 #: ../src/virt-viewer.c:135
651 #: src/virt-viewer.c:133
653652 msgid "Attach to the local display using libvirt"
654653 msgstr "使用 libvirt 接至本機顯示器"
655654
656 #: ../src/virt-viewer.c:137
655 #: src/virt-viewer.c:135
657656 msgid "Connect to hypervisor"
658657 msgstr "連接 hypervisor"
659658
660 #: ../src/virt-viewer.c:139
659 #: src/virt-viewer.c:137
661660 msgid "Wait for domain to start"
662661 msgstr "等候網域啟動"
663662
664 #: ../src/virt-viewer.c:141
663 #: src/virt-viewer.c:139
665664 msgid "Reconnect to domain upon restart"
666665 msgstr "重新啓動時重新連接網域"
667666
668 #: ../src/virt-viewer.c:143
667 #: src/virt-viewer.c:141
669668 msgid "Select the virtual machine only by its name"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:145
671 #: src/virt-viewer.c:143
673672 msgid "Select the virtual machine only by its id"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:147
675 #: src/virt-viewer.c:145
677676 msgid "Select the virtual machine only by its uuid"
678677 msgstr ""
679678
680 #: ../src/virt-viewer.c:154
679 #: src/virt-viewer.c:152
681680 msgid "Virtual machine graphical console"
682681 msgstr "虛擬機圖形化主控臺"
683682
684 #: ../src/virt-viewer.c:173
683 #: src/virt-viewer.c:171
685684 #, c-format
686685 msgid ""
687686 "\n"
689688 "\n"
690689 msgstr ""
691690
692 #: ../src/virt-viewer.c:185
691 #: src/virt-viewer.c:183
693692 #, c-format
694693 msgid ""
695694 "\n"
697696 "\n"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:300
699 #: src/virt-viewer.c:296
701700 msgid "Waiting for guest domain to re-start"
702701 msgstr "正在等候客端網域重新啓用"
703702
704 #: ../src/virt-viewer.c:554
703 #: src/virt-viewer.c:550
705704 #, c-format
706705 msgid "Cannot determine the graphic type for the guest %s"
707706 msgstr "無法判斷客端 %s 的圖形化類型為何"
708707
709 #: ../src/virt-viewer.c:603
708 #: src/virt-viewer.c:599
710709 #, c-format
711710 msgid "Cannot determine the host for the guest %s"
712711 msgstr "無法判斷客端 %s 的主機為何"
713712
714 #: ../src/virt-viewer.c:631
713 #: src/virt-viewer.c:627
715714 #, c-format
716715 msgid "Guest '%s' is not reachable"
717716 msgstr "無法連上客座端 '%s'"
718717
719 #: ../src/virt-viewer.c:860
718 #: src/virt-viewer.c:856
720719 #, c-format
721720 msgid "Virtual machine %s is not running"
722721 msgstr "虛擬機器 %s 沒有在執行"
723722
724 #: ../src/virt-viewer.c:884
723 #: src/virt-viewer.c:881
725724 msgid "Waiting for libvirt to start"
726725 msgstr "等候 libvirt 啟動"
727726
728 #: ../src/virt-viewer.c:888
727 #: src/virt-viewer.c:885
729728 msgid "Finding guest domain"
730729 msgstr "正在尋找客端網域"
731730
732 #: ../src/virt-viewer.c:892
731 #: src/virt-viewer.c:889
733732 msgid "Waiting for guest domain to be created"
734733 msgstr "正在等候客端網域被建立"
735734
736 #: ../src/virt-viewer.c:918
735 #: src/virt-viewer.c:921
737736 msgid "Checking guest domain status"
738737 msgstr "正在檢查客端網域狀態"
739738
740 #: ../src/virt-viewer.c:921
739 #: src/virt-viewer.c:924
741740 msgid "Cannot get guest state"
742741 msgstr "無法取得客座端狀態"
743742
744 #: ../src/virt-viewer.c:927
743 #: src/virt-viewer.c:930
745744 msgid "Waiting for guest domain to start"
746745 msgstr "正在等候客端網域啟動"
747746
748 #: ../src/virt-viewer.c:1040
747 #: src/virt-viewer.c:1044
749748 #, c-format
750749 msgid "Unable to connect to libvirt with URI: %s."
751750 msgstr "無法透過 URI 連接 libvirt:%s。"
752751
753 #: ../src/virt-viewer.c:1041
752 #: src/virt-viewer.c:1045
754753 msgid "[none]"
755754 msgstr "[無]"
756755
757 #: ../src/virt-viewer.c:1048
756 #: src/virt-viewer.c:1052
758757 msgid "Authentication failed."
759758 msgstr "認證失敗。"
760759
761 #: ../src/virt-viewer.c:1108
760 #: src/virt-viewer.c:1112
762761 msgid "Failed to connect: "
763762 msgstr "無法連上:"
764763
765 #.
766 #. * Local variables:
767 #. * c-indent-level: 4
768 #. * c-basic-offset: 4
769 #. * indent-tabs-mode: nil
770 #. * End:
771 #.
772 #: ../src/resources/ui/virt-viewer.ui.h:1
764 #: src/resources/ui/virt-viewer.ui:28
773765 msgid "_File"
774766 msgstr "檔案(_F)"
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:2
768 #: src/resources/ui/virt-viewer.ui:41
777769 msgid "_Screenshot"
778770 msgstr ""
779771
780 #: ../src/resources/ui/virt-viewer.ui.h:3
772 #: src/resources/ui/virt-viewer.ui:52
781773 msgid "_USB device selection"
782774 msgstr ""
783775
784 #: ../src/resources/ui/virt-viewer.ui.h:4
776 #: src/resources/ui/virt-viewer.ui:62
785777 msgid "Smartcard insertion"
786778 msgstr "智慧卡插入"
787779
788 #: ../src/resources/ui/virt-viewer.ui.h:5
780 #: src/resources/ui/virt-viewer.ui:72
789781 msgid "Smartcard removal"
790782 msgstr "智慧卡移除"
791783
792 #: ../src/resources/ui/virt-viewer.ui.h:6
784 #: src/resources/ui/virt-viewer.ui:80
793785 msgid "_Change CD"
794786 msgstr "更換 CD(_C)"
795787
796 #: ../src/resources/ui/virt-viewer.ui.h:7
788 #: src/resources/ui/virt-viewer.ui:90
797789 msgid "_Preferences"
798790 msgstr ""
799791
800 #: ../src/resources/ui/virt-viewer.ui.h:8
792 #: src/resources/ui/virt-viewer.ui:103
801793 msgid "_Quit"
802794 msgstr ""
803795
804 #: ../src/resources/ui/virt-viewer.ui.h:9
796 #: src/resources/ui/virt-viewer.ui:119
797 msgid "_Machine"
798 msgstr ""
799
800 #: src/resources/ui/virt-viewer.ui:129
801 msgid "_Pause"
802 msgstr ""
803
804 #: src/resources/ui/virt-viewer.ui:144
805 msgid "_Reset"
806 msgstr ""
807
808 #: src/resources/ui/virt-viewer.ui:153
809 msgid "_Power down"
810 msgstr ""
811
812 #: src/resources/ui/virt-viewer.ui:167
805813 msgid "_View"
806814 msgstr "檢視(_V)"
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:10
816 #: src/resources/ui/virt-viewer.ui:180
809817 msgid "_Full screen"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:11
820 #: src/resources/ui/virt-viewer.ui:191
813821 msgid "_Zoom"
814822 msgstr "遠近(_Z)"
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:12
824 #: src/resources/ui/virt-viewer.ui:201
817825 msgid "Zoom _In"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:13
828 #: src/resources/ui/virt-viewer.ui:212
821829 msgid "Zoom _Out"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer.ui.h:14
832 #: src/resources/ui/virt-viewer.ui:229
825833 msgid "_Normal Size"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer.ui.h:15
836 #: src/resources/ui/virt-viewer.ui:246
829837 msgid "_Displays"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer.ui.h:16
840 #: src/resources/ui/virt-viewer.ui:255
833841 msgid "Release cursor"
834842 msgstr "釋放游標"
835843
836 #: ../src/resources/ui/virt-viewer.ui.h:17
844 #: src/resources/ui/virt-viewer.ui:270
837845 msgid "_Send key"
838846 msgstr "傳送按鍵(_S)"
839847
840 #: ../src/resources/ui/virt-viewer.ui.h:18
848 #: src/resources/ui/virt-viewer.ui:279
841849 msgid "_Help"
842850 msgstr "求助(_H)"
843851
844 #: ../src/resources/ui/virt-viewer.ui.h:19
852 #: src/resources/ui/virt-viewer.ui:290
845853 msgid "_Guest Details"
846854 msgstr "客座端詳細資料 (_G)"
847855
848 #: ../src/resources/ui/virt-viewer.ui.h:20
856 #: src/resources/ui/virt-viewer.ui:297
849857 msgid "_About"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
860 #: src/resources/ui/virt-viewer-guest-details.ui:7
853861 msgid "Guest Details"
854862 msgstr "客座端詳細資料"
855863
856 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
864 #: src/resources/ui/virt-viewer-guest-details.ui:56
857865 msgid "Name:"
858866 msgstr "名稱:"
859867
860 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
868 #: src/resources/ui/virt-viewer-guest-details.ui:68
861869 msgid "GUID:"
862870 msgstr "GUID:"
863871
864 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
872 #: src/resources/ui/virt-viewer-vm-connection.ui:7
865873 msgid "Choose a virtual machine"
866874 msgstr "選擇虛擬機器"
867875
868 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
876 #: src/resources/ui/virt-viewer-vm-connection.ui:96
869877 msgid "Available virtual machines"
870878 msgstr "可用的虛擬機器"
871879
872 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
880 #: src/resources/ui/virt-viewer-preferences.ui:8
873881 msgid "Preferences"
874882 msgstr "偏好設定"
875883
876 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
884 #: src/resources/ui/virt-viewer-preferences.ui:48
877885 msgid "Folder sharing"
878886 msgstr "資料夾共享"
879887
880 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
888 #: src/resources/ui/virt-viewer-preferences.ui:70
881889 msgid "Share folder"
882890 msgstr "共享資料夾"
883891
884 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
892 #: src/resources/ui/virt-viewer-preferences.ui:82
885893 msgid "Read-only"
886894 msgstr "唯讀"
887895
888 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
896 #: src/resources/ui/virt-viewer-preferences.ui:96
897 msgid "Share clipboard"
898 msgstr ""
899
900 #: src/resources/ui/virt-viewer-preferences.ui:132
889901 msgid "Spice"
890902 msgstr "Spice"
903
904 #~ msgid "virt-manager.org"
905 #~ msgstr "virt-manager.org"
Binary diff not shown
+264
-252
po/zu.po less more
0 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
2 # This file is distributed under the same license as the PACKAGE package.
0 # Virt Viewer package strings.
1 # Copyright (C) 2019 The Virt Viewer authors
2 # This file is distributed under the same license as the virt-viewer package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
55 msgid ""
66 msgstr ""
7 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2017-12-04 16:36+0000\n"
7 "Project-Id-Version: virt-viewer 9.0\n"
8 "Report-Msgid-Bugs-To: https://gitlab.com/virt-viewer/virt-viewer/-/issues\n"
9 "POT-Creation-Date: 2020-05-01 17:38+0100\n"
1010 "PO-Revision-Date: \n"
1111 "Last-Translator: \n"
1212 "Language-Team: Zulu\n"
1515 "Content-Type: text/plain; charset=UTF-8\n"
1616 "Content-Transfer-Encoding: 8bit\n"
1717 "Plural-Forms: nplurals=1; plural=0\n"
18 "X-Generator: Zanata 3.8.4\n"
19
20 #: ../data/remote-viewer.appdata.xml.in.h:1
21 #: ../data/remote-viewer.desktop.in.h:1 ../src/remote-viewer-main.c:39
18 "X-Generator: Zanata 4.6.2\n"
19
20 #: data/remote-viewer.appdata.xml.in:6 data/remote-viewer.desktop.in:3
21 #: src/remote-viewer-main.c:39
2222 msgid "Remote Viewer"
2323 msgstr ""
2424
25 #: ../data/remote-viewer.appdata.xml.in.h:2
25 #: data/remote-viewer.appdata.xml.in:7
2626 msgid "Remotely access virtual machines"
2727 msgstr ""
2828
29 #: ../data/remote-viewer.appdata.xml.in.h:3
29 #: data/remote-viewer.appdata.xml.in:9
3030 msgid ""
3131 "Remote Viewer provides a graphical viewer for the guest OS display. At this "
3232 "time it supports guest OS using the VNC or SPICE protocols. Further "
3535 "using SSL/TLS encryption."
3636 msgstr ""
3737
38 #: ../data/remote-viewer.desktop.in.h:2
38 #: data/remote-viewer.desktop.in:4
3939 msgid "Access remote desktops"
4040 msgstr ""
4141
42 #: ../data/virt-viewer-mime.xml.in.h:1
43 msgid "Virt-Viewer connection file"
44 msgstr ""
45
46 #: ../src/remote-viewer-iso-list-dialog.c:160
42 #: src/remote-viewer-iso-list-dialog.c:156
4743 msgid "Failed to fetch CD names"
4844 msgstr ""
4945
50 #: ../src/remote-viewer-iso-list-dialog.c:212
46 #: src/remote-viewer-iso-list-dialog.c:205
5147 msgid "<b>Loading...</b>"
5248 msgstr ""
5349
54 #: ../src/remote-viewer-iso-list-dialog.c:285
50 #: src/remote-viewer-iso-list-dialog.c:276
5551 msgid "Refresh"
5652 msgstr ""
5753
58 #: ../src/remote-viewer-iso-list-dialog.c:286
54 #: src/remote-viewer-iso-list-dialog.c:277
5955 msgid "Close"
6056 msgstr ""
6157
62 #: ../src/remote-viewer-iso-list-dialog.c:306
58 #: src/remote-viewer-iso-list-dialog.c:297
6359 msgid "Unspecified error"
6460 msgstr ""
6561
66 #: ../src/remote-viewer-iso-list-dialog.c:328
62 #: src/remote-viewer-iso-list-dialog.c:318
6763 msgid "Failed to change CD"
6864 msgstr ""
6965
70 #: ../src/remote-viewer-iso-list-dialog.c:380
66 #: src/remote-viewer-iso-list-dialog.c:370
7167 msgid "Change CD"
7268 msgstr ""
7369
74 #: ../src/remote-viewer.c:118
70 #: src/remote-viewer.c:116
7571 msgid "Set window title"
7672 msgstr ""
7773
78 #: ../src/remote-viewer.c:125
74 #: src/remote-viewer.c:123
7975 msgid "Remote viewer client"
8076 msgstr ""
8177
82 #: ../src/remote-viewer.c:150
83 #, c-format
78 #: src/remote-viewer.c:148
8479 msgid ""
8580 "\n"
8681 "Error: can't handle multiple URIs\n"
8782 "\n"
8883 msgstr ""
8984
90 #: ../src/remote-viewer.c:164 ../src/virt-viewer.c:202
85 #: src/remote-viewer.c:162 src/virt-viewer.c:200
9186 #, c-format
9287 msgid "Run '%s --help' to see a full list of available command line options\n"
9388 msgstr ""
9489
95 #: ../src/remote-viewer.c:435
90 #: src/remote-viewer.c:429
9691 msgid "failed to parse ovirt uri"
9792 msgstr ""
9893
99 #: ../src/remote-viewer.c:455 ../src/virt-viewer.c:1101
94 #: src/remote-viewer.c:448 src/virt-viewer.c:1105
10095 msgid "Authentication was cancelled"
10196 msgstr ""
10297
103 #: ../src/remote-viewer.c:480
98 #: src/remote-viewer.c:472
10499 #, c-format
105100 msgid "oVirt VM %s is not running"
106101 msgstr ""
107102
108 #: ../src/remote-viewer.c:494
103 #: src/remote-viewer.c:486
109104 #, c-format
110105 msgid "oVirt VM %s has no display"
111106 msgstr ""
112107
113 #: ../src/remote-viewer.c:520
108 #: src/remote-viewer.c:512
114109 #, c-format
115110 msgid "oVirt VM %s has no host information"
116111 msgstr ""
117112
118 #: ../src/remote-viewer.c:531
119 #, c-format
120 msgid "oVirt VM %s has unknown display type: %d"
121 msgstr ""
122
123 #: ../src/remote-viewer.c:713
113 #: src/remote-viewer.c:523
114 #, c-format
115 msgid "oVirt VM %s has unknown display type: %u"
116 msgstr ""
117
118 #: src/remote-viewer.c:690
119 msgid "Couldn't open oVirt session: "
120 msgstr ""
121
122 #: src/remote-viewer.c:718
124123 msgid "Failed to initiate connection"
125124 msgstr ""
126125
127 #: ../src/remote-viewer.c:742
126 #: src/remote-viewer.c:747
128127 msgid "No connection was chosen"
129128 msgstr ""
130129
131 #: ../src/remote-viewer.c:759
130 #: src/remote-viewer.c:764
132131 msgid "Failed to read stdin: "
133132 msgstr ""
134133
135 #: ../src/remote-viewer.c:776
134 #: src/remote-viewer.c:781
136135 #, c-format
137136 msgid "Invalid file %s: "
138137 msgstr ""
139138
140 #: ../src/remote-viewer.c:786
139 #: src/remote-viewer.c:791
141140 msgid "Cannot determine the connection type from URI"
142141 msgstr ""
143142
144 #: ../src/remote-viewer.c:792
145 msgid "Couldn't open oVirt session: "
146 msgstr ""
147
148 #: ../src/remote-viewer.c:815
143 #: src/remote-viewer.c:810
149144 #, c-format
150145 msgid "Unable to connect: %s"
151146 msgstr ""
152147
153 #.
154 #. * Local variables:
155 #. * c-indent-level: 4
156 #. * c-basic-offset: 4
157 #. * indent-tabs-mode: nil
158 #. * End:
159 #.
160 #: ../src/resources/ui/remote-viewer-connect.ui.h:1
148 #: src/resources/ui/remote-viewer-connect.ui:6
161149 msgid "Connection details"
162150 msgstr ""
163151
164 #: ../src/resources/ui/remote-viewer-connect.ui.h:2
152 #: src/resources/ui/remote-viewer-connect.ui:24
165153 msgid "Connection _Address"
166154 msgstr ""
167155
168 #: ../src/resources/ui/remote-viewer-connect.ui.h:3
156 #: src/resources/ui/remote-viewer-connect.ui:54
169157 msgid "For example, spice://foo.example.org:5900"
170158 msgstr ""
171159
172 #: ../src/resources/ui/remote-viewer-connect.ui.h:4
160 #: src/resources/ui/remote-viewer-connect.ui:78
173161 msgid "Recent connections"
174162 msgstr ""
175163
176 #: ../src/resources/ui/remote-viewer-connect.ui.h:5
177 #: ../src/resources/ui/virt-viewer-auth.ui.h:2 ../src/virt-viewer-window.c:979
178 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:2
179 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:1
164 #: src/resources/ui/remote-viewer-connect.ui:120
165 #: src/resources/ui/virt-viewer-auth.ui:27 src/virt-viewer-window.c:1056
166 #: src/resources/ui/virt-viewer-vm-connection.ui:24
167 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:28
180168 msgid "_Cancel"
181169 msgstr ""
182170
183 #: ../src/resources/ui/remote-viewer-connect.ui.h:6
184 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:3
171 #: src/resources/ui/remote-viewer-connect.ui:134
172 #: src/resources/ui/virt-viewer-vm-connection.ui:38
185173 msgid "C_onnect"
186174 msgstr ""
187175
188 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:1
176 #: src/resources/ui/remote-viewer-iso-list.ui:28
189177 msgid "Loading..."
190178 msgstr ""
191179
192 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:2
180 #: src/resources/ui/remote-viewer-iso-list.ui:78
193181 msgid "Select ISO"
194182 msgstr ""
195183
196 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:3
184 #: src/resources/ui/remote-viewer-iso-list.ui:116
197185 msgid "Selected"
198186 msgstr ""
199187
200 #: ../src/resources/ui/remote-viewer-iso-list.ui.h:4
201 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:4
188 #: src/resources/ui/remote-viewer-iso-list.ui:129
189 #: src/resources/ui/virt-viewer-vm-connection.ui:72
202190 msgid "Name"
203191 msgstr ""
204192
205 #: ../src/resources/ui/virt-viewer-about.ui.h:1
193 #: src/resources/ui/virt-viewer-about.ui:7
206194 msgid "About Virt-Viewer"
207195 msgstr ""
208196
209 #: ../src/resources/ui/virt-viewer-about.ui.h:2
197 #: src/resources/ui/virt-viewer-about.ui:16
210198 msgid ""
211199 "Copyright (C) 2007-2012 Daniel P. Berrange\n"
212200 "Copyright (C) 2007-2014 Red Hat, Inc."
213201 msgstr ""
214202
215 #: ../src/resources/ui/virt-viewer-about.ui.h:4
203 #: src/resources/ui/virt-viewer-about.ui:18
216204 msgid "A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt"
217205 msgstr ""
218206
219 #: ../src/resources/ui/virt-viewer-about.ui.h:5
220 msgid "virt-manager.org"
221 msgstr ""
222
223 #: ../src/resources/ui/virt-viewer-about.ui.h:6
207 #: src/resources/ui/virt-viewer-about.ui:20
208 msgid "gitlab.com/virt-viewer/virt-viewer"
209 msgstr ""
210
211 #: src/resources/ui/virt-viewer-about.ui:21
224212 msgid ""
225213 "This program is free software; you can redistribute it and/or modify\n"
226214 "it under the terms of the GNU General Public License as published by\n"
237225 "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n"
238226 msgstr ""
239227
240 #: ../src/resources/ui/virt-viewer-about.ui.h:20
228 #: src/resources/ui/virt-viewer-about.ui:38
241229 msgid "The Fedora Translation Team"
242230 msgstr ""
243231
244 #: ../src/virt-viewer-app.c:459
232 #: src/virt-viewer-app.c:594
245233 msgid "Do you want to close the session?"
246234 msgstr ""
247235
248 #: ../src/virt-viewer-app.c:461
236 #: src/virt-viewer-app.c:596
249237 msgid "Do not ask me again"
250238 msgstr ""
251239
252 #: ../src/virt-viewer-app.c:655
240 #: src/virt-viewer-app.c:767
253241 #, c-format
254242 msgid "Address is too long for unix socket_path: %s"
255243 msgstr ""
256244
257 #: ../src/virt-viewer-app.c:665
245 #: src/virt-viewer-app.c:777
258246 #, c-format
259247 msgid "Creating unix socket failed: %s"
260248 msgstr ""
261249
262 #: ../src/virt-viewer-app.c:671
250 #: src/virt-viewer-app.c:783
263251 #, c-format
264252 msgid "Connecting to unix socket failed: %s"
265253 msgstr ""
266254
267 #: ../src/virt-viewer-app.c:955
255 #: src/virt-viewer-app.c:1077
268256 #, c-format
269257 msgid "Waiting for display %d..."
270258 msgstr ""
271259
272 #: ../src/virt-viewer-app.c:1062
260 #: src/virt-viewer-app.c:1193
273261 #, c-format
274262 msgid "Unsupported graphic type '%s'"
275263 msgstr ""
276264
277 #: ../src/virt-viewer-app.c:1146
265 #: src/virt-viewer-app.c:1277
278266 msgid "Connect to ssh failed."
279267 msgstr ""
280268
281 #: ../src/virt-viewer-app.c:1161
269 #: src/virt-viewer-app.c:1292
282270 #, c-format
283271 msgid "Can't connect to channel: %s"
284272 msgstr ""
285273
286 #: ../src/virt-viewer-app.c:1163
274 #: src/virt-viewer-app.c:1294
287275 msgid "only SSH or unix socket connection supported."
288276 msgstr ""
289277
290 #: ../src/virt-viewer-app.c:1176
278 #: src/virt-viewer-app.c:1311
291279 msgid "Connect to channel unsupported."
292280 msgstr ""
293281
294 #: ../src/virt-viewer-app.c:1238
282 #: src/virt-viewer-app.c:1376
295283 msgid "Display can only be attached through libvirt with --attach"
296284 msgstr ""
297285
298 #: ../src/virt-viewer-app.c:1263
286 #: src/virt-viewer-app.c:1401
299287 msgid "Connecting to graphic server"
300288 msgstr ""
301289
302 #: ../src/virt-viewer-app.c:1362
290 #: src/virt-viewer-app.c:1500
303291 msgid "Guest domain has shutdown"
304292 msgstr ""
305293
306 #: ../src/virt-viewer-app.c:1423
294 #: src/virt-viewer-app.c:1561
307295 msgid "Connected to graphic server"
308296 msgstr ""
309297
310 #: ../src/virt-viewer-app.c:1452
298 #: src/virt-viewer-app.c:1590
311299 #, c-format
312300 msgid "Unable to connect to the graphic server %s"
313301 msgstr ""
314302
315 #: ../src/virt-viewer-app.c:1478
303 #: src/virt-viewer-app.c:1616
316304 #, c-format
317305 msgid "Unable to authenticate with remote desktop server at %s: %s\n"
318306 msgstr ""
319307
320 #: ../src/virt-viewer-app.c:1492
308 #: src/virt-viewer-app.c:1630
321309 #, c-format
322310 msgid "Unable to authenticate with remote desktop server: %s"
323311 msgstr ""
324312
325 #: ../src/virt-viewer-app.c:1500
313 #: src/virt-viewer-app.c:1638
326314 #, c-format
327315 msgid "USB redirection error: %s"
328316 msgstr ""
329317
330 #: ../src/virt-viewer-app.c:1834
318 #: src/virt-viewer-app.c:2026
331319 #, c-format
332320 msgid "Zoom level must be within %d-%d\n"
333321 msgstr ""
334322
335 #: ../src/virt-viewer-app.c:1887
323 #: src/virt-viewer-app.c:2081
336324 #, c-format
337325 msgid "%s\n"
338326 msgstr ""
339327
340 #: ../src/virt-viewer-app.c:1897
328 #: src/virt-viewer-app.c:2091
341329 #, c-format
342330 msgid "%s version %s"
343331 msgstr ""
344332
345 #: ../src/virt-viewer-app.c:2321
333 #: src/virt-viewer-app.c:2545
346334 #, c-format
347335 msgid "Display _%d"
348336 msgstr ""
349337
350 #: ../src/virt-viewer-app.c:2577
338 #: src/virt-viewer-app.c:2829
351339 #, c-format
352340 msgid "Invalid kiosk-quit argument: %s"
353341 msgstr ""
354342
355 #: ../src/virt-viewer-app.c:2588
343 #: src/virt-viewer-app.c:2840
356344 msgid "Display version information"
357345 msgstr ""
358346
359 #: ../src/virt-viewer-app.c:2590
347 #: src/virt-viewer-app.c:2842
360348 msgid "Zoom level of window, in percentage"
361349 msgstr ""
362350
363 #: ../src/virt-viewer-app.c:2592
351 #: src/virt-viewer-app.c:2844
364352 msgid "Open in full screen mode (adjusts guest resolution to fit the client)"
365353 msgstr ""
366354
367 #: ../src/virt-viewer-app.c:2594
355 #: src/virt-viewer-app.c:2846
368356 msgid "Customise hotkeys"
369357 msgstr ""
370358
371 #: ../src/virt-viewer-app.c:2596
359 #: src/virt-viewer-app.c:2848
372360 msgid "Enable kiosk mode"
373361 msgstr ""
374362
375 #: ../src/virt-viewer-app.c:2598
363 #: src/virt-viewer-app.c:2850
376364 msgid "Quit on given condition in kiosk mode"
377365 msgstr ""
378366
379 #: ../src/virt-viewer-app.c:2598
367 #: src/virt-viewer-app.c:2850
380368 msgid "<never|on-disconnect>"
381369 msgstr ""
382370
383 #: ../src/virt-viewer-app.c:2600
371 #: src/virt-viewer-app.c:2852
384372 msgid "Display verbose information"
385373 msgstr ""
386374
387 #: ../src/virt-viewer-app.c:2602
375 #: src/virt-viewer-app.c:2854
388376 msgid "Display debugging information"
389377 msgstr ""
390378
391 #: ../src/virt-viewer-auth.c:89
379 #: src/virt-viewer-auth.c:89
392380 #, c-format
393381 msgid ""
394382 "Authentication is required for the %s connection to:\n"
397385 "\n"
398386 msgstr ""
399387
400 #: ../src/virt-viewer-auth.c:93
388 #: src/virt-viewer-auth.c:93
401389 #, c-format
402390 msgid "Authentication is required for the %s connection:\n"
403391 msgstr ""
404392
405 #.
406 #. * Local variables:
407 #. * c-indent-level: 4
408 #. * c-basic-offset: 4
409 #. * indent-tabs-mode: nil
410 #. * End:
411 #.
412 #: ../src/resources/ui/virt-viewer-auth.ui.h:1
393 #: src/resources/ui/virt-viewer-auth.ui:7
413394 msgid "Authentication required"
414395 msgstr ""
415396
416 #: ../src/resources/ui/virt-viewer-auth.ui.h:3
397 #: src/resources/ui/virt-viewer-auth.ui:42
417398 msgid "_OK"
418399 msgstr ""
419400
420 #: ../src/resources/ui/virt-viewer-auth.ui.h:4
421 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:5
422 #: ../src/resources/ui/virt-viewer-file-transfer-dialog.ui.h:2
401 #: src/resources/ui/virt-viewer-auth.ui:71
402 #: src/resources/ui/virt-viewer-guest-details.ui:82
403 #: src/resources/ui/virt-viewer-guest-details.ui:96
404 #: src/resources/ui/virt-viewer-file-transfer-dialog.ui:57
423405 msgid "label"
424406 msgstr ""
425407
426 #: ../src/resources/ui/virt-viewer-auth.ui.h:5
408 #: src/resources/ui/virt-viewer-auth.ui:93
427409 msgid "Password:"
428410 msgstr ""
429411
430 #: ../src/resources/ui/virt-viewer-auth.ui.h:6
412 #: src/resources/ui/virt-viewer-auth.ui:105
431413 msgid "Username:"
432414 msgstr ""
433415
434 #: ../src/resources/ui/virt-viewer-auth.ui.h:7
416 #: src/resources/ui/virt-viewer-auth.ui:137
435417 msgid "Show password"
436418 msgstr ""
437419
438 #: ../src/virt-viewer-display-vnc.c:134
420 #: src/virt-viewer-display-vnc.c:130
439421 msgid "VNC does not provide GUID"
440422 msgstr ""
441423
442 #: ../src/virt-viewer-file-transfer-dialog.c:128
424 #: src/virt-viewer-display-vte.c:181
425 msgid "Console support is compiled out!"
426 msgstr ""
427
428 #: src/virt-viewer-file-transfer-dialog.c:124
443429 msgid "File Transfers"
444430 msgstr ""
445431
446 #: ../src/virt-viewer-file-transfer-dialog.c:154
432 #: src/virt-viewer-file-transfer-dialog.c:150
447433 msgid "Transferring 1 file..."
448434 msgstr ""
449435
450 #: ../src/virt-viewer-file-transfer-dialog.c:156
451 #, c-format
452 msgid "Transferring %d file of %d..."
453 msgid_plural "Transferring %d files of %d..."
436 #: src/virt-viewer-file-transfer-dialog.c:152
437 #, c-format
438 msgid "Transferring %u file of %u..."
439 msgid_plural "Transferring %u files of %u..."
454440 msgstr[0] ""
455441
456 #: ../src/virt-viewer-file-transfer-dialog.c:228
457 #, c-format
458 msgid "An error caused the following file transfers to fail:%s"
459 msgstr ""
460
461 #: ../src/virt-viewer-main.c:38
442 #: src/virt-viewer-file-transfer-dialog.c:225
443 msgid "An error caused the following file transfers to fail:"
444 msgstr ""
445
446 #: src/virt-viewer-main.c:38
462447 msgid "Virt Viewer"
463448 msgstr ""
464449
465 #: ../src/virt-viewer-session-spice.c:704
450 #: src/virt-viewer-session-spice.c:731
466451 msgid "Invalid password"
467452 msgstr ""
468453
469 #. Create the widgets
470 #: ../src/virt-viewer-session-spice.c:802
454 #: src/virt-viewer-session-spice.c:829
471455 msgid "Select USB devices for redirection"
472456 msgstr ""
473457
474 #: ../src/virt-viewer-session-spice.c:804
475 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:2
458 #: src/virt-viewer-session-spice.c:831
459 #: src/resources/ui/virt-viewer-guest-details.ui:23
476460 msgid "_Close"
477461 msgstr ""
478462
479 #: ../src/virt-viewer-session-vnc.c:162
480 #, c-format
481 msgid "Unsupported authentication type %d"
482 msgstr ""
483
484 #: ../src/virt-viewer-vm-connection.c:64
463 #: src/virt-viewer-session-spice.c:1019
464 msgid "Serial"
465 msgstr ""
466
467 #: src/virt-viewer-session-spice.c:1021
468 msgid "QEMU human monitor"
469 msgstr ""
470
471 #: src/virt-viewer-session-spice.c:1023
472 msgid "QEMU debug console"
473 msgstr ""
474
475 #: src/virt-viewer-session-vnc.c:158
476 #, c-format
477 msgid "Unsupported authentication type %u"
478 msgstr ""
479
480 #: src/virt-viewer-vm-connection.c:64
485481 msgid "No running virtual machine found"
486482 msgstr ""
487483
488 #: ../src/virt-viewer-vm-connection.c:93
484 #: src/virt-viewer-vm-connection.c:93
489485 msgid "No virtual machine was chosen"
490486 msgstr ""
491487
492 #: ../src/virt-viewer-window.c:544
488 #: src/virt-viewer-window.c:621
493489 msgid "Ctrl+Alt+_Del"
494490 msgstr ""
495491
496 #: ../src/virt-viewer-window.c:545
492 #: src/virt-viewer-window.c:622
497493 msgid "Ctrl+Alt+_Backspace"
498494 msgstr ""
499495
500 #: ../src/virt-viewer-window.c:547
496 #: src/virt-viewer-window.c:624
501497 msgid "Ctrl+Alt+F_1"
502498 msgstr ""
503499
504 #: ../src/virt-viewer-window.c:548
500 #: src/virt-viewer-window.c:625
505501 msgid "Ctrl+Alt+F_2"
506502 msgstr ""
507503
508 #: ../src/virt-viewer-window.c:549
504 #: src/virt-viewer-window.c:626
509505 msgid "Ctrl+Alt+F_3"
510506 msgstr ""
511507
512 #: ../src/virt-viewer-window.c:550
508 #: src/virt-viewer-window.c:627
513509 msgid "Ctrl+Alt+F_4"
514510 msgstr ""
515511
516 #: ../src/virt-viewer-window.c:551
512 #: src/virt-viewer-window.c:628
517513 msgid "Ctrl+Alt+F_5"
518514 msgstr ""
519515
520 #: ../src/virt-viewer-window.c:552
516 #: src/virt-viewer-window.c:629
521517 msgid "Ctrl+Alt+F_6"
522518 msgstr ""
523519
524 #: ../src/virt-viewer-window.c:553
520 #: src/virt-viewer-window.c:630
525521 msgid "Ctrl+Alt+F_7"
526522 msgstr ""
527523
528 #: ../src/virt-viewer-window.c:554
524 #: src/virt-viewer-window.c:631
529525 msgid "Ctrl+Alt+F_8"
530526 msgstr ""
531527
532 #: ../src/virt-viewer-window.c:555
528 #: src/virt-viewer-window.c:632
533529 msgid "Ctrl+Alt+F_9"
534530 msgstr ""
535531
536 #: ../src/virt-viewer-window.c:556
532 #: src/virt-viewer-window.c:633
537533 msgid "Ctrl+Alt+F1_0"
538534 msgstr ""
539535
540 #: ../src/virt-viewer-window.c:557
536 #: src/virt-viewer-window.c:634
541537 msgid "Ctrl+Alt+F11"
542538 msgstr ""
543539
544 #: ../src/virt-viewer-window.c:558
540 #: src/virt-viewer-window.c:635
545541 msgid "Ctrl+Alt+F12"
546542 msgstr ""
547543
548 #: ../src/virt-viewer-window.c:953
544 #: src/virt-viewer-window.c:637
545 msgid "_PrintScreen"
546 msgstr ""
547
548 #: src/virt-viewer-window.c:1030
549549 #, c-format
550550 msgid "Unable to determine image format for file '%s'"
551551 msgstr ""
552552
553 #: ../src/virt-viewer-window.c:980
553 #: src/virt-viewer-window.c:1053
554 msgid "Save screenshot"
555 msgstr ""
556
557 #: src/virt-viewer-window.c:1057
554558 msgid "_Save"
555559 msgstr ""
556560
557 #: ../src/virt-viewer-window.c:988
561 #: src/virt-viewer-window.c:1065
558562 msgid "Screenshot.png"
559563 msgstr ""
560564
561 #: ../src/virt-viewer-window.c:1062 ../src/virt-viewer-window.c:1064
565 #: src/virt-viewer-window.c:1147 src/virt-viewer-window.c:1149
562566 msgid "Unknown"
563567 msgstr ""
564568
565 #: ../src/virt-viewer-window.c:1152
569 #: src/virt-viewer-window.c:1237
566570 msgid "Unable to connnect to oVirt"
567571 msgstr ""
568572
569 #: ../src/virt-viewer-window.c:1175
573 #: src/virt-viewer-window.c:1260
570574 msgid "Disconnect"
571575 msgstr ""
572576
573 #: ../src/virt-viewer-window.c:1183 ../src/virt-viewer-window.c:1184
577 #: src/virt-viewer-window.c:1268 src/virt-viewer-window.c:1269
574578 msgid "USB device selection"
575579 msgstr ""
576580
577 #: ../src/virt-viewer-window.c:1193
581 #: src/virt-viewer-window.c:1278
578582 msgid "Send key combination"
579583 msgstr ""
580584
581 #: ../src/virt-viewer-window.c:1203 ../src/virt-viewer-window.c:1204
585 #: src/virt-viewer-window.c:1288 src/virt-viewer-window.c:1289
582586 msgid "Leave fullscreen"
583587 msgstr ""
584588
585 #: ../src/virt-viewer-window.c:1279
589 #: src/virt-viewer-window.c:1364
586590 msgid "Ctrl+Alt"
587591 msgstr ""
588592
589 #: ../src/virt-viewer-window.c:1282
593 #: src/virt-viewer-window.c:1367
590594 #, c-format
591595 msgid "(Press %s to release pointer)"
592596 msgstr ""
593597
594 #. translators:
595 #. * This is "<ungrab (or empty)><space (or empty)><subtitle (or empty)> - <appname>"
596 #. * Such as: "(Press Ctrl+Alt to release pointer) BigCorpTycoon MOTD - Virt Viewer"
597 #.
598 #: ../src/virt-viewer-window.c:1293
598 #: src/virt-viewer-window.c:1378
599599 #, c-format
600600 msgid "%s%s%s - %s"
601601 msgstr ""
602602
603 #. translators: <space>
604 #: ../src/virt-viewer-window.c:1297
603 #: src/virt-viewer-window.c:1382
605604 msgid " "
606605 msgstr ""
607606
608 #: ../src/virt-viewer-file.c:862
607 #: src/virt-viewer-file.c:875
609608 #, c-format
610609 msgid ""
611610 "At least %s version %s is required to setup this connection, see %s for "
612611 "details"
613612 msgstr ""
614613
615 #: ../src/virt-viewer-file.c:870
614 #: src/virt-viewer-file.c:883
616615 #, c-format
617616 msgid "At least %s version %s is required to setup this connection"
618617 msgstr ""
619618
620 #: ../src/virt-viewer.c:133
619 #: src/virt-viewer.c:131
621620 msgid "Direct connection with no automatic tunnels"
622621 msgstr ""
623622
624 #: ../src/virt-viewer.c:135
623 #: src/virt-viewer.c:133
625624 msgid "Attach to the local display using libvirt"
626625 msgstr ""
627626
628 #: ../src/virt-viewer.c:137
627 #: src/virt-viewer.c:135
629628 msgid "Connect to hypervisor"
630629 msgstr ""
631630
632 #: ../src/virt-viewer.c:139
631 #: src/virt-viewer.c:137
633632 msgid "Wait for domain to start"
634633 msgstr ""
635634
636 #: ../src/virt-viewer.c:141
635 #: src/virt-viewer.c:139
637636 msgid "Reconnect to domain upon restart"
638637 msgstr ""
639638
640 #: ../src/virt-viewer.c:143
639 #: src/virt-viewer.c:141
641640 msgid "Select the virtual machine only by its name"
642641 msgstr ""
643642
644 #: ../src/virt-viewer.c:145
643 #: src/virt-viewer.c:143
645644 msgid "Select the virtual machine only by its id"
646645 msgstr ""
647646
648 #: ../src/virt-viewer.c:147
647 #: src/virt-viewer.c:145
649648 msgid "Select the virtual machine only by its uuid"
650649 msgstr ""
651650
652 #: ../src/virt-viewer.c:154
651 #: src/virt-viewer.c:152
653652 msgid "Virtual machine graphical console"
654653 msgstr ""
655654
656 #: ../src/virt-viewer.c:173
655 #: src/virt-viewer.c:171
657656 #, c-format
658657 msgid ""
659658 "\n"
661660 "\n"
662661 msgstr ""
663662
664 #: ../src/virt-viewer.c:185
663 #: src/virt-viewer.c:183
665664 #, c-format
666665 msgid ""
667666 "\n"
669668 "\n"
670669 msgstr ""
671670
672 #: ../src/virt-viewer.c:300
671 #: src/virt-viewer.c:296
673672 msgid "Waiting for guest domain to re-start"
674673 msgstr ""
675674
676 #: ../src/virt-viewer.c:554
675 #: src/virt-viewer.c:550
677676 #, c-format
678677 msgid "Cannot determine the graphic type for the guest %s"
679678 msgstr ""
680679
681 #: ../src/virt-viewer.c:603
680 #: src/virt-viewer.c:599
682681 #, c-format
683682 msgid "Cannot determine the host for the guest %s"
684683 msgstr ""
685684
686 #: ../src/virt-viewer.c:631
685 #: src/virt-viewer.c:627
687686 #, c-format
688687 msgid "Guest '%s' is not reachable"
689688 msgstr ""
690689
691 #: ../src/virt-viewer.c:860
690 #: src/virt-viewer.c:856
692691 #, c-format
693692 msgid "Virtual machine %s is not running"
694693 msgstr ""
695694
696 #: ../src/virt-viewer.c:884
695 #: src/virt-viewer.c:881
697696 msgid "Waiting for libvirt to start"
698697 msgstr ""
699698
700 #: ../src/virt-viewer.c:888
699 #: src/virt-viewer.c:885
701700 msgid "Finding guest domain"
702701 msgstr ""
703702
704 #: ../src/virt-viewer.c:892
703 #: src/virt-viewer.c:889
705704 msgid "Waiting for guest domain to be created"
706705 msgstr ""
707706
708 #: ../src/virt-viewer.c:918
707 #: src/virt-viewer.c:921
709708 msgid "Checking guest domain status"
710709 msgstr ""
711710
712 #: ../src/virt-viewer.c:921
711 #: src/virt-viewer.c:924
713712 msgid "Cannot get guest state"
714713 msgstr ""
715714
716 #: ../src/virt-viewer.c:927
715 #: src/virt-viewer.c:930
717716 msgid "Waiting for guest domain to start"
718717 msgstr ""
719718
720 #: ../src/virt-viewer.c:1040
719 #: src/virt-viewer.c:1044
721720 #, c-format
722721 msgid "Unable to connect to libvirt with URI: %s."
723722 msgstr ""
724723
725 #: ../src/virt-viewer.c:1041
724 #: src/virt-viewer.c:1045
726725 msgid "[none]"
727726 msgstr ""
728727
729 #: ../src/virt-viewer.c:1048
728 #: src/virt-viewer.c:1052
730729 msgid "Authentication failed."
731730 msgstr ""
732731
733 #: ../src/virt-viewer.c:1108
732 #: src/virt-viewer.c:1112
734733 msgid "Failed to connect: "
735734 msgstr ""
736735
737 #.
738 #. * Local variables:
739 #. * c-indent-level: 4
740 #. * c-basic-offset: 4
741 #. * indent-tabs-mode: nil
742 #. * End:
743 #.
744 #: ../src/resources/ui/virt-viewer.ui.h:1
736 #: src/resources/ui/virt-viewer.ui:28
745737 msgid "_File"
746738 msgstr ""
747739
748 #: ../src/resources/ui/virt-viewer.ui.h:2
740 #: src/resources/ui/virt-viewer.ui:41
749741 msgid "_Screenshot"
750742 msgstr ""
751743
752 #: ../src/resources/ui/virt-viewer.ui.h:3
744 #: src/resources/ui/virt-viewer.ui:52
753745 msgid "_USB device selection"
754746 msgstr ""
755747
756 #: ../src/resources/ui/virt-viewer.ui.h:4
748 #: src/resources/ui/virt-viewer.ui:62
757749 msgid "Smartcard insertion"
758750 msgstr ""
759751
760 #: ../src/resources/ui/virt-viewer.ui.h:5
752 #: src/resources/ui/virt-viewer.ui:72
761753 msgid "Smartcard removal"
762754 msgstr ""
763755
764 #: ../src/resources/ui/virt-viewer.ui.h:6
756 #: src/resources/ui/virt-viewer.ui:80
765757 msgid "_Change CD"
766758 msgstr ""
767759
768 #: ../src/resources/ui/virt-viewer.ui.h:7
760 #: src/resources/ui/virt-viewer.ui:90
769761 msgid "_Preferences"
770762 msgstr ""
771763
772 #: ../src/resources/ui/virt-viewer.ui.h:8
764 #: src/resources/ui/virt-viewer.ui:103
773765 msgid "_Quit"
774766 msgstr ""
775767
776 #: ../src/resources/ui/virt-viewer.ui.h:9
768 #: src/resources/ui/virt-viewer.ui:119
769 msgid "_Machine"
770 msgstr ""
771
772 #: src/resources/ui/virt-viewer.ui:129
773 msgid "_Pause"
774 msgstr ""
775
776 #: src/resources/ui/virt-viewer.ui:144
777 msgid "_Reset"
778 msgstr ""
779
780 #: src/resources/ui/virt-viewer.ui:153
781 msgid "_Power down"
782 msgstr ""
783
784 #: src/resources/ui/virt-viewer.ui:167
777785 msgid "_View"
778786 msgstr ""
779787
780 #: ../src/resources/ui/virt-viewer.ui.h:10
788 #: src/resources/ui/virt-viewer.ui:180
781789 msgid "_Full screen"
782790 msgstr ""
783791
784 #: ../src/resources/ui/virt-viewer.ui.h:11
792 #: src/resources/ui/virt-viewer.ui:191
785793 msgid "_Zoom"
786794 msgstr ""
787795
788 #: ../src/resources/ui/virt-viewer.ui.h:12
796 #: src/resources/ui/virt-viewer.ui:201
789797 msgid "Zoom _In"
790798 msgstr ""
791799
792 #: ../src/resources/ui/virt-viewer.ui.h:13
800 #: src/resources/ui/virt-viewer.ui:212
793801 msgid "Zoom _Out"
794802 msgstr ""
795803
796 #: ../src/resources/ui/virt-viewer.ui.h:14
804 #: src/resources/ui/virt-viewer.ui:229
797805 msgid "_Normal Size"
798806 msgstr ""
799807
800 #: ../src/resources/ui/virt-viewer.ui.h:15
808 #: src/resources/ui/virt-viewer.ui:246
801809 msgid "_Displays"
802810 msgstr ""
803811
804 #: ../src/resources/ui/virt-viewer.ui.h:16
812 #: src/resources/ui/virt-viewer.ui:255
805813 msgid "Release cursor"
806814 msgstr ""
807815
808 #: ../src/resources/ui/virt-viewer.ui.h:17
816 #: src/resources/ui/virt-viewer.ui:270
809817 msgid "_Send key"
810818 msgstr ""
811819
812 #: ../src/resources/ui/virt-viewer.ui.h:18
820 #: src/resources/ui/virt-viewer.ui:279
813821 msgid "_Help"
814822 msgstr ""
815823
816 #: ../src/resources/ui/virt-viewer.ui.h:19
824 #: src/resources/ui/virt-viewer.ui:290
817825 msgid "_Guest Details"
818826 msgstr ""
819827
820 #: ../src/resources/ui/virt-viewer.ui.h:20
828 #: src/resources/ui/virt-viewer.ui:297
821829 msgid "_About"
822830 msgstr ""
823831
824 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:1
832 #: src/resources/ui/virt-viewer-guest-details.ui:7
825833 msgid "Guest Details"
826834 msgstr ""
827835
828 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:3
836 #: src/resources/ui/virt-viewer-guest-details.ui:56
829837 msgid "Name:"
830838 msgstr ""
831839
832 #: ../src/resources/ui/virt-viewer-guest-details.ui.h:4
840 #: src/resources/ui/virt-viewer-guest-details.ui:68
833841 msgid "GUID:"
834842 msgstr ""
835843
836 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:1
844 #: src/resources/ui/virt-viewer-vm-connection.ui:7
837845 msgid "Choose a virtual machine"
838846 msgstr ""
839847
840 #: ../src/resources/ui/virt-viewer-vm-connection.ui.h:5
848 #: src/resources/ui/virt-viewer-vm-connection.ui:96
841849 msgid "Available virtual machines"
842850 msgstr ""
843851
844 #: ../src/resources/ui/virt-viewer-preferences.ui.h:1
852 #: src/resources/ui/virt-viewer-preferences.ui:8
845853 msgid "Preferences"
846854 msgstr ""
847855
848 #: ../src/resources/ui/virt-viewer-preferences.ui.h:2
856 #: src/resources/ui/virt-viewer-preferences.ui:48
849857 msgid "Folder sharing"
850858 msgstr ""
851859
852 #: ../src/resources/ui/virt-viewer-preferences.ui.h:3
860 #: src/resources/ui/virt-viewer-preferences.ui:70
853861 msgid "Share folder"
854862 msgstr ""
855863
856 #: ../src/resources/ui/virt-viewer-preferences.ui.h:4
864 #: src/resources/ui/virt-viewer-preferences.ui:82
857865 msgid "Read-only"
858866 msgstr ""
859867
860 #: ../src/resources/ui/virt-viewer-preferences.ui.h:5
868 #: src/resources/ui/virt-viewer-preferences.ui:96
869 msgid "Share clipboard"
870 msgstr ""
871
872 #: src/resources/ui/virt-viewer-preferences.ui:132
861873 msgid "Spice"
862874 msgstr ""
7171 virt-viewer-window.c \
7272 virt-viewer-vm-connection.h \
7373 virt-viewer-vm-connection.c \
74 virt-viewer-display-vte.h \
75 virt-viewer-display-vte.c \
7476 virt-viewer-timed-revealer.c \
7577 virt-viewer-timed-revealer.h \
7678 $(NULL)
109111 $(GLIB2_LIBS) \
110112 $(GTK_LIBS) \
111113 $(GTK_VNC_LIBS) \
114 $(VTE_LIBS) \
112115 $(SPICE_GTK_LIBS) \
113116 $(LIBXML2_LIBS) \
114117 $(OVIRT_LIBS) \
120123 $(GLIB2_CFLAGS) \
121124 $(GTK_CFLAGS) \
122125 $(GTK_VNC_CFLAGS) \
126 $(VTE_CFLAGS) \
123127 $(SPICE_GTK_CFLAGS) \
124128 $(LIBXML2_CFLAGS) \
125129 $(OVIRT_CFLAGS) \
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
120120 @OS_WIN32_TRUE@am__append_8 = virt-viewer_rc.$(OBJEXT)
121121 subdir = src
122122 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
123 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
124 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
125 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
126 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
123 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
124 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
125 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
126 $(top_srcdir)/m4/virt-bash-completion.m4 \
127 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
127128 $(top_srcdir)/configure.ac
128129 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
129130 $(ACLOCAL_M4)
132133 CONFIG_HEADER = $(top_builddir)/config.h
133134 CONFIG_CLEAN_FILES = virt-viewer.rc
134135 CONFIG_CLEAN_VPATH_FILES =
136 @HAVE_LIBVIRT_TRUE@am__EXEEXT_1 = virt-viewer$(EXEEXT)
137 @OS_WIN32_TRUE@am__EXEEXT_2 = windows-cmdline-wrapper$(EXEEXT)
138 am__installdirs = "$(DESTDIR)$(bindir)"
139 PROGRAMS = $(bin_PROGRAMS)
135140 LTLIBRARIES = $(noinst_LTLIBRARIES)
136141 am__DEPENDENCIES_1 =
137142 libvirt_viewer_util_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
152157 am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
153158 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
154159 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
155 $(am__DEPENDENCIES_1)
160 $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
156161 libvirt_viewer_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \
157162 $(am__DEPENDENCIES_1)
158163 am__libvirt_viewer_la_SOURCES_DIST = virt-viewer-resources.h \
165170 virt-viewer-notebook.h virt-viewer-notebook.c \
166171 virt-viewer-window.h virt-viewer-window.c \
167172 virt-viewer-vm-connection.h virt-viewer-vm-connection.c \
173 virt-viewer-display-vte.h virt-viewer-display-vte.c \
168174 virt-viewer-timed-revealer.c virt-viewer-timed-revealer.h \
169175 virt-viewer-session-vnc.h virt-viewer-session-vnc.c \
170176 virt-viewer-display-vnc.h virt-viewer-display-vnc.c \
197203 libvirt_viewer_la-virt-viewer-notebook.lo \
198204 libvirt_viewer_la-virt-viewer-window.lo \
199205 libvirt_viewer_la-virt-viewer-vm-connection.lo \
206 libvirt_viewer_la-virt-viewer-display-vte.lo \
200207 libvirt_viewer_la-virt-viewer-timed-revealer.lo \
201208 $(am__objects_1) $(am__objects_3) $(am__objects_4) \
202209 $(am__objects_5)
205212 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
206213 $(libvirt_viewer_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
207214 -o $@
208 @HAVE_LIBVIRT_TRUE@am__EXEEXT_1 = virt-viewer$(EXEEXT)
209 @OS_WIN32_TRUE@am__EXEEXT_2 = windows-cmdline-wrapper$(EXEEXT)
210 am__installdirs = "$(DESTDIR)$(bindir)"
211 PROGRAMS = $(bin_PROGRAMS)
212215 am_remote_viewer_OBJECTS = remote_viewer-remote-viewer.$(OBJEXT) \
213216 remote_viewer-remote-viewer-connect.$(OBJEXT) \
214217 remote_viewer-remote-viewer-main.$(OBJEXT) $(am__objects_1)
255258 am__v_at_1 =
256259 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
257260 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
258 am__depfiles_maybe = depfiles
261 am__maybe_remake_depfiles = depfiles
262 am__depfiles_remade = ./$(DEPDIR)/libvirt_viewer_la-glib-compat.Plo \
263 ./$(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Plo \
264 ./$(DEPDIR)/libvirt_viewer_la-remote-viewer-iso-list-dialog.Plo \
265 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-app.Plo \
266 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Plo \
267 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-spice.Plo \
268 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vnc.Plo \
269 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vte.Plo \
270 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display.Plo \
271 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Plo \
272 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Plo \
273 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file.Plo \
274 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-notebook.Plo \
275 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Plo \
276 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-spice.Plo \
277 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-vnc.Plo \
278 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session.Plo \
279 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Plo \
280 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-vm-connection.Plo \
281 ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-window.Plo \
282 ./$(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Plo \
283 ./$(DEPDIR)/remote_viewer-remote-viewer-connect.Po \
284 ./$(DEPDIR)/remote_viewer-remote-viewer-main.Po \
285 ./$(DEPDIR)/remote_viewer-remote-viewer.Po \
286 ./$(DEPDIR)/virt_viewer-virt-viewer-main.Po \
287 ./$(DEPDIR)/virt_viewer-virt-viewer.Po \
288 ./$(DEPDIR)/windows-cmdline-wrapper.Po
259289 am__mv = mv -f
260290 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
261291 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
311341 $(top_srcdir)/build-aux/depcomp
312342 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
313343 ACLOCAL = @ACLOCAL@
314 ALL_LINGUAS = @ALL_LINGUAS@
315344 AMTAR = @AMTAR@
316345 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
317346 AR = @AR@
319348 AUTOHEADER = @AUTOHEADER@
320349 AUTOMAKE = @AUTOMAKE@
321350 AWK = @AWK@
351 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
352 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
353 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
354 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
322355 BUILDID = @BUILDID@
323 CATALOGS = @CATALOGS@
324 CATOBJEXT = @CATOBJEXT@
325356 CC = @CC@
326357 CCDEPMODE = @CCDEPMODE@
327358 CFLAGS = @CFLAGS@
328359 CPP = @CPP@
329360 CPPFLAGS = @CPPFLAGS@
330361 CYGPATH_W = @CYGPATH_W@
331 DATADIRNAME = @DATADIRNAME@
332362 DEFS = @DEFS@
333363 DEPDIR = @DEPDIR@
334364 DLLTOOL = @DLLTOOL@
346376 GLIB2_REQUIRED = @GLIB2_REQUIRED@
347377 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
348378 GLIB_MKENUMS = @GLIB_MKENUMS@
349 GMOFILES = @GMOFILES@
350 GMSGFMT = @GMSGFMT@
351379 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
352380 GREP = @GREP@
353381 GTK_CFLAGS = @GTK_CFLAGS@
362390 INSTALL_PROGRAM = @INSTALL_PROGRAM@
363391 INSTALL_SCRIPT = @INSTALL_SCRIPT@
364392 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
365 INSTOBJEXT = @INSTOBJEXT@
366 INTLLIBS = @INTLLIBS@
367 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
368 INTLTOOL_MERGE = @INTLTOOL_MERGE@
369 INTLTOOL_PERL = @INTLTOOL_PERL@
370 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
371 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
372 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
373 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
374 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
375 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
376393 LD = @LD@
377394 LDFLAGS = @LDFLAGS@
378395 LIBOBJS = @LIBOBJS@
392409 MAKEINFO = @MAKEINFO@
393410 MANIFEST_TOOL = @MANIFEST_TOOL@
394411 MKDIR_P = @MKDIR_P@
395 MKINSTALLDIRS = @MKINSTALLDIRS@
396412 MSGFMT = @MSGFMT@
397 MSGFMT_OPTS = @MSGFMT_OPTS@
398413 MSGMERGE = @MSGMERGE@
399414 NM = @NM@
400415 NMEDIT = @NMEDIT@
415430 PKG_CONFIG = @PKG_CONFIG@
416431 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
417432 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
418 POFILES = @POFILES@
419 POSUB = @POSUB@
420 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
421 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
422433 RANLIB = @RANLIB@
434 REST_REQUIRED = @REST_REQUIRED@
423435 SED = @SED@
424436 SET_MAKE = @SET_MAKE@
425437 SHELL = @SHELL@
431443 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
432444 STRIP = @STRIP@
433445 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
434 USE_NLS = @USE_NLS@
435446 VERSION = @VERSION@
447 VTE_CFLAGS = @VTE_CFLAGS@
448 VTE_LIBS = @VTE_LIBS@
436449 WARN_CFLAGS = @WARN_CFLAGS@
437450 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
438451 WINDRES = @WINDRES@
471484 includedir = @includedir@
472485 infodir = @infodir@
473486 install_sh = @install_sh@
474 intltool__v_merge_options_ = @intltool__v_merge_options_@
475 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
476487 libdir = @libdir@
477488 libexecdir = @libexecdir@
478489 localedir = @localedir@
539550 virt-viewer-notebook.h virt-viewer-notebook.c \
540551 virt-viewer-window.h virt-viewer-window.c \
541552 virt-viewer-vm-connection.h virt-viewer-vm-connection.c \
553 virt-viewer-display-vte.h virt-viewer-display-vte.c \
542554 virt-viewer-timed-revealer.c virt-viewer-timed-revealer.h \
543555 $(NULL) $(am__append_1) $(am__append_2) $(am__append_3)
544556 COMMON_LIBS = \
546558 $(GLIB2_LIBS) \
547559 $(GTK_LIBS) \
548560 $(GTK_VNC_LIBS) \
561 $(VTE_LIBS) \
549562 $(SPICE_GTK_LIBS) \
550563 $(LIBXML2_LIBS) \
551564 $(OVIRT_LIBS) \
557570 $(GLIB2_CFLAGS) \
558571 $(GTK_CFLAGS) \
559572 $(GTK_VNC_CFLAGS) \
573 $(VTE_CFLAGS) \
560574 $(SPICE_GTK_CFLAGS) \
561575 $(LIBXML2_CFLAGS) \
562576 $(OVIRT_CFLAGS) \
650664 *config.status*) \
651665 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
652666 *) \
653 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
654 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
667 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
668 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
655669 esac;
656670
657671 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
664678 $(am__aclocal_m4_deps):
665679 virt-viewer.rc: $(top_builddir)/config.status $(srcdir)/virt-viewer.rc.in
666680 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
667
668 clean-noinstLTLIBRARIES:
669 -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
670 @list='$(noinst_LTLIBRARIES)'; \
671 locs=`for p in $$list; do echo $$p; done | \
672 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
673 sort -u`; \
674 test -z "$$locs" || { \
675 echo rm -f $${locs}; \
676 rm -f $${locs}; \
677 }
678
679 libvirt-viewer-util.la: $(libvirt_viewer_util_la_OBJECTS) $(libvirt_viewer_util_la_DEPENDENCIES) $(EXTRA_libvirt_viewer_util_la_DEPENDENCIES)
680 $(AM_V_CCLD)$(libvirt_viewer_util_la_LINK) $(libvirt_viewer_util_la_OBJECTS) $(libvirt_viewer_util_la_LIBADD) $(LIBS)
681
682 libvirt-viewer.la: $(libvirt_viewer_la_OBJECTS) $(libvirt_viewer_la_DEPENDENCIES) $(EXTRA_libvirt_viewer_la_DEPENDENCIES)
683 $(AM_V_CCLD)$(libvirt_viewer_la_LINK) $(libvirt_viewer_la_OBJECTS) $(libvirt_viewer_la_LIBADD) $(LIBS)
684681 install-binPROGRAMS: $(bin_PROGRAMS)
685682 @$(NORMAL_INSTALL)
686683 @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
731728 echo " rm -f" $$list; \
732729 rm -f $$list
733730
731 clean-noinstLTLIBRARIES:
732 -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
733 @list='$(noinst_LTLIBRARIES)'; \
734 locs=`for p in $$list; do echo $$p; done | \
735 sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
736 sort -u`; \
737 test -z "$$locs" || { \
738 echo rm -f $${locs}; \
739 rm -f $${locs}; \
740 }
741
742 libvirt-viewer-util.la: $(libvirt_viewer_util_la_OBJECTS) $(libvirt_viewer_util_la_DEPENDENCIES) $(EXTRA_libvirt_viewer_util_la_DEPENDENCIES)
743 $(AM_V_CCLD)$(libvirt_viewer_util_la_LINK) $(libvirt_viewer_util_la_OBJECTS) $(libvirt_viewer_util_la_LIBADD) $(LIBS)
744
745 libvirt-viewer.la: $(libvirt_viewer_la_OBJECTS) $(libvirt_viewer_la_DEPENDENCIES) $(EXTRA_libvirt_viewer_la_DEPENDENCIES)
746 $(AM_V_CCLD)$(libvirt_viewer_la_LINK) $(libvirt_viewer_la_OBJECTS) $(libvirt_viewer_la_LIBADD) $(LIBS)
747
734748 remote-viewer$(EXEEXT): $(remote_viewer_OBJECTS) $(remote_viewer_DEPENDENCIES) $(EXTRA_remote_viewer_DEPENDENCIES)
735749 @rm -f remote-viewer$(EXEEXT)
736750 $(AM_V_CCLD)$(remote_viewer_LINK) $(remote_viewer_OBJECTS) $(remote_viewer_LDADD) $(LIBS)
749763 distclean-compile:
750764 -rm -f *.tab.c
751765
752 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-glib-compat.Plo@am__quote@
753 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Plo@am__quote@
754 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-remote-viewer-iso-list-dialog.Plo@am__quote@
755 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-app.Plo@am__quote@
756 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Plo@am__quote@
757 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-spice.Plo@am__quote@
758 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vnc.Plo@am__quote@
759 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display.Plo@am__quote@
760 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Plo@am__quote@
761 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Plo@am__quote@
762 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file.Plo@am__quote@
763 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-notebook.Plo@am__quote@
764 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Plo@am__quote@
765 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-spice.Plo@am__quote@
766 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-vnc.Plo@am__quote@
767 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session.Plo@am__quote@
768 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Plo@am__quote@
769 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-vm-connection.Plo@am__quote@
770 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-window.Plo@am__quote@
771 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Plo@am__quote@
772 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer-connect.Po@am__quote@
773 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer-main.Po@am__quote@
774 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer.Po@am__quote@
775 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/virt_viewer-virt-viewer-main.Po@am__quote@
776 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/virt_viewer-virt-viewer.Po@am__quote@
777 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windows-cmdline-wrapper.Po@am__quote@
766 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-glib-compat.Plo@am__quote@ # am--include-marker
767 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Plo@am__quote@ # am--include-marker
768 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-remote-viewer-iso-list-dialog.Plo@am__quote@ # am--include-marker
769 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-app.Plo@am__quote@ # am--include-marker
770 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Plo@am__quote@ # am--include-marker
771 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-spice.Plo@am__quote@ # am--include-marker
772 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vnc.Plo@am__quote@ # am--include-marker
773 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vte.Plo@am__quote@ # am--include-marker
774 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display.Plo@am__quote@ # am--include-marker
775 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Plo@am__quote@ # am--include-marker
776 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Plo@am__quote@ # am--include-marker
777 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file.Plo@am__quote@ # am--include-marker
778 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-notebook.Plo@am__quote@ # am--include-marker
779 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Plo@am__quote@ # am--include-marker
780 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-spice.Plo@am__quote@ # am--include-marker
781 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-vnc.Plo@am__quote@ # am--include-marker
782 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session.Plo@am__quote@ # am--include-marker
783 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Plo@am__quote@ # am--include-marker
784 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-vm-connection.Plo@am__quote@ # am--include-marker
785 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_la-virt-viewer-window.Plo@am__quote@ # am--include-marker
786 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Plo@am__quote@ # am--include-marker
787 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer-connect.Po@am__quote@ # am--include-marker
788 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer-main.Po@am__quote@ # am--include-marker
789 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/remote_viewer-remote-viewer.Po@am__quote@ # am--include-marker
790 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/virt_viewer-virt-viewer-main.Po@am__quote@ # am--include-marker
791 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/virt_viewer-virt-viewer.Po@am__quote@ # am--include-marker
792 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windows-cmdline-wrapper.Po@am__quote@ # am--include-marker
793
794 $(am__depfiles_remade):
795 @$(MKDIR_P) $(@D)
796 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
797
798 am--depfiles: $(am__depfiles_remade)
778799
779800 .c.o:
780801 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
883904 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-vm-connection.c' object='libvirt_viewer_la-virt-viewer-vm-connection.lo' libtool=yes @AMDEPBACKSLASH@
884905 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
885906 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_viewer_la_CFLAGS) $(CFLAGS) -c -o libvirt_viewer_la-virt-viewer-vm-connection.lo `test -f 'virt-viewer-vm-connection.c' || echo '$(srcdir)/'`virt-viewer-vm-connection.c
907
908 libvirt_viewer_la-virt-viewer-display-vte.lo: virt-viewer-display-vte.c
909 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_viewer_la_CFLAGS) $(CFLAGS) -MT libvirt_viewer_la-virt-viewer-display-vte.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vte.Tpo -c -o libvirt_viewer_la-virt-viewer-display-vte.lo `test -f 'virt-viewer-display-vte.c' || echo '$(srcdir)/'`virt-viewer-display-vte.c
910 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vte.Tpo $(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vte.Plo
911 @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virt-viewer-display-vte.c' object='libvirt_viewer_la-virt-viewer-display-vte.lo' libtool=yes @AMDEPBACKSLASH@
912 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
913 @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_viewer_la_CFLAGS) $(CFLAGS) -c -o libvirt_viewer_la-virt-viewer-display-vte.lo `test -f 'virt-viewer-display-vte.c' || echo '$(srcdir)/'`virt-viewer-display-vte.c
886914
887915 libvirt_viewer_la-virt-viewer-timed-revealer.lo: virt-viewer-timed-revealer.c
888916 @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvirt_viewer_la_CFLAGS) $(CFLAGS) -MT libvirt_viewer_la-virt-viewer-timed-revealer.lo -MD -MP -MF $(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Tpo -c -o libvirt_viewer_la-virt-viewer-timed-revealer.lo `test -f 'virt-viewer-timed-revealer.c' || echo '$(srcdir)/'`virt-viewer-timed-revealer.c
10681096 distclean-tags:
10691097 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
10701098
1071 distdir: $(DISTFILES)
1099 distdir: $(BUILT_SOURCES)
1100 $(MAKE) $(AM_MAKEFLAGS) distdir-am
1101
1102 distdir-am: $(DISTFILES)
10721103 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
10731104 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
10741105 list='$(DISTFILES)'; \
11011132 check-am: all-am
11021133 check: $(BUILT_SOURCES)
11031134 $(MAKE) $(AM_MAKEFLAGS) check-am
1104 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA)
1135 all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(DATA)
11051136 installdirs:
11061137 for dir in "$(DESTDIR)$(bindir)"; do \
11071138 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
11461177 clean-noinstLTLIBRARIES mostlyclean-am
11471178
11481179 distclean: distclean-am
1149 -rm -rf ./$(DEPDIR)
1180 -rm -f ./$(DEPDIR)/libvirt_viewer_la-glib-compat.Plo
1181 -rm -f ./$(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Plo
1182 -rm -f ./$(DEPDIR)/libvirt_viewer_la-remote-viewer-iso-list-dialog.Plo
1183 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-app.Plo
1184 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Plo
1185 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-spice.Plo
1186 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vnc.Plo
1187 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vte.Plo
1188 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display.Plo
1189 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Plo
1190 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Plo
1191 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file.Plo
1192 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-notebook.Plo
1193 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Plo
1194 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-spice.Plo
1195 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-vnc.Plo
1196 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session.Plo
1197 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Plo
1198 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-vm-connection.Plo
1199 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-window.Plo
1200 -rm -f ./$(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Plo
1201 -rm -f ./$(DEPDIR)/remote_viewer-remote-viewer-connect.Po
1202 -rm -f ./$(DEPDIR)/remote_viewer-remote-viewer-main.Po
1203 -rm -f ./$(DEPDIR)/remote_viewer-remote-viewer.Po
1204 -rm -f ./$(DEPDIR)/virt_viewer-virt-viewer-main.Po
1205 -rm -f ./$(DEPDIR)/virt_viewer-virt-viewer.Po
1206 -rm -f ./$(DEPDIR)/windows-cmdline-wrapper.Po
11501207 -rm -f Makefile
11511208 distclean-am: clean-am distclean-compile distclean-generic \
11521209 distclean-tags
11921249 installcheck-am:
11931250
11941251 maintainer-clean: maintainer-clean-am
1195 -rm -rf ./$(DEPDIR)
1252 -rm -f ./$(DEPDIR)/libvirt_viewer_la-glib-compat.Plo
1253 -rm -f ./$(DEPDIR)/libvirt_viewer_la-ovirt-foreign-menu.Plo
1254 -rm -f ./$(DEPDIR)/libvirt_viewer_la-remote-viewer-iso-list-dialog.Plo
1255 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-app.Plo
1256 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-auth.Plo
1257 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-spice.Plo
1258 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vnc.Plo
1259 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display-vte.Plo
1260 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-display.Plo
1261 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-enums.Plo
1262 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file-transfer-dialog.Plo
1263 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-file.Plo
1264 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-notebook.Plo
1265 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-resources.Plo
1266 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-spice.Plo
1267 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session-vnc.Plo
1268 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-session.Plo
1269 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-timed-revealer.Plo
1270 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-vm-connection.Plo
1271 -rm -f ./$(DEPDIR)/libvirt_viewer_la-virt-viewer-window.Plo
1272 -rm -f ./$(DEPDIR)/libvirt_viewer_util_la-virt-viewer-util.Plo
1273 -rm -f ./$(DEPDIR)/remote_viewer-remote-viewer-connect.Po
1274 -rm -f ./$(DEPDIR)/remote_viewer-remote-viewer-main.Po
1275 -rm -f ./$(DEPDIR)/remote_viewer-remote-viewer.Po
1276 -rm -f ./$(DEPDIR)/virt_viewer-virt-viewer-main.Po
1277 -rm -f ./$(DEPDIR)/virt_viewer-virt-viewer.Po
1278 -rm -f ./$(DEPDIR)/windows-cmdline-wrapper.Po
11961279 -rm -f Makefile
11971280 maintainer-clean-am: distclean-am maintainer-clean-generic
11981281
12131296
12141297 .MAKE: all check install install-am install-strip
12151298
1216 .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
1299 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
12171300 clean-binPROGRAMS clean-generic clean-libtool \
12181301 clean-noinstLTLIBRARIES cscopelist-am ctags ctags-am distclean \
12191302 distclean-compile distclean-generic distclean-libtool \
5858 static void ovirt_foreign_menu_refresh_cdrom_file_async(OvirtForeignMenu *menu, GTask *task);
5959 static void ovirt_foreign_menu_fetch_iso_list_async(OvirtForeignMenu *menu, GTask *task);
6060
61 G_DEFINE_TYPE (OvirtForeignMenu, ovirt_foreign_menu, G_TYPE_OBJECT)
62
6361
6462 struct _OvirtForeignMenuPrivate {
6563 OvirtProxy *proxy;
8684 };
8785
8886
89 #define OVIRT_FOREIGN_MENU_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), OVIRT_TYPE_FOREIGN_MENU, OvirtForeignMenuPrivate))
87 G_DEFINE_TYPE_WITH_PRIVATE (OvirtForeignMenu, ovirt_foreign_menu, G_TYPE_OBJECT)
9088
9189
9290 enum {
9896 PROP_FILES,
9997 PROP_VM_GUID,
10098 };
101
10299
103100 gchar *
104101 ovirt_foreign_menu_get_current_iso_name(OvirtForeignMenu *foreign_menu)
228225 oclass->get_property = ovirt_foreign_menu_get_property;
229226 oclass->set_property = ovirt_foreign_menu_set_property;
230227 oclass->dispose = ovirt_foreign_menu_dispose;
231
232 g_type_class_add_private(klass, sizeof(OvirtForeignMenuPrivate));
233228
234229 g_object_class_install_property(oclass,
235230 PROP_PROXY,
286281 static void
287282 ovirt_foreign_menu_init(OvirtForeignMenu *self)
288283 {
289 self->priv = OVIRT_FOREIGN_MENU_GET_PRIVATE(self);
284 self->priv = ovirt_foreign_menu_get_instance_private(self);
290285 }
291286
292287
367362 default:
368363 g_warn_if_reached();
369364 g_task_return_new_error(task, OVIRT_ERROR, OVIRT_ERROR_FAILED,
370 "Invalid state: %d", current_state);
365 "Invalid state: %u", current_state);
371366 g_object_unref(task);
372367 }
373368 }
489484 * associated with file resources , but as of 3.2, this node
490485 * is not present, so we do an extension check instead
491486 * to differentiate between ISOs and floppy images */
492 if (g_str_has_suffix(name, ".vfd")) {
487 if (!g_str_has_suffix(name, ".iso")) {
488 g_debug("Ignoring %s which does not have a .iso extension", name);
493489 g_free(name);
494490 continue;
495491 }
622618 }
623619
624620 #ifdef HAVE_OVIRT_DATA_CENTER
621 static gboolean strv_contains(const gchar * const *strv, const gchar *str)
622 {
623 G_GNUC_BEGIN_IGNORE_DEPRECATIONS
624 return g_strv_contains (strv, str);
625 G_GNUC_END_IGNORE_DEPRECATIONS
626 }
627
625628 static gboolean storage_domain_attached_to_data_center(OvirtStorageDomain *domain,
626629 OvirtDataCenter *data_center)
627630 {
631634
632635 g_object_get(domain, "data-center-ids", &data_center_ids, NULL);
633636 g_object_get(data_center, "guid", &data_center_guid, NULL);
634 match = g_strv_contains((const gchar * const *) data_center_ids, data_center_guid);
637 match = strv_contains((const gchar * const *) data_center_ids, data_center_guid);
635638 g_strfreev(data_center_ids);
636639 g_free(data_center_guid);
637640
639642 }
640643 #endif
641644
645 static gboolean storage_domain_validate(OvirtForeignMenu *menu G_GNUC_UNUSED,
646 OvirtStorageDomain *domain)
647 {
648 char *name;
649 int type, state;
650 gboolean ret = TRUE;
651
652 g_object_get(domain, "name", &name, "type", &type, "state", &state, NULL);
653
654 if (type != OVIRT_STORAGE_DOMAIN_TYPE_ISO) {
655 g_debug("Storage domain '%s' type is not ISO", name);
656 ret = FALSE;
657 }
658
659 if (state != OVIRT_STORAGE_DOMAIN_STATE_ACTIVE) {
660 g_debug("Storage domain '%s' state is not active", name);
661 ret = FALSE;
662 }
663
664 #ifdef HAVE_OVIRT_DATA_CENTER
665 if (!storage_domain_attached_to_data_center(domain, menu->priv->data_center)) {
666 g_debug("Storage domain '%s' is not attached to data center", name);
667 ret = FALSE;
668 }
669 #endif
670
671 g_debug ("Storage domain '%s' is %s", name, ret ? "valid" : "not valid");
672 g_free(name);
673 return ret;
674 }
675
676 static gboolean ovirt_foreign_menu_set_file_collection(OvirtForeignMenu *menu, OvirtCollection *file_collection)
677 {
678 g_return_val_if_fail(file_collection != NULL, FALSE);
679
680 if (menu->priv->files) {
681 g_object_unref(G_OBJECT(menu->priv->files));
682 }
683 menu->priv->files = g_object_ref(G_OBJECT(file_collection));
684 g_debug("Set VM files to %p", menu->priv->files);
685 return TRUE;
686 }
642687
643688 static void storage_domains_fetched_cb(GObject *source_object,
644689 GAsyncResult *result,
650695 OvirtCollection *collection = OVIRT_COLLECTION(source_object);
651696 GHashTableIter iter;
652697 OvirtStorageDomain *domain;
698 gboolean domain_valid = FALSE;
653699
654700 ovirt_collection_fetch_finish(collection, result, &error);
655701 if (error != NULL) {
662708 g_hash_table_iter_init(&iter, ovirt_collection_get_resources(collection));
663709 while (g_hash_table_iter_next(&iter, NULL, (gpointer *)&domain)) {
664710 OvirtCollection *file_collection;
665 int type;
666 int state;
667
668 g_object_get(domain, "type", &type, "state", &state, NULL);
669 if (type != OVIRT_STORAGE_DOMAIN_TYPE_ISO) {
711
712 if (!storage_domain_validate(menu, domain))
670713 continue;
671 }
672
673 if (state != OVIRT_STORAGE_DOMAIN_STATE_ACTIVE) {
714
715 if (!domain_valid)
716 domain_valid = TRUE;
717
718 file_collection = ovirt_storage_domain_get_files(domain);
719 if (!ovirt_foreign_menu_set_file_collection(menu, file_collection))
674720 continue;
675 }
676
677 #ifdef HAVE_OVIRT_DATA_CENTER
678 if (!storage_domain_attached_to_data_center(domain, menu->priv->data_center)) {
679 continue;
680 }
681 #endif
682
683 file_collection = ovirt_storage_domain_get_files(domain);
684 if (file_collection != NULL) {
685 if (menu->priv->files) {
686 g_object_unref(G_OBJECT(menu->priv->files));
687 }
688 menu->priv->files = g_object_ref(G_OBJECT(file_collection));
689 g_debug("Set VM files to %p", menu->priv->files);
690 break;
691 }
721
722 break; /* There can only be one valid storage domain at a time,
723 no need to iterate more on the list */
692724 }
693725
694726 if (menu->priv->files != NULL) {
695727 ovirt_foreign_menu_next_async_step(menu, task, STATE_STORAGE_DOMAIN);
696728 } else {
697 g_debug("Could not find iso file collection");
698 g_task_return_new_error(task, OVIRT_ERROR, OVIRT_ERROR_FAILED,
699 "Could not find ISO file collection");
729 const char *msg = domain_valid ? "Could not find ISO file collection"
730 : "Could not find valid ISO storage domain";
731
732 g_debug("%s", msg);
733 g_task_return_new_error(task, OVIRT_ERROR, OVIRT_ERROR_FAILED, "%s", msg);
700734 g_object_unref(task);
701735 }
702736 }
705739 static void ovirt_foreign_menu_fetch_storage_domain_async(OvirtForeignMenu *menu,
706740 GTask *task)
707741 {
708 OvirtCollection *collection = ovirt_api_get_storage_domains(menu->priv->api);
709
710 g_debug("Start fetching oVirt REST collection");
742 OvirtCollection *collection = NULL;
743
744 #ifdef HAVE_OVIRT_DATA_CENTER
745 g_return_if_fail(OVIRT_IS_FOREIGN_MENU(menu));
746 g_return_if_fail(OVIRT_IS_PROXY(menu->priv->proxy));
747 g_return_if_fail(OVIRT_IS_DATA_CENTER(menu->priv->data_center));
748
749 collection = ovirt_data_center_get_storage_domains(menu->priv->data_center);
750 #else
751 collection = ovirt_api_get_storage_domains(menu->priv->api);
752 #endif
753
754 g_debug("Start fetching iso file collection");
711755 ovirt_collection_fetch_async(collection, menu->priv->proxy,
712756 g_task_get_cancellable(task),
713757 storage_domains_fetched_cb, task);
843887 g_debug("failed to fetch VM list: %s", error->message);
844888 g_task_return_error(task, error);
845889 g_object_unref(task);
846 return;
890 goto end;
847891 }
848892
849893 g_hash_table_iter_init(&iter, ovirt_collection_get_resources(collection));
866910 "Could not find a VM with guid \"%s\"", menu->priv->vm_guid);
867911 g_object_unref(task);
868912 }
913
914 end:
915 g_object_unref(collection);
869916 }
870917
871918
2828 static void ovirt_foreign_menu_iso_name_changed(OvirtForeignMenu *foreign_menu, GAsyncResult *result, RemoteViewerISOListDialog *self);
2929 static void remote_viewer_iso_list_dialog_show_error(RemoteViewerISOListDialog *self, const gchar *message);
3030
31 G_DEFINE_TYPE(RemoteViewerISOListDialog, remote_viewer_iso_list_dialog, GTK_TYPE_DIALOG)
32
33 #define DIALOG_PRIVATE(o) \
34 (G_TYPE_INSTANCE_GET_PRIVATE((o), REMOTE_VIEWER_TYPE_ISO_LIST_DIALOG, RemoteViewerISOListDialogPrivate))
35
36 struct _RemoteViewerISOListDialogPrivate
37 {
31 struct _RemoteViewerISOListDialog
32 {
33 GtkDialog parent;
3834 GtkListStore *list_store;
3935 GtkWidget *status;
4036 GtkWidget *spinner;
4440 GCancellable *cancellable;
4541 };
4642
43 struct _RemoteViewerISOListDialogClass
44 {
45 GtkDialogClass parent_class;
46 };
47
48 G_DEFINE_TYPE(RemoteViewerISOListDialog, remote_viewer_iso_list_dialog, GTK_TYPE_DIALOG)
49
4750 enum RemoteViewerISOListDialogModel
4851 {
4952 ISO_IS_ACTIVE = 0,
6467 remote_viewer_iso_list_dialog_dispose(GObject *object)
6568 {
6669 RemoteViewerISOListDialog *self = REMOTE_VIEWER_ISO_LIST_DIALOG(object);
67 RemoteViewerISOListDialogPrivate *priv = self->priv;
68
69 g_clear_object(&priv->cancellable);
70
71 if (priv->foreign_menu) {
72 g_signal_handlers_disconnect_by_data(priv->foreign_menu, object);
73 g_clear_object(&priv->foreign_menu);
70
71 g_clear_object(&self->cancellable);
72
73 if (self->foreign_menu) {
74 g_signal_handlers_disconnect_by_data(self->foreign_menu, object);
75 g_clear_object(&self->foreign_menu);
7476 }
7577 G_OBJECT_CLASS(remote_viewer_iso_list_dialog_parent_class)->dispose(object);
7678 }
8082 const GValue *value, GParamSpec *pspec)
8183 {
8284 RemoteViewerISOListDialog *self = REMOTE_VIEWER_ISO_LIST_DIALOG(object);
83 RemoteViewerISOListDialogPrivate *priv = self->priv;
8485
8586 switch (property_id) {
8687 case PROP_FOREIGN_MENU:
87 priv->foreign_menu = g_value_dup_object(value);
88 self->foreign_menu = g_value_dup_object(value);
8889 break;
8990 default:
9091 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
9596 remote_viewer_iso_list_dialog_class_init(RemoteViewerISOListDialogClass *klass)
9697 {
9798 GObjectClass *object_class = G_OBJECT_CLASS(klass);
98
99 g_type_class_add_private(klass, sizeof(RemoteViewerISOListDialogPrivate));
10099
101100 object_class->dispose = remote_viewer_iso_list_dialog_dispose;
102101 object_class->set_property = remote_viewer_iso_list_dialog_set_property;
113112 static void
114113 remote_viewer_iso_list_dialog_show_files(RemoteViewerISOListDialog *self)
115114 {
116 self->priv = DIALOG_PRIVATE(self);
117 gtk_stack_set_visible_child_full(GTK_STACK(self->priv->stack), "iso-list",
115 gtk_stack_set_visible_child_full(GTK_STACK(self->stack), "iso-list",
118116 GTK_STACK_TRANSITION_TYPE_NONE);
119117 gtk_dialog_set_response_sensitive(GTK_DIALOG(self), GTK_RESPONSE_NONE, TRUE);
120118 }
122120 static void
123121 remote_viewer_iso_list_dialog_foreach(char *name, RemoteViewerISOListDialog *self)
124122 {
125 RemoteViewerISOListDialogPrivate *priv = self->priv;
126 gchar *current_iso = ovirt_foreign_menu_get_current_iso_name(self->priv->foreign_menu);
123 gchar *current_iso = ovirt_foreign_menu_get_current_iso_name(self->foreign_menu);
127124 gboolean active = (g_strcmp0(current_iso, name) == 0);
128125 gint weight = active ? PANGO_WEIGHT_BOLD : PANGO_WEIGHT_NORMAL;
129126 GtkTreeIter iter;
130127
131 gtk_list_store_append(priv->list_store, &iter);
132 gtk_list_store_set(priv->list_store, &iter,
128 gtk_list_store_append(self->list_store, &iter);
129 gtk_list_store_set(self->list_store, &iter,
133130 ISO_IS_ACTIVE, active,
134131 ISO_NAME, name,
135132 FONT_WEIGHT, weight, -1);
136133
137134 if (active) {
138 GtkTreePath *path = gtk_tree_model_get_path(GTK_TREE_MODEL(priv->list_store), &iter);
139 gtk_tree_view_set_cursor(GTK_TREE_VIEW(priv->tree_view), path, NULL, FALSE);
140 gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(priv->tree_view), path, NULL, TRUE, 0.5, 0.5);
135 GtkTreePath *path = gtk_tree_model_get_path(GTK_TREE_MODEL(self->list_store), &iter);
136 gtk_tree_view_set_cursor(GTK_TREE_VIEW(self->tree_view), path, NULL, FALSE);
137 gtk_tree_view_scroll_to_cell(GTK_TREE_VIEW(self->tree_view), path, NULL, TRUE, 0.5, 0.5);
141138 gtk_tree_path_free(path);
142139 }
143140
149146 GAsyncResult *result,
150147 RemoteViewerISOListDialog *self)
151148 {
152 RemoteViewerISOListDialogPrivate *priv = self->priv;
153149 GError *error = NULL;
154150 GList *iso_list;
155151
163159 if (g_error_matches(error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
164160 goto end;
165161
166 gtk_label_set_markup(GTK_LABEL(priv->status), markup);
167 gtk_spinner_stop(GTK_SPINNER(priv->spinner));
162 gtk_label_set_markup(GTK_LABEL(self->status), markup);
163 gtk_spinner_stop(GTK_SPINNER(self->spinner));
168164 remote_viewer_iso_list_dialog_show_error(self, msg);
169165 gtk_dialog_set_response_sensitive(GTK_DIALOG(self), GTK_RESPONSE_NONE, TRUE);
170166 g_free(markup);
171167 goto end;
172168 }
173169
174 g_clear_object(&priv->cancellable);
170 g_clear_object(&self->cancellable);
175171 g_list_foreach(iso_list, (GFunc) remote_viewer_iso_list_dialog_foreach, self);
176172 remote_viewer_iso_list_dialog_show_files(self);
177173
183179 static void
184180 remote_viewer_iso_list_dialog_refresh_iso_list(RemoteViewerISOListDialog *self)
185181 {
186 RemoteViewerISOListDialogPrivate *priv = self->priv;
187
188 gtk_list_store_clear(priv->list_store);
189
190 priv->cancellable = g_cancellable_new();
191 ovirt_foreign_menu_fetch_iso_names_async(priv->foreign_menu,
192 priv->cancellable,
182 gtk_list_store_clear(self->list_store);
183
184 self->cancellable = g_cancellable_new();
185 ovirt_foreign_menu_fetch_iso_names_async(self->foreign_menu,
186 self->cancellable,
193187 (GAsyncReadyCallback) fetch_iso_names_cb,
194188 self);
195189 }
200194 gpointer user_data G_GNUC_UNUSED)
201195 {
202196 RemoteViewerISOListDialog *self = REMOTE_VIEWER_ISO_LIST_DIALOG(dialog);
203 RemoteViewerISOListDialogPrivate *priv = self->priv;
204197
205198 if (response_id != GTK_RESPONSE_NONE) {
206 g_cancellable_cancel(priv->cancellable);
199 g_cancellable_cancel(self->cancellable);
207200 return;
208201 }
209202
210 gtk_spinner_start(GTK_SPINNER(priv->spinner));
211 gtk_label_set_markup(GTK_LABEL(priv->status), _("<b>Loading...</b>"));
212 gtk_stack_set_visible_child_full(GTK_STACK(priv->stack), "status",
203 gtk_spinner_start(GTK_SPINNER(self->spinner));
204 gtk_label_set_markup(GTK_LABEL(self->status), _("<b>Loading...</b>"));
205 gtk_stack_set_visible_child_full(GTK_STACK(self->stack), "status",
213206 GTK_STACK_TRANSITION_TYPE_NONE);
214207 gtk_dialog_set_response_sensitive(GTK_DIALOG(self), GTK_RESPONSE_NONE, FALSE);
215208 remote_viewer_iso_list_dialog_refresh_iso_list(self);
216209 }
217210
218 void
211 G_MODULE_EXPORT void
219212 remote_viewer_iso_list_dialog_toggled(GtkCellRendererToggle *cell_renderer G_GNUC_UNUSED,
220213 gchar *path,
221214 gpointer user_data)
222215 {
223216 RemoteViewerISOListDialog *self = REMOTE_VIEWER_ISO_LIST_DIALOG(user_data);
224 RemoteViewerISOListDialogPrivate *priv = self->priv;
225 GtkTreeModel *model = GTK_TREE_MODEL(priv->list_store);
217 GtkTreeModel *model = GTK_TREE_MODEL(self->list_store);
226218 GtkTreePath *tree_path = gtk_tree_path_new_from_string(path);
227219 GtkTreeIter iter;
228220 gboolean active;
229221 gchar *name;
230222
231 gtk_tree_view_set_cursor(GTK_TREE_VIEW(priv->tree_view), tree_path, NULL, FALSE);
223 gtk_tree_view_set_cursor(GTK_TREE_VIEW(self->tree_view), tree_path, NULL, FALSE);
232224 gtk_tree_model_get_iter(model, &iter, tree_path);
233225 gtk_tree_model_get(model, &iter,
234226 ISO_IS_ACTIVE, &active,
235227 ISO_NAME, &name, -1);
236228
237229 gtk_dialog_set_response_sensitive(GTK_DIALOG(self), GTK_RESPONSE_NONE, FALSE);
238 gtk_widget_set_sensitive(priv->tree_view, FALSE);
239
240 priv->cancellable = g_cancellable_new();
241 ovirt_foreign_menu_set_current_iso_name_async(priv->foreign_menu, active ? NULL : name,
242 priv->cancellable,
230 gtk_widget_set_sensitive(self->tree_view, FALSE);
231
232 self->cancellable = g_cancellable_new();
233 ovirt_foreign_menu_set_current_iso_name_async(self->foreign_menu, active ? NULL : name,
234 self->cancellable,
243235 (GAsyncReadyCallback)ovirt_foreign_menu_iso_name_changed,
244236 self);
245237 gtk_tree_path_free(tree_path);
246238 g_free(name);
247239 }
248240
249 void
241 G_MODULE_EXPORT void
250242 remote_viewer_iso_list_dialog_row_activated(GtkTreeView *view G_GNUC_UNUSED,
251243 GtkTreePath *path,
252244 GtkTreeViewColumn *col G_GNUC_UNUSED,
261253 remote_viewer_iso_list_dialog_init(RemoteViewerISOListDialog *self)
262254 {
263255 GtkWidget *content = gtk_dialog_get_content_area(GTK_DIALOG(self));
264 RemoteViewerISOListDialogPrivate *priv = self->priv = DIALOG_PRIVATE(self);
265256 GtkBuilder *builder = virt_viewer_util_load_ui("remote-viewer-iso-list.ui");
266257 GtkCellRendererToggle *cell_renderer;
267258
268259 gtk_builder_connect_signals(builder, self);
269260
270 priv->status = GTK_WIDGET(gtk_builder_get_object(builder, "status"));
271 priv->spinner = GTK_WIDGET(gtk_builder_get_object(builder, "spinner"));
272 priv->stack = GTK_WIDGET(gtk_builder_get_object(builder, "stack"));
273 gtk_box_pack_start(GTK_BOX(content), priv->stack, TRUE, TRUE, 0);
274
275 priv->list_store = GTK_LIST_STORE(gtk_builder_get_object(builder, "liststore"));
276 priv->tree_view = GTK_WIDGET(gtk_builder_get_object(builder, "view"));
261 self->status = GTK_WIDGET(gtk_builder_get_object(builder, "status"));
262 self->spinner = GTK_WIDGET(gtk_builder_get_object(builder, "spinner"));
263 self->stack = GTK_WIDGET(gtk_builder_get_object(builder, "stack"));
264 gtk_box_pack_start(GTK_BOX(content), self->stack, TRUE, TRUE, 0);
265
266 self->list_store = GTK_LIST_STORE(gtk_builder_get_object(builder, "liststore"));
267 self->tree_view = GTK_WIDGET(gtk_builder_get_object(builder, "view"));
277268 cell_renderer = GTK_CELL_RENDERER_TOGGLE(gtk_builder_get_object(builder, "cellrenderertoggle"));
278269 gtk_cell_renderer_toggle_set_radio(cell_renderer, TRUE);
279270 gtk_cell_renderer_set_padding(GTK_CELL_RENDERER(cell_renderer), 6, 6);
312303 GAsyncResult *result,
313304 RemoteViewerISOListDialog *self)
314305 {
315 RemoteViewerISOListDialogPrivate *priv = self->priv;
316 GtkTreeModel *model = GTK_TREE_MODEL(priv->list_store);
306 GtkTreeModel *model = GTK_TREE_MODEL(self->list_store);
317307 gchar *current_iso;
318308 GtkTreeIter iter;
319309 gchar *name;
333323 remote_viewer_iso_list_dialog_show_error(self, msg);
334324 }
335325
336 g_clear_object(&priv->cancellable);
326 g_clear_object(&self->cancellable);
337327 if (!gtk_tree_model_get_iter_first(model, &iter))
338328 goto end;
339329
347337
348338 /* iso is not active anymore */
349339 if (active && !match) {
350 gtk_list_store_set(priv->list_store, &iter,
340 gtk_list_store_set(self->list_store, &iter,
351341 ISO_IS_ACTIVE, FALSE,
352342 FONT_WEIGHT, PANGO_WEIGHT_NORMAL, -1);
353343 } else if (match) {
354 gtk_list_store_set(priv->list_store, &iter,
344 gtk_list_store_set(self->list_store, &iter,
355345 ISO_IS_ACTIVE, TRUE,
356346 FONT_WEIGHT, PANGO_WEIGHT_BOLD, -1);
357347 }
360350 } while (gtk_tree_model_iter_next(model, &iter));
361351
362352 gtk_dialog_set_response_sensitive(GTK_DIALOG(self), GTK_RESPONSE_NONE, TRUE);
363 gtk_widget_set_sensitive(priv->tree_view, TRUE);
353 gtk_widget_set_sensitive(self->tree_view, TRUE);
364354 g_free(current_iso);
365355
366356 end:
3434
3535 typedef struct _RemoteViewerISOListDialog RemoteViewerISOListDialog;
3636 typedef struct _RemoteViewerISOListDialogClass RemoteViewerISOListDialogClass;
37 typedef struct _RemoteViewerISOListDialogPrivate RemoteViewerISOListDialogPrivate;
38
39 struct _RemoteViewerISOListDialog
40 {
41 GtkDialog parent;
42
43 RemoteViewerISOListDialogPrivate *priv;
44 };
45
46 struct _RemoteViewerISOListDialogClass
47 {
48 GtkDialogClass parent_class;
49 };
5037
5138 GType remote_viewer_iso_list_dialog_get_type(void) G_GNUC_CONST;
5239
5353 gboolean open_recent_dialog;
5454 };
5555
56 G_DEFINE_TYPE (RemoteViewer, remote_viewer, VIRT_VIEWER_TYPE_APP)
57 #define GET_PRIVATE(o) \
58 (G_TYPE_INSTANCE_GET_PRIVATE ((o), REMOTE_VIEWER_TYPE, RemoteViewerPrivate))
56 G_DEFINE_TYPE_WITH_PRIVATE (RemoteViewer, remote_viewer, VIRT_VIEWER_TYPE_APP)
5957
6058 enum RemoteViewerProperties {
6159 PROP_0,
195193 VirtViewerAppClass *app_class = VIRT_VIEWER_APP_CLASS (klass);
196194 GApplicationClass *g_app_class = G_APPLICATION_CLASS(klass);
197195
198 g_type_class_add_private (klass, sizeof (RemoteViewerPrivate));
199
200196 object_class->get_property = remote_viewer_get_property;
201197 object_class->dispose = remote_viewer_dispose;
202198
220216 static void
221217 remote_viewer_init(RemoteViewer *self)
222218 {
223 self->priv = GET_PRIVATE(self);
219 self->priv = remote_viewer_get_instance_private(self);
224220 }
225221
226222 RemoteViewer *
344340 "username", username,
345341 "password", password,
346342 NULL);
347 #ifdef HAVE_OVIRT_CANCEL
348343 } else {
349344 rest_proxy_auth_cancel(auth);
350 #endif
351345 }
352346
353347 g_free(username);
446440 api = ovirt_proxy_fetch_api(proxy, &error);
447441 if (error != NULL) {
448442 g_debug("failed to get oVirt 'api' collection: %s", error->message);
449 #ifdef HAVE_OVIRT_CANCEL
450443 if (g_error_matches(error, OVIRT_REST_CALL_ERROR, OVIRT_REST_CALL_ERROR_CANCELLED)) {
451444 g_clear_error(&error);
452445 g_set_error_literal(&error,
453446 VIRT_VIEWER_ERROR, VIRT_VIEWER_ERROR_CANCELLED,
454447 _("Authentication was cancelled"));
455448 }
456 #endif
457449 goto error;
458450 }
459451 vms = ovirt_api_get_vms(api);
508500 "proxy-url", &proxy_url,
509501 NULL);
510502 if (port != 0) {
511 gport = g_strdup_printf("%d", port);
503 gport = g_strdup_printf("%u", port);
512504 }
513505 if (secure_port != 0) {
514 gtlsport = g_strdup_printf("%d", secure_port);
506 gtlsport = g_strdup_printf("%u", secure_port);
515507 }
516508
517509 if (ghost == NULL) {
527519 session_type = "vnc";
528520 } else {
529521 g_set_error(&error, VIRT_VIEWER_ERROR, VIRT_VIEWER_ERROR_FAILED,
530 _("oVirt VM %s has unknown display type: %d"), vm_name, type);
522 _("oVirt VM %s has unknown display type: %u"), vm_name, type);
531523 g_debug("%s", error->message);
532524 goto error;
533525 }
547539 #ifdef HAVE_SPICE_GTK
548540 if (type == OVIRT_VM_DISPLAY_SPICE) {
549541 SpiceSession *session;
550 GByteArray *ca_cert;
542 GByteArray *ca_cert = NULL;
543 const char *from = "display";
551544
552545 session = remote_viewer_get_spice_session(REMOTE_VIEWER(app));
553546 g_object_set(G_OBJECT(session),
555548 "cert-subject", host_subject,
556549 "proxy", proxy_url,
557550 NULL);
558 g_object_get(G_OBJECT(proxy), "ca-cert", &ca_cert, NULL);
551
552 g_object_get(G_OBJECT(display), "ca-cert", &ca_cert, NULL);
553 if (ca_cert == NULL) {
554 g_object_get(G_OBJECT(proxy), "ca-cert", &ca_cert, NULL);
555 from = "proxy";
556 }
557
559558 if (ca_cert != NULL) {
560559 g_object_set(G_OBJECT(session),
561560 "ca", ca_cert,
562561 NULL);
563562 g_byte_array_unref(ca_cert);
563 g_debug("Using ca-cert from %s", from);
564564 }
565565 }
566566 #endif
652652
653653 static void
654654 remote_viewer_session_connected(VirtViewerSession *session,
655 gchar *guri)
655 const gchar *guri)
656656 {
657657 gchar *uri = virt_viewer_session_get_uri(session);
658658 const gchar *mime = virt_viewer_session_mime_type(session);
659659
660 if (uri == NULL)
661 uri = g_strdup(guri);
662
663 remote_viewer_recent_add(uri, mime);
660 remote_viewer_recent_add(uri != NULL ? uri : (char *) guri, mime);
664661 g_free(uri);
665 g_free(guri);
666662 }
667663
668664 static gchar *
687683 {
688684 VirtViewerApp *app = VIRT_VIEWER_APP(self);
689685
690 if (!virt_viewer_app_create_session(app, type, error))
691 return FALSE;
692
686 #ifdef HAVE_OVIRT
687 if (g_strcmp0(type, "ovirt") == 0) {
688 if (!create_ovirt_session(app, guri, error)) {
689 g_prefix_error(error, _("Couldn't open oVirt session: "));
690 return FALSE;
691 }
692 } else
693 #endif
694 {
695 if (!virt_viewer_app_create_session(app, type, error))
696 return FALSE;
697 }
693698
694699 g_signal_connect(virt_viewer_app_get_session(app), "session-connected",
695 G_CALLBACK(remote_viewer_session_connected), g_strdup(guri));
700 G_CALLBACK(remote_viewer_session_connected), (gpointer) g_intern_string(guri));
696701
697702 virt_viewer_session_set_file(virt_viewer_app_get_session(app), vvfile);
698703 #ifdef HAVE_OVIRT
785790 _("Cannot determine the connection type from URI"));
786791 goto cleanup;
787792 }
788 #ifdef HAVE_OVIRT
789 if (g_strcmp0(type, "ovirt") == 0) {
790 if (!create_ovirt_session(app, guri, &error)) {
791 g_prefix_error(&error, _("Couldn't open oVirt session: "));
792 goto cleanup;
793 }
794 } else
795 #endif
796 {
797 if (!remote_viewer_initial_connect(self, type, guri, vvfile, &error))
798 goto cleanup;
799 }
793 if (!remote_viewer_initial_connect(self, type, guri, vvfile, &error))
794 goto cleanup;
800795 }
801796
802797 ret = VIRT_VIEWER_APP_CLASS(remote_viewer_parent_class)->start(app, &error);
1515 <property name="copyright" translatable="yes">Copyright (C) 2007-2012 Daniel P. Berrange
1616 Copyright (C) 2007-2014 Red Hat, Inc.</property>
1717 <property name="comments" translatable="yes">A remote desktop client built with GTK-VNC, SPICE-GTK and libvirt</property>
18 <property name="website">http://virt-manager.org/</property>
19 <property name="website_label" translatable="yes">virt-manager.org</property>
18 <property name="website">http://gitlab.com/virt-viewer/virt-viewer/</property>
19 <property name="website_label" translatable="yes">gitlab.com/virt-viewer/virt-viewer</property>
2020 <property name="license" translatable="yes">This program is free software; you can redistribute it and/or modify
2121 it under the terms of the GNU General Public License as published by
2222 the Free Software Foundation; either version 2 of the License, or
6060 <property name="visible">True</property>
6161 <property name="can_focus">False</property>
6262 <property name="border_width">6</property>
63 <property name="n_rows">2</property>
63 <property name="n_rows">3</property>
6464 <property name="n_columns">2</property>
6565 <property name="column_spacing">12</property>
6666 <property name="row_spacing">6</property>
8888 <property name="right_attach">2</property>
8989 <property name="top_attach">1</property>
9090 <property name="bottom_attach">2</property>
91 </packing>
92 </child>
93 <child>
94 <object class="GtkCheckButton" id="cbshareclipboard">
95 <property name="label" translatable="yes">Share clipboard</property>
96 <property name="visible">True</property>
97 <property name="can_focus">True</property>
98 <property name="receives_default">False</property>
99 <property name="draw_indicator">True</property>
100 </object>
101 <packing>
102 <property name="right_attach">2</property>
103 <property name="top_attach">2</property>
104 <property name="bottom_attach">3</property>
91105 </packing>
92106 </child>
93107 <child>
3333 <property name="accel_group">accelgroup</property>
3434 <child>
3535 <object class="GtkMenuItem" id="menu-file-screenshot">
36 <property name="sensitive">False</property>
3637 <property name="visible">True</property>
3738 <property name="can_focus">False</property>
3839 <property name="use_action_appearance">False</property>
8283 </child>
8384 <child>
8485 <object class="GtkMenuItem" id="menu-preferences">
86 <property name="sensitive">False</property>
8587 <property name="visible">True</property>
8688 <property name="can_focus">False</property>
8789 <property name="label" translatable="yes">_Preferences</property>
104106 <property name="use_underline">True</property>
105107 <accelerator key="q" signal="activate" modifiers="GDK_SHIFT_MASK | GDK_CONTROL_MASK"/>
106108 <signal name="activate" handler="virt_viewer_window_menu_file_quit" swapped="no"/>
109 </object>
110 </child>
111 </object>
112 </child>
113 </object>
114 </child>
115 <child>
116 <object class="GtkMenuItem" id="menu-machine">
117 <property name="can_focus">False</property>
118 <property name="label" translatable="yes">_Machine</property>
119 <property name="use_underline">True</property>
120 <child type="submenu">
121 <object class="GtkMenu">
122 <property name="visible">True</property>
123 <property name="can_focus">False</property>
124 <child>
125 <object class="GtkCheckMenuItem" id="menu-vm-pause">
126 <property name="visible">True</property>
127 <property name="can_focus">False</property>
128 <property name="label" translatable="yes">_Pause</property>
129 <property name="use_underline">True</property>
130 <signal name="toggled" handler="virt_viewer_window_menu_machine_pause" swapped="no"/>
131 </object>
132 </child>
133 <child>
134 <object class="GtkSeparatorMenuItem">
135 <property name="visible">True</property>
136 <property name="can_focus">False</property>
137 </object>
138 </child>
139 <child>
140 <object class="GtkMenuItem" id="menu-vm-reset">
141 <property name="visible">True</property>
142 <property name="can_focus">False</property>
143 <property name="label" translatable="yes">_Reset</property>
144 <property name="use_underline">True</property>
145 <signal name="activate" handler="virt_viewer_window_menu_machine_reset" swapped="no"/>
146 </object>
147 </child>
148 <child>
149 <object class="GtkMenuItem" id="menu-vm-powerdown">
150 <property name="visible">True</property>
151 <property name="can_focus">False</property>
152 <property name="label" translatable="yes">_Power down</property>
153 <property name="use_underline">True</property>
154 <signal name="activate" handler="virt_viewer_window_menu_machine_powerdown" swapped="no"/>
107155 </object>
108156 </child>
109157 </object>
135183 </child>
136184 <child>
137185 <object class="GtkMenuItem" id="menu-view-zoom">
186 <property name="sensitive">False</property>
138187 <property name="visible">True</property>
139188 <property name="can_focus">False</property>
140189 <property name="use_action_appearance">False</property>
213262 </child>
214263 <child>
215264 <object class="GtkMenuItem" id="menu-send">
265 <property name="sensitive">False</property>
216266 <property name="visible">True</property>
217267 <property name="can_focus">False</property>
218268 <property name="use_action_appearance">False</property>
3636 #include <glib/gi18n.h>
3737 #include <errno.h>
3838
39 #ifndef G_OS_WIN32
40 #include <glib-unix.h>
41 #endif
42
3943 #ifdef HAVE_SYS_SOCKET_H
4044 #include <sys/socket.h>
4145 #endif
6064 #ifdef HAVE_SPICE_GTK
6165 #include "virt-viewer-session-spice.h"
6266 #endif
67
68 #include "virt-viewer-display-vte.h"
6369
6470 gboolean doDebug = FALSE;
6571
103109 static void virt_viewer_app_update_menu_displays(VirtViewerApp *self);
104110 static void virt_viewer_update_smartcard_accels(VirtViewerApp *self);
105111 static void virt_viewer_app_add_option_entries(VirtViewerApp *self, GOptionContext *context, GOptionGroup *group);
112 static VirtViewerWindow *virt_viewer_app_get_nth_window(VirtViewerApp *self, gint nth);
106113
107114
108115 struct _VirtViewerAppPrivate {
109116 VirtViewerWindow *main_window;
110117 GtkWidget *main_notebook;
111118 GList *windows;
112 GHashTable *displays;
119 GHashTable *displays; /* !vte */
113120 GHashTable *initial_display_map;
114121 gchar *clipboard;
115122 GtkWidget *preferences;
124131 gboolean attach;
125132 gboolean quitting;
126133 gboolean kiosk;
134 gboolean vm_ui;
135 gboolean vm_running;
127136
128137 VirtViewerSession *session;
129138 gboolean active;
144153 char *title;
145154 char *uuid;
146155
147 gint focused;
148156 GKeyFile *config;
149157 gchar *config_file;
150158
153161 guint remove_smartcard_accel_key;
154162 GdkModifierType remove_smartcard_accel_mods;
155163 gboolean quit_on_disconnect;
164 gboolean supports_share_clipboard;
156165 };
157166
158167
159 G_DEFINE_ABSTRACT_TYPE(VirtViewerApp, virt_viewer_app, GTK_TYPE_APPLICATION)
160 #define GET_PRIVATE(o) \
161 (G_TYPE_INSTANCE_GET_PRIVATE ((o), VIRT_VIEWER_TYPE_APP, VirtViewerAppPrivate))
168 G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE(VirtViewerApp, virt_viewer_app, GTK_TYPE_APPLICATION)
162169
163170 enum {
164171 PROP_0,
169176 PROP_FULLSCREEN,
170177 PROP_TITLE,
171178 PROP_ENABLE_ACCEL,
172 PROP_HAS_FOCUS,
173179 PROP_KIOSK,
174180 PROP_QUIT_ON_DISCONNECT,
175181 PROP_UUID,
182 PROP_VM_UI,
183 PROP_VM_RUNNING,
184 PROP_CONFIG_SHARE_CLIPBOARD,
185 PROP_SUPPORTS_SHARE_CLIPBOARD,
176186 };
177187
178188 void
257267 if (error) {
258268 g_debug("Unable to get comment from key file: %s", error->message);
259269 g_clear_error(&error);
260 } else {
261 if (!comment || *comment == '\0')
262 g_key_file_set_comment(priv->config, priv->uuid, NULL, priv->guest_name, NULL);
270 }
271
272 if (comment == NULL ||
273 (comment != NULL && g_strstr_len(comment, -1, priv->guest_name) == NULL)) {
274 /* Note that this function appends the guest's name string as last
275 * comment in case there were comments there already */
276 g_key_file_set_comment(priv->config, priv->uuid, NULL, priv->guest_name, NULL);
263277 }
264278 g_free(comment);
265279 }
280294 VirtViewerAppPrivate *priv = self->priv;
281295
282296 virt_viewer_app_save_config(self);
297
298 if (priv->vm_ui) {
299 virt_viewer_session_vm_action(VIRT_VIEWER_SESSION(priv->session),
300 VIRT_VIEWER_SESSION_VM_ACTION_QUIT);
301 }
283302
284303 if (priv->session) {
285304 virt_viewer_session_close(VIRT_VIEWER_SESSION(priv->session));
293312 }
294313
295314 static gint
296 get_n_client_monitors()
315 get_n_client_monitors(void)
297316 {
298317 return gdk_screen_get_n_monitors(gdk_screen_get_default());
299318 }
385404 return mapping;
386405 }
387406
407 /*
408 * save the association display/monitor in the config for reuse on next connection
409 */
410 static void virt_viewer_app_set_monitor_mapping_for_display(VirtViewerApp *self,
411 VirtViewerDisplay *display)
412 {
413 GError *error = NULL;
414 gsize nmappings = 0;
415 gchar **mappings = NULL;
416 gchar **tokens = NULL;
417
418 int i;
419
420 gint virt_viewer_display = virt_viewer_display_get_nth(display);
421 gint virt_viewer_monitor = virt_viewer_display_get_monitor(display);
422
423 if (virt_viewer_monitor == -1) {
424 // find which monitor the window is on
425 #if GTK_CHECK_VERSION(3, 22, 0)
426 G_GNUC_BEGIN_IGNORE_DEPRECATIONS
427 GdkDisplay *gdk_dpy = gdk_display_get_default();
428 VirtViewerWindow *vvWindow = virt_viewer_app_get_nth_window(self, virt_viewer_display);
429 GdkWindow *window = gtk_widget_get_window(
430 GTK_WIDGET(virt_viewer_window_get_window(vvWindow)));
431 GdkMonitor *pMonitor = gdk_display_get_monitor_at_window(gdk_dpy, window);
432
433 // compare this monitor with the list of monitors from the display
434 gint num_monitors = gdk_display_get_n_monitors(gdk_dpy);
435 if (num_monitors > 0) {
436 for (i = 0; i < num_monitors; i++) {
437 GdkMonitor *tmp = gdk_display_get_monitor(gdk_dpy, i);
438 if (tmp == pMonitor) {
439 virt_viewer_monitor = i;
440 break;
441 }
442 }
443 }
444 G_GNUC_END_IGNORE_DEPRECATIONS
445 #endif
446 if (virt_viewer_monitor == -1) {
447 // could not determine the monitor - abort
448 return;
449 }
450 }
451
452 // IDs are 0 based, but the config uses 1-based numbering
453 virt_viewer_display++;
454 virt_viewer_monitor++;
455
456 mappings = g_key_file_get_string_list(self->priv->config, self->priv->uuid,
457 "monitor-mapping", &nmappings, &error);
458 if (error) {
459 if (error->code != G_KEY_FILE_ERROR_GROUP_NOT_FOUND
460 && error->code != G_KEY_FILE_ERROR_KEY_NOT_FOUND)
461 g_warning("Error reading monitor assignments for %s: %s",
462 self->priv->uuid, error->message);
463 g_clear_error(&error);
464
465 // no mapping available for the VM: we will create a new one
466 }
467
468 for (i = 0; i < nmappings; i++) {
469 gchar *endptr = NULL;
470 gint disp, monitor;
471
472 tokens = g_strsplit(mappings[i], ":", 2);
473 if (g_strv_length(tokens) != 2) {
474 // config error
475 g_strfreev(tokens);
476 goto end;
477 }
478
479 disp = strtol(tokens[0], &endptr, 10);
480 if ((endptr && *endptr != '\0') || disp < 1) {
481 // config error
482 g_strfreev(tokens);
483 goto end;
484 }
485
486 if (disp == virt_viewer_display) {
487 // found the display we have to save. Verify if it changed mappings
488 monitor = strtol(tokens[1], &endptr, 10);
489 if ((endptr && *endptr != '\0') || monitor < 1) {
490 // config error
491 g_strfreev(tokens);
492 goto end;
493 }
494
495 g_strfreev(tokens);
496 if (monitor == virt_viewer_monitor) {
497 // no change in the config - just exit
498 goto end;
499 }
500
501 // save the modified mapping
502 g_snprintf(mappings[i], strlen(mappings[i]) + 1, "%d:%d",
503 virt_viewer_display, virt_viewer_monitor);
504 break;
505 }
506 g_strfreev(tokens);
507 }
508 if (i == nmappings) {
509 // this display was not saved yet - add it
510 nmappings++;
511 mappings = g_realloc(mappings, (nmappings + 1) * sizeof(gchar *));
512 mappings[nmappings - 1] = g_strdup_printf("%d:%d", virt_viewer_display, virt_viewer_monitor);
513 mappings[nmappings] = NULL;
514 }
515 g_key_file_set_string_list(self->priv->config, self->priv->uuid, "monitor-mapping",
516 (const gchar * const *) mappings, nmappings);
517 virt_viewer_app_save_config(self);
518
519 end:
520 g_strfreev(mappings);
521 }
522
388523 static
389524 void virt_viewer_app_apply_monitor_mapping(VirtViewerApp *self)
390525 {
499634 guint n = 0;
500635 g_list_foreach(self->priv->windows, count_window_visible, &n);
501636 return n;
502 }
503
504 gboolean
505 virt_viewer_app_window_set_visible(VirtViewerApp *self,
506 VirtViewerWindow *window,
507 gboolean visible)
508 {
509 g_return_val_if_fail(VIRT_VIEWER_IS_APP(self), FALSE);
510 g_return_val_if_fail(VIRT_VIEWER_IS_WINDOW(window), FALSE);
511
512 if (visible) {
513 virt_viewer_window_show(window);
514 return TRUE;
515 } else {
516 if (virt_viewer_app_get_n_windows_visible(self) > 1) {
517 virt_viewer_window_hide(window);
518 return FALSE;
519 }
520
521 virt_viewer_app_maybe_quit(self, window);
522 }
523
524 return FALSE;
525637 }
526638
527639 static void hide_one_window(gpointer value,
723835 const gchar *title = virt_viewer_app_get_title(app);
724836
725837 if (title != NULL) {
838 VirtViewerDisplay *display = virt_viewer_window_get_display(window);
726839 gchar *d = strstr(title, "%d");
840 gchar *desc = NULL;
841
842 if (display && VIRT_VIEWER_IS_DISPLAY_VTE(display)) {
843 g_object_get(display, "name", &desc, NULL);
844 } else {
845 desc = g_strdup_printf("%d", nth + 1);
846 }
847
727848 if (d != NULL) {
728849 *d = '\0';
729 subtitle = g_strdup_printf("%s%d%s", title, nth + 1, d + 2);
850 subtitle = g_strdup_printf("%s%s%s", title, desc, d + 2);
730851 *d = '%';
731852 } else
732 subtitle = g_strdup_printf("%s (%d)", title, nth + 1);
853 subtitle = g_strdup_printf("%s (%s)", title, desc);
854 g_free(desc);
733855 }
734856
735857 g_object_set(window, "subtitle", subtitle, NULL);
737859 }
738860
739861 static void
740 set_title(gpointer value,
741 gpointer user_data)
862 set_subtitle(gpointer value,
863 gpointer user_data)
742864 {
743865 VirtViewerApp *app = user_data;
744866 VirtViewerWindow *window = value;
754876 static void
755877 virt_viewer_app_set_all_window_subtitles(VirtViewerApp *app)
756878 {
757 g_list_foreach(app->priv->windows, set_title, app);
879 g_list_foreach(app->priv->windows, set_subtitle, app);
758880 }
759881
760882 static void update_title(gpointer value,
800922 virt_viewer_app_get_nth_window(VirtViewerApp *self, gint nth)
801923 {
802924 GList *l;
925
926 if (nth < 0)
927 return NULL;
928
803929 for (l = self->priv->windows; l; l = l->next) {
804930 VirtViewerDisplay *display = virt_viewer_window_get_display(l->data);
805931 if (display
818944 }
819945
820946 static gboolean
821 viewer_window_focus_in_cb(GtkWindow *window G_GNUC_UNUSED,
822 GdkEvent *event G_GNUC_UNUSED,
823 VirtViewerApp *self)
824 {
825 self->priv->focused += 1;
826
827 if (self->priv->focused == 1)
828 g_object_notify(G_OBJECT(self), "has-focus");
829
830 return FALSE;
831 }
832
833 static gboolean
834 viewer_window_focus_out_cb(GtkWindow *window G_GNUC_UNUSED,
835 GdkEvent *event G_GNUC_UNUSED,
836 VirtViewerApp *self)
837 {
838 self->priv->focused -= 1;
839 g_warn_if_fail(self->priv->focused >= 0);
840
841 if (self->priv->focused <= 0)
842 g_object_notify(G_OBJECT(self), "has-focus");
843
844 return FALSE;
845 }
846
847 static gboolean
848947 virt_viewer_app_has_usbredir(VirtViewerApp *self)
849948 {
850949 return virt_viewer_app_has_session(self) &&
880979
881980 g_signal_connect(w, "hide", G_CALLBACK(viewer_window_visible_cb), self);
882981 g_signal_connect(w, "show", G_CALLBACK(viewer_window_visible_cb), self);
883 g_signal_connect(w, "focus-in-event", G_CALLBACK(viewer_window_focus_in_cb), self);
884 g_signal_connect(w, "focus-out-event", G_CALLBACK(viewer_window_focus_out_cb), self);
885982 return window;
983 }
984
985 static void
986 window_weak_notify(gpointer data, GObject *where_was G_GNUC_UNUSED)
987 {
988 VirtViewerDisplay *display = VIRT_VIEWER_DISPLAY(data);
989
990 g_object_set_data(G_OBJECT(display), "virt-viewer-window", NULL);
886991 }
887992
888993 static VirtViewerWindow *
890995 {
891996 gint nth = virt_viewer_display_get_nth(display);
892997 VirtViewerWindow *win = virt_viewer_app_get_nth_window(self, nth);
998
999 if (VIRT_VIEWER_IS_DISPLAY_VTE(display)) {
1000 win = g_object_get_data(G_OBJECT(display), "virt-viewer-window");
1001 }
1002
8931003 if (win == NULL) {
8941004 GList *l = self->priv->windows;
8951005
9111021 }
9121022
9131023 virt_viewer_window_set_display(win, display);
1024 if (VIRT_VIEWER_IS_DISPLAY_VTE(display)) {
1025 g_object_set_data(G_OBJECT(display), "virt-viewer-window", win);
1026 g_object_weak_ref(G_OBJECT(win), window_weak_notify, display);
1027 }
9141028 }
9151029 virt_viewer_app_set_window_subtitle(self, win, nth);
9161030
1031 return win;
1032 }
1033
1034 static VirtViewerWindow *
1035 display_show_notebook_get_window(VirtViewerApp *self, VirtViewerDisplay *display)
1036 {
1037 VirtViewerWindow *win = ensure_window_for_display(self, display);
1038 VirtViewerNotebook *nb = virt_viewer_window_get_notebook(win);
1039
1040 virt_viewer_notebook_show_display(nb);
9171041 return win;
9181042 }
9191043
9441068 virt_viewer_window_hide(win);
9451069 } else {
9461070 if (hint & VIRT_VIEWER_DISPLAY_SHOW_HINT_READY) {
947 win = ensure_window_for_display(self, display);
948 nb = virt_viewer_window_get_notebook(win);
949 virt_viewer_notebook_show_display(nb);
1071 win = display_show_notebook_get_window(self, display);
9501072 virt_viewer_window_show(win);
9511073 } else {
9521074 if (!self->priv->kiosk && win) {
9661088 gint nth;
9671089
9681090 g_object_get(display, "nth-display", &nth, NULL);
969
9701091 g_debug("Insert display %d %p", nth, display);
1092
1093 if (VIRT_VIEWER_IS_DISPLAY_VTE(display)) {
1094 VirtViewerWindow *win = display_show_notebook_get_window(self, display);
1095 virt_viewer_window_hide(win);
1096 virt_viewer_app_update_menu_displays(self);
1097 return;
1098 }
1099
9711100 g_hash_table_insert(self->priv->displays, GINT_TO_POINTER(nth), g_object_ref(display));
9721101
9731102 g_signal_connect(display, "notify::show-hint",
9741103 G_CALLBACK(display_show_hint), NULL);
9751104 g_object_notify(G_OBJECT(display), "show-hint"); /* call display_show_hint */
9761105 }
977
9781106
9791107 static void virt_viewer_app_remove_nth_window(VirtViewerApp *self,
9801108 gint nth)
10011129 VirtViewerApp *self)
10021130 {
10031131 gint nth;
1132
1133 if(virt_viewer_display_get_fullscreen(display))
1134 virt_viewer_app_set_monitor_mapping_for_display(self, display) ;
10041135
10051136 g_object_get(display, "nth-display", &nth, NULL);
10061137 virt_viewer_app_remove_nth_window(self, nth);
11641295 return;
11651296 }
11661297
1167 virt_viewer_session_channel_open_fd(session, channel, fd);
1298 if (!virt_viewer_session_channel_open_fd(session, channel, fd)) {
1299 // in case of error, close the file descriptor to prevent a leak
1300 // NOTE: as VNC doesn't support channel_open, this function will always return false for this protocol.
1301 close(fd);
1302 }
11681303 }
11691304 #else
11701305 static void
12231358 #endif
12241359
12251360 if (fd >= 0) {
1226 return virt_viewer_session_open_fd(VIRT_VIEWER_SESSION(priv->session), fd);
1361 gboolean ret = virt_viewer_session_open_fd(VIRT_VIEWER_SESSION(priv->session), fd);
1362 if (!ret)
1363 close (fd);
1364 return ret ;
12271365 } else if (priv->guri) {
12281366 virt_viewer_app_trace(self, "Opening connection to display at %s", priv->guri);
12291367 return virt_viewer_session_open_uri(VIRT_VIEWER_SESSION(priv->session), priv->guri, error);
15631701 g_value_set_boolean(value, virt_viewer_app_get_enable_accel(self));
15641702 break;
15651703
1566 case PROP_HAS_FOCUS:
1567 g_value_set_boolean(value, priv->focused > 0);
1568 break;
1569
15701704 case PROP_KIOSK:
15711705 g_value_set_boolean(value, priv->kiosk);
15721706 break;
15771711
15781712 case PROP_UUID:
15791713 g_value_set_string(value, priv->uuid);
1714 break;
1715
1716 case PROP_VM_UI:
1717 g_value_set_boolean(value, priv->vm_ui);
1718 break;
1719
1720 case PROP_VM_RUNNING:
1721 g_value_set_boolean(value, priv->vm_running);
1722 break;
1723
1724 case PROP_CONFIG_SHARE_CLIPBOARD:
1725 g_value_set_boolean(value, virt_viewer_app_get_config_share_clipboard(self));
1726 break;
1727
1728 case PROP_SUPPORTS_SHARE_CLIPBOARD:
1729 g_value_set_boolean(value, virt_viewer_app_get_supports_share_clipboard(self));
15801730 break;
15811731
15821732 default:
16311781
16321782 case PROP_UUID:
16331783 virt_viewer_app_set_uuid_string(self, g_value_get_string(value));
1784 break;
1785
1786 case PROP_VM_UI:
1787 priv->vm_ui = g_value_get_boolean(value);
1788 break;
1789
1790 case PROP_VM_RUNNING:
1791 priv->vm_running = g_value_get_boolean(value);
1792 break;
1793
1794 case PROP_CONFIG_SHARE_CLIPBOARD:
1795 virt_viewer_app_set_config_share_clipboard(self, g_value_get_boolean(value));
1796 break;
1797
1798 case PROP_SUPPORTS_SHARE_CLIPBOARD:
1799 virt_viewer_app_set_supports_share_clipboard(self, g_value_get_boolean(value));
16341800 break;
16351801
16361802 default:
17201886 static gboolean opt_kiosk = FALSE;
17211887 static gboolean opt_kiosk_quit = FALSE;
17221888
1889 #ifndef G_OS_WIN32
1890 static gboolean
1891 sigint_cb(gpointer data)
1892 {
1893 VirtViewerApp *self = VIRT_VIEWER_APP(data);
1894 VirtViewerAppPrivate *priv = self->priv;
1895
1896 g_debug("got SIGINT, quitting\n");
1897 if (priv->started)
1898 virt_viewer_app_quit(self);
1899 else
1900 exit(EXIT_SUCCESS);
1901
1902 return G_SOURCE_CONTINUE;
1903 }
1904 #endif
1905
17231906 static void
17241907 title_maybe_changed(VirtViewerApp *self, GParamSpec* pspec G_GNUC_UNUSED, gpointer user_data G_GNUC_UNUSED)
17251908 {
17301913 virt_viewer_app_init(VirtViewerApp *self)
17311914 {
17321915 GError *error = NULL;
1733 self->priv = GET_PRIVATE(self);
1916 self->priv = virt_viewer_app_get_instance_private(self);
17341917
17351918 gtk_window_set_default_icon_name("virt-viewer");
1919
1920 #ifndef G_OS_WIN32
1921 g_unix_signal_add (SIGINT, sigint_cb, self);
1922 #endif
17361923
17371924 self->priv->displays = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, g_object_unref);
17381925 self->priv->config = g_key_file_new();
17891976 sw_smartcard = FALSE;
17901977 }
17911978 if (sw_smartcard) {
1979 gboolean r;
17921980 g_debug("enabling smartcard shortcuts");
1793 gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-insert",
1794 priv->insert_smartcard_accel_key,
1795 priv->insert_smartcard_accel_mods,
1796 TRUE);
1797 gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-remove",
1798 priv->remove_smartcard_accel_key,
1799 priv->remove_smartcard_accel_mods,
1800 TRUE);
1981 r = gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-insert",
1982 priv->insert_smartcard_accel_key,
1983 priv->insert_smartcard_accel_mods,
1984 TRUE);
1985 if (!r)
1986 g_warning("Unable to set hotkey for 'smartcard-insert' due to a conflict in GTK");
1987 r = gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-remove",
1988 priv->remove_smartcard_accel_key,
1989 priv->remove_smartcard_accel_mods,
1990 TRUE);
1991 if (!r)
1992 g_warning("Unable to set hotkey for 'smartcard-remove' due to a conflict in GTK");
18011993 } else {
18021994 g_debug("disabling smartcard shortcuts");
18031995 gtk_accel_map_change_entry("<virt-viewer>/file/smartcard-insert", 0, 0, TRUE);
18452037 gtk_accel_map_add_entry("<virt-viewer>/view/zoom-in", GDK_KEY_plus, GDK_CONTROL_MASK);
18462038 gtk_accel_map_add_entry("<virt-viewer>/send/secure-attention", GDK_KEY_End, GDK_CONTROL_MASK | GDK_MOD1_MASK);
18472039
2040 // Restore initial state of config-share-clipboard property from config and notify about it
2041 virt_viewer_app_set_config_share_clipboard(self, virt_viewer_app_get_config_share_clipboard(self));
2042
18482043 if (!virt_viewer_app_start(self, &error)) {
18492044 if (error && !g_error_matches(error, VIRT_VIEWER_ERROR, VIRT_VIEWER_ERROR_CANCELLED))
18502045 virt_viewer_app_simple_message_dialog(self, error->message);
18622057 {
18632058 VirtViewerApp *self = VIRT_VIEWER_APP(gapp);
18642059 gboolean ret = FALSE;
1865 gint argc = g_strv_length(*args);
18662060 GError *error = NULL;
18672061 GOptionContext *context = g_option_context_new(NULL);
18682062 GOptionGroup *group = g_option_group_new("virt-viewer", NULL, NULL, gapp, NULL);
18812075 g_option_context_add_group(context, spice_get_option_group());
18822076 #endif
18832077
1884 if (!g_option_context_parse(context, &argc, args, &error)) {
2078 if (!g_option_context_parse_strv(context, args, &error)) {
18852079 if (error != NULL) {
18862080 g_printerr(_("%s\n"), error->message);
18872081 g_error_free(error);
19112105 {
19122106 GObjectClass *object_class = G_OBJECT_CLASS (klass);
19132107 GApplicationClass *g_app_class = G_APPLICATION_CLASS(klass);
1914
1915 g_type_class_add_private (klass, sizeof (VirtViewerAppPrivate));
19162108
19172109 object_class->get_property = virt_viewer_app_get_property;
19182110 object_class->set_property = virt_viewer_app_set_property;
19972189 G_PARAM_STATIC_STRINGS));
19982190
19992191 g_object_class_install_property(object_class,
2000 PROP_HAS_FOCUS,
2001 g_param_spec_boolean("has-focus",
2002 "Has Focus",
2003 "Application has focus",
2004 FALSE,
2005 G_PARAM_READABLE |
2006 G_PARAM_STATIC_STRINGS));
2007
2008 g_object_class_install_property(object_class,
20092192 PROP_KIOSK,
20102193 g_param_spec_boolean("kiosk",
20112194 "Kiosk",
20332216 G_PARAM_READABLE |
20342217 G_PARAM_WRITABLE |
20352218 G_PARAM_STATIC_STRINGS));
2219
2220 g_object_class_install_property(object_class,
2221 PROP_VM_UI,
2222 g_param_spec_boolean("vm-ui",
2223 "VM UI",
2224 "QEMU UI & behaviour",
2225 FALSE,
2226 G_PARAM_READWRITE |
2227 G_PARAM_STATIC_STRINGS));
2228
2229 g_object_class_install_property(object_class,
2230 PROP_VM_RUNNING,
2231 g_param_spec_boolean("vm-running",
2232 "VM running",
2233 "VM running",
2234 FALSE,
2235 G_PARAM_READWRITE |
2236 G_PARAM_STATIC_STRINGS));
2237
2238 g_object_class_install_property(object_class,
2239 PROP_CONFIG_SHARE_CLIPBOARD,
2240 g_param_spec_boolean("config-share-clipboard",
2241 "Share clipboard",
2242 "Indicates whether to share clipboard",
2243 TRUE, /* backwards-compatible default value */
2244 G_PARAM_READWRITE |
2245 G_PARAM_STATIC_STRINGS));
2246
2247 g_object_class_install_property(object_class,
2248 PROP_SUPPORTS_SHARE_CLIPBOARD,
2249 g_param_spec_boolean("supports-share-clipboard",
2250 "Support for share clipboard",
2251 "Indicates whether to support for clipboard sharing is available",
2252 FALSE,
2253 G_PARAM_READWRITE |
2254 G_PARAM_STATIC_STRINGS));
20362255 }
20372256
20382257 void
21082327 continue;
21092328 }
21102329
2330 gboolean status = TRUE;
21112331 if (g_str_equal(*hotkey, "toggle-fullscreen")) {
2112 gtk_accel_map_change_entry("<virt-viewer>/view/toggle-fullscreen", accel_key, accel_mods, TRUE);
2332 status = gtk_accel_map_change_entry("<virt-viewer>/view/toggle-fullscreen", accel_key, accel_mods, TRUE);
21132333 } else if (g_str_equal(*hotkey, "release-cursor")) {
2114 gtk_accel_map_change_entry("<virt-viewer>/view/release-cursor", accel_key, accel_mods, TRUE);
2334 status = gtk_accel_map_change_entry("<virt-viewer>/view/release-cursor", accel_key, accel_mods, TRUE);
21152335 } else if (g_str_equal(*hotkey, "secure-attention")) {
2116 gtk_accel_map_change_entry("<virt-viewer>/send/secure-attention", accel_key, accel_mods, TRUE);
2336 status = gtk_accel_map_change_entry("<virt-viewer>/send/secure-attention", accel_key, accel_mods, TRUE);
21172337 } else if (g_str_equal(*hotkey, "smartcard-insert")) {
21182338 virt_viewer_set_insert_smartcard_accel(self, accel_key, accel_mods);
21192339 } else if (g_str_equal(*hotkey, "smartcard-remove")) {
21212341 } else {
21222342 g_warning("Unknown hotkey command %s", *hotkey);
21232343 }
2344 if (!status)
2345 g_warning("Unable to set hotkey for '%s' due to a conflict in GTK", *hotkey);
21242346 }
21252347 g_strfreev(hotkeys);
21262348
22312453 {
22322454 VirtViewerApp *self = virt_viewer_session_get_app(virt_viewer_display_get_session(display));
22332455 gboolean visible = gtk_check_menu_item_get_active(checkmenuitem);
2234 static gboolean reentering = FALSE;
22352456 VirtViewerWindow *vwin;
22362457
2237 if (reentering) /* do not reenter if I switch you back */
2238 return;
2239
2240 reentering = TRUE;
2241
22422458 vwin = ensure_window_for_display(self, display);
2243 visible = virt_viewer_app_window_set_visible(self, vwin, visible);
2244
2245 gtk_check_menu_item_set_active(checkmenuitem, /* will be toggled again */ !visible);
2246 reentering = FALSE;
2459
2460 if (visible) {
2461 virt_viewer_window_show(vwin);
2462 } else {
2463 if (virt_viewer_app_get_n_windows_visible(self) > 1) {
2464 virt_viewer_window_hide(vwin);
2465 } else {
2466 virt_viewer_app_maybe_quit(self, vwin);
2467 /* the last item remains active, doesn't matter if we quit */
2468 gtk_check_menu_item_set_active(checkmenuitem, TRUE);
2469 }
2470 }
22472471
22482472 virt_viewer_session_update_displays_geometry(virt_viewer_display_get_session(display));
22492473 }
23402564 G_CALLBACK(menu_display_visible_toggled_cb), display, 0);
23412565 gtk_menu_shell_append(submenu, item);
23422566 tmp = tmp->next;
2567 }
2568
2569 for (tmp = self->priv->windows; tmp; tmp = tmp->next) {
2570 VirtViewerWindow *win = VIRT_VIEWER_WINDOW(tmp->data);
2571 VirtViewerDisplay *display = virt_viewer_window_get_display(win);
2572
2573 if (VIRT_VIEWER_IS_DISPLAY_VTE(display)) {
2574 gchar *name = NULL;
2575 GtkWidget *item;
2576
2577 g_object_get(display, "name", &name, NULL);
2578 item = gtk_check_menu_item_new_with_label(name);
2579 g_free(name);
2580
2581 virt_viewer_signal_connect_object(G_OBJECT(item), "toggled",
2582 G_CALLBACK(menu_display_visible_toggled_cb), display, 0);
2583 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item),
2584 gtk_widget_get_visible(GTK_WIDGET(virt_viewer_window_get_window(win))));
2585 gtk_menu_shell_append(submenu, item);
2586 }
23432587 }
23442588
23452589 gtk_widget_show_all(GTK_WIDGET(submenu));
25062750 preferences = GTK_WIDGET(gtk_builder_get_object(builder, "preferences"));
25072751 self->priv->preferences = preferences;
25082752
2753 g_object_bind_property(self,
2754 "config-share-clipboard",
2755 gtk_builder_get_object(builder, "cbshareclipboard"),
2756 "active",
2757 G_BINDING_BIDIRECTIONAL|G_BINDING_SYNC_CREATE);
2758
2759 g_object_set (gtk_builder_get_object(builder, "cbshareclipboard"),
2760 "sensitive", virt_viewer_app_get_supports_share_clipboard(self), NULL);
25092761 g_object_set (gtk_builder_get_object(builder, "cbsharefolder"),
25102762 "sensitive", can_share_folder, NULL);
25112763 g_object_set (gtk_builder_get_object(builder, "cbsharefolderro"),
26102862 return self->priv->cancelled;
26112863 }
26122864
2865 gboolean virt_viewer_app_get_config_share_clipboard(VirtViewerApp *self)
2866 {
2867 VirtViewerAppPrivate *priv = self->priv;
2868
2869 GError *error = NULL;
2870 gboolean share_clipboard;
2871
2872 share_clipboard = g_key_file_get_boolean(priv->config,
2873 "virt-viewer", "share-clipboard", &error);
2874
2875 if (error) {
2876 share_clipboard = TRUE; /* backwards-compatible default value */
2877 g_clear_error(&error);
2878 }
2879
2880 return share_clipboard;
2881 }
2882
2883 void virt_viewer_app_set_config_share_clipboard(VirtViewerApp *self, gboolean enable)
2884 {
2885 VirtViewerAppPrivate *priv = self->priv;
2886
2887 g_key_file_set_boolean(priv->config,
2888 "virt-viewer", "share-clipboard", enable);
2889 g_object_notify(G_OBJECT(self), "config-share-clipboard");
2890 }
2891
2892 gboolean virt_viewer_app_get_supports_share_clipboard(VirtViewerApp *self)
2893 {
2894 g_return_val_if_fail(VIRT_VIEWER_IS_APP(self), FALSE);
2895
2896 return self->priv->supports_share_clipboard;
2897 }
2898
2899 void virt_viewer_app_set_supports_share_clipboard(VirtViewerApp *self, gboolean enable)
2900 {
2901 g_return_if_fail(VIRT_VIEWER_IS_APP(self));
2902
2903 if (self->priv->supports_share_clipboard == enable)
2904 return;
2905
2906 self->priv->supports_share_clipboard = enable;
2907 g_object_notify(G_OBJECT(self), "supports-share-clipboard");
2908 }
2909
26132910 /*
26142911 * Local variables:
26152912 * c-indent-level: 4
8383 const gchar *user,
8484 gint port,
8585 const gchar *guri);
86 gboolean virt_viewer_app_window_set_visible(VirtViewerApp *self, VirtViewerWindow *window, gboolean visible);
86
8787 void virt_viewer_app_show_status(VirtViewerApp *self, const gchar *fmt, ...);
8888 void virt_viewer_app_show_display(VirtViewerApp *self);
8989 GList* virt_viewer_app_get_windows(VirtViewerApp *self);
9898 void virt_viewer_app_set_menus_sensitive(VirtViewerApp *self, gboolean sensitive);
9999 gboolean virt_viewer_app_get_session_cancelled(VirtViewerApp *self);
100100
101 gboolean virt_viewer_app_get_config_share_clipboard(VirtViewerApp *self);
102 void virt_viewer_app_set_config_share_clipboard(VirtViewerApp *self, gboolean enable);
103
104 gboolean virt_viewer_app_get_supports_share_clipboard(VirtViewerApp *self);
105 void virt_viewer_app_set_supports_share_clipboard(VirtViewerApp *self, gboolean enable);
106
101107 G_END_DECLS
102108
103109 #endif /* VIRT_VIEWER_APP_H */
3131 #include "virt-viewer-util.h"
3232 #include "virt-viewer-display-spice.h"
3333 #include "virt-viewer-auth.h"
34
35 G_DEFINE_TYPE (VirtViewerDisplaySpice, virt_viewer_display_spice, VIRT_VIEWER_TYPE_DISPLAY)
3634
3735 typedef enum {
3836 AUTO_RESIZE_ALWAYS,
4846 guint y;
4947 };
5048
51 #define VIRT_VIEWER_DISPLAY_SPICE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_DISPLAY_SPICE, VirtViewerDisplaySpicePrivate))
49 G_DEFINE_TYPE_WITH_PRIVATE (VirtViewerDisplaySpice, virt_viewer_display_spice, VIRT_VIEWER_TYPE_DISPLAY)
5250
5351 static void virt_viewer_display_spice_send_keys(VirtViewerDisplay *display,
5452 const guint *keyvals,
5553 int nkeyvals);
5654 static GdkPixbuf *virt_viewer_display_spice_get_pixbuf(VirtViewerDisplay *display);
5755 static void virt_viewer_display_spice_release_cursor(VirtViewerDisplay *display);
58 static void virt_viewer_display_spice_close(VirtViewerDisplay *display G_GNUC_UNUSED);
5956 static gboolean virt_viewer_display_spice_selectable(VirtViewerDisplay *display);
6057 static void virt_viewer_display_spice_enable(VirtViewerDisplay *display);
6158 static void virt_viewer_display_spice_disable(VirtViewerDisplay *display);
6865 dclass->send_keys = virt_viewer_display_spice_send_keys;
6966 dclass->get_pixbuf = virt_viewer_display_spice_get_pixbuf;
7067 dclass->release_cursor = virt_viewer_display_spice_release_cursor;
71 dclass->close = virt_viewer_display_spice_close;
7268 dclass->selectable = virt_viewer_display_spice_selectable;
7369 dclass->enable = virt_viewer_display_spice_enable;
7470 dclass->disable = virt_viewer_display_spice_disable;
75
76 g_type_class_add_private(klass, sizeof(VirtViewerDisplaySpicePrivate));
7771 }
7872
7973 static SpiceMainChannel*
127121 static void
128122 virt_viewer_display_spice_init(VirtViewerDisplaySpice *self G_GNUC_UNUSED)
129123 {
130 self->priv = VIRT_VIEWER_DISPLAY_SPICE_GET_PRIVATE(self);
124 self->priv = virt_viewer_display_spice_get_instance_private(self);
131125 self->priv->auto_resize = AUTO_RESIZE_ALWAYS;
132126
133127 g_signal_connect(self, "notify::show-hint", G_CALLBACK(show_hint_changed), NULL);
347341 spice_display_mouse_ungrab(self->priv->display);
348342 }
349343
350
351 static void
352 virt_viewer_display_spice_close(VirtViewerDisplay *display G_GNUC_UNUSED)
353 {
354 }
355
356344 static gboolean
357345 virt_viewer_display_spice_selectable(VirtViewerDisplay *self)
358346 {
2929
3030 #include <glib/gi18n.h>
3131
32 G_DEFINE_TYPE(VirtViewerDisplayVnc, virt_viewer_display_vnc, VIRT_VIEWER_TYPE_DISPLAY)
33
3432 struct _VirtViewerDisplayVncPrivate {
3533 VncDisplay *vnc;
3634 };
3735
38 #define VIRT_VIEWER_DISPLAY_VNC_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_DISPLAY_VNC, VirtViewerDisplayVncPrivate))
36 G_DEFINE_TYPE_WITH_PRIVATE(VirtViewerDisplayVnc, virt_viewer_display_vnc, VIRT_VIEWER_TYPE_DISPLAY)
3937
4038 static void virt_viewer_display_vnc_send_keys(VirtViewerDisplay* display, const guint *keyvals, int nkeyvals);
4139 static GdkPixbuf *virt_viewer_display_vnc_get_pixbuf(VirtViewerDisplay* display);
7270 dclass->get_pixbuf = virt_viewer_display_vnc_get_pixbuf;
7371 dclass->close = virt_viewer_display_vnc_close;
7472 dclass->release_cursor = virt_viewer_display_vnc_release_cursor;
75
76 g_type_class_add_private(klass, sizeof(VirtViewerDisplayVncPrivate));
7773 }
7874
7975 static void
8076 virt_viewer_display_vnc_init(VirtViewerDisplayVnc *self G_GNUC_UNUSED)
8177 {
82 self->priv = VIRT_VIEWER_DISPLAY_VNC_GET_PRIVATE(self);
78 self->priv = virt_viewer_display_vnc_get_instance_private(self);
8379 }
8480
8581
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (C) 2018 Red Hat, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * Author: Marc-André Lureau <marcandre.lureau@redhat.com>
20 */
21
22 #include <config.h>
23 #include <glib/gi18n.h>
24
25 #ifdef HAVE_VTE
26 #include <vte/vte.h>
27 #endif
28
29 #include "virt-viewer-auth.h"
30 #include "virt-viewer-display-vte.h"
31 #include "virt-viewer-util.h"
32
33 struct _VirtViewerDisplayVtePrivate {
34 #ifdef HAVE_VTE
35 VteTerminal *vte;
36 #endif
37 GtkWidget *scroll;
38 gchar *name;
39 };
40
41 G_DEFINE_TYPE_WITH_PRIVATE(VirtViewerDisplayVte, virt_viewer_display_vte, VIRT_VIEWER_TYPE_DISPLAY)
42
43 enum {
44 PROP_0,
45
46 PROP_NAME,
47 };
48
49 static void
50 virt_viewer_display_vte_finalize(GObject *obj)
51 {
52 G_OBJECT_CLASS(virt_viewer_display_vte_parent_class)->finalize(obj);
53 }
54
55 static void
56 virt_viewer_display_vte_set_property(GObject *object,
57 guint prop_id,
58 const GValue *value,
59 GParamSpec *pspec)
60 {
61 VirtViewerDisplayVte *self = VIRT_VIEWER_DISPLAY_VTE(object);
62
63 switch (prop_id) {
64 case PROP_NAME:
65 g_free(self->priv->name);
66 self->priv->name = g_value_dup_string(value);
67 break;
68 default:
69 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
70 break;
71 }
72 }
73
74 static void
75 virt_viewer_display_vte_get_property(GObject *object,
76 guint prop_id,
77 GValue *value,
78 GParamSpec *pspec)
79 {
80 VirtViewerDisplayVte *self = VIRT_VIEWER_DISPLAY_VTE(object);
81
82 switch (prop_id) {
83 case PROP_NAME:
84 g_value_set_string(value, self->priv->name);
85 break;
86 default:
87 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
88 break;
89 }
90 }
91
92 static void
93 virt_viewer_display_vte_size_allocate(GtkWidget *widget G_GNUC_UNUSED,
94 GtkAllocation *allocation G_GNUC_UNUSED)
95 {
96 GtkWidget *child = gtk_bin_get_child(GTK_BIN(widget));
97
98 if (child && gtk_widget_get_visible(child))
99 gtk_widget_size_allocate(child, allocation);
100 }
101
102 static void
103 virt_viewer_display_vte_class_init(VirtViewerDisplayVteClass *klass)
104 {
105 GObjectClass *oclass = G_OBJECT_CLASS(klass);
106 GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
107
108 oclass->set_property = virt_viewer_display_vte_set_property;
109 oclass->get_property = virt_viewer_display_vte_get_property;
110 oclass->finalize = virt_viewer_display_vte_finalize;
111 /* override display desktop aspect-ratio behaviour */
112 widget_class->size_allocate = virt_viewer_display_vte_size_allocate;
113
114 g_object_class_install_property(oclass,
115 PROP_NAME,
116 g_param_spec_string("name",
117 "Name",
118 "Console name",
119 NULL,
120 G_PARAM_READWRITE|
121 G_PARAM_CONSTRUCT_ONLY|
122 G_PARAM_STATIC_STRINGS));
123 g_signal_new("commit",
124 G_OBJECT_CLASS_TYPE(oclass),
125 G_SIGNAL_RUN_FIRST,
126 0,
127 NULL, NULL,
128 NULL,
129 G_TYPE_NONE,
130 2,
131 G_TYPE_POINTER, G_TYPE_INT);
132 }
133
134 static void
135 virt_viewer_display_vte_init(VirtViewerDisplayVte *self G_GNUC_UNUSED)
136 {
137 self->priv = virt_viewer_display_vte_get_instance_private(self);
138 }
139
140 #ifdef HAVE_VTE
141 static void
142 virt_viewer_display_vte_commit(VirtViewerDisplayVte *self,
143 const gchar *text,
144 guint size,
145 gpointer user_data G_GNUC_UNUSED)
146 {
147 g_signal_emit_by_name(self, "commit", text, size);
148 }
149 #endif
150
151 static void
152 virt_viewer_display_vte_adj_changed(VirtViewerDisplayVte *self,
153 GtkAdjustment *adjustment)
154 {
155 gtk_widget_set_visible(self->priv->scroll,
156 gtk_adjustment_get_upper(adjustment) > gtk_adjustment_get_page_size(adjustment));
157 }
158
159 GtkWidget *
160 virt_viewer_display_vte_new(VirtViewerSession *session, const char *name)
161 {
162 VirtViewerDisplayVte *self;
163 GtkWidget *grid, *scroll = NULL, *vte;
164
165 self = g_object_new(VIRT_VIEWER_TYPE_DISPLAY_VTE,
166 "session", session,
167 "nth-display", -1,
168 "name", name,
169 NULL);
170 #ifdef HAVE_VTE
171 vte = vte_terminal_new();
172 self->priv->vte = VTE_TERMINAL(g_object_ref(vte));
173 virt_viewer_signal_connect_object(vte, "commit",
174 G_CALLBACK(virt_viewer_display_vte_commit),
175 self, G_CONNECT_SWAPPED);
176 scroll = gtk_scrollbar_new(GTK_ORIENTATION_VERTICAL,
177 gtk_scrollable_get_vadjustment(GTK_SCROLLABLE(vte)));
178 self->priv->scroll = scroll;
179 #else
180 vte = gtk_label_new(_("Console support is compiled out!"));
181 #endif
182 g_object_set(vte, "hexpand", TRUE, "vexpand", TRUE, NULL);
183
184 grid = gtk_grid_new();
185
186 gtk_container_add(GTK_CONTAINER(grid), vte);
187 if (scroll) {
188 gtk_container_add(GTK_CONTAINER(grid), scroll);
189 gtk_widget_hide(scroll);
190 virt_viewer_signal_connect_object(gtk_range_get_adjustment(GTK_RANGE(scroll)),
191 "changed", G_CALLBACK(virt_viewer_display_vte_adj_changed),
192 self, G_CONNECT_SWAPPED);
193 }
194
195 gtk_container_add(GTK_CONTAINER(self), grid);
196
197 return GTK_WIDGET(self);
198 }
199
200 /* adapted from gnome-terminal */
201 /* Allow scales a bit smaller and a bit larger than the usual pango ranges */
202 #define TERMINAL_SCALE_XXX_SMALL (PANGO_SCALE_XX_SMALL/1.2)
203 #define TERMINAL_SCALE_XXXX_SMALL (TERMINAL_SCALE_XXX_SMALL/1.2)
204 #define TERMINAL_SCALE_XXXXX_SMALL (TERMINAL_SCALE_XXXX_SMALL/1.2)
205 #define TERMINAL_SCALE_XXX_LARGE (PANGO_SCALE_XX_LARGE*1.2)
206 #define TERMINAL_SCALE_XXXX_LARGE (TERMINAL_SCALE_XXX_LARGE*1.2)
207 #define TERMINAL_SCALE_XXXXX_LARGE (TERMINAL_SCALE_XXXX_LARGE*1.2)
208 #define TERMINAL_SCALE_MINIMUM (TERMINAL_SCALE_XXXXX_SMALL/1.2)
209 #define TERMINAL_SCALE_MAXIMUM (TERMINAL_SCALE_XXXXX_LARGE*1.2)
210
211 #ifdef HAVE_VTE
212 static const double zoom_factors[] = {
213 TERMINAL_SCALE_MINIMUM,
214 TERMINAL_SCALE_XXXXX_SMALL,
215 TERMINAL_SCALE_XXXX_SMALL,
216 TERMINAL_SCALE_XXX_SMALL,
217 PANGO_SCALE_XX_SMALL,
218 PANGO_SCALE_X_SMALL,
219 PANGO_SCALE_SMALL,
220 PANGO_SCALE_MEDIUM,
221 PANGO_SCALE_LARGE,
222 PANGO_SCALE_X_LARGE,
223 PANGO_SCALE_XX_LARGE,
224 TERMINAL_SCALE_XXX_LARGE,
225 TERMINAL_SCALE_XXXX_LARGE,
226 TERMINAL_SCALE_XXXXX_LARGE,
227 TERMINAL_SCALE_MAXIMUM
228 };
229
230 static gboolean
231 find_larger_zoom_factor (double *zoom)
232 {
233 double current = *zoom;
234 guint i;
235
236 for (i = 0; i < G_N_ELEMENTS (zoom_factors); ++i)
237 {
238 /* Find a font that's larger than this one */
239 if ((zoom_factors[i] - current) > 1e-6)
240 {
241 *zoom = zoom_factors[i];
242 return TRUE;
243 }
244 }
245
246 return FALSE;
247 }
248
249 static gboolean
250 find_smaller_zoom_factor (double *zoom)
251 {
252 double current = *zoom;
253 int i;
254
255 i = (int) G_N_ELEMENTS (zoom_factors) - 1;
256 while (i >= 0)
257 {
258 /* Find a font that's smaller than this one */
259 if ((current - zoom_factors[i]) > 1e-6)
260 {
261 *zoom = zoom_factors[i];
262 return TRUE;
263 }
264
265 --i;
266 }
267
268 return FALSE;
269 }
270
271 void virt_viewer_display_vte_feed(VirtViewerDisplayVte *display, gpointer data, int size)
272 {
273 vte_terminal_feed(display->priv->vte, data, size);
274 }
275
276 void virt_viewer_display_vte_zoom_in(VirtViewerDisplayVte *self)
277 {
278 double zoom = vte_terminal_get_font_scale(self->priv->vte);
279
280 if (!find_larger_zoom_factor(&zoom))
281 return;
282
283 vte_terminal_set_font_scale(self->priv->vte, zoom);
284 }
285
286 void virt_viewer_display_vte_zoom_out(VirtViewerDisplayVte *self)
287 {
288 double zoom = vte_terminal_get_font_scale(self->priv->vte);
289
290 if (!find_smaller_zoom_factor(&zoom))
291 return;
292
293 vte_terminal_set_font_scale(self->priv->vte, zoom);
294 }
295
296 void virt_viewer_display_vte_zoom_reset(VirtViewerDisplayVte *self)
297 {
298 vte_terminal_set_font_scale(self->priv->vte, PANGO_SCALE_MEDIUM);
299 }
300 #else
301 void virt_viewer_display_vte_feed(VirtViewerDisplayVte *self G_GNUC_UNUSED,
302 gpointer data G_GNUC_UNUSED, int size G_GNUC_UNUSED)
303 {
304 }
305 void virt_viewer_display_vte_zoom_in(VirtViewerDisplayVte *self G_GNUC_UNUSED)
306 {
307 }
308 void virt_viewer_display_vte_zoom_out(VirtViewerDisplayVte *self G_GNUC_UNUSED)
309 {
310 }
311 void virt_viewer_display_vte_zoom_reset(VirtViewerDisplayVte *self G_GNUC_UNUSED)
312 {
313 }
314 #endif
0 /*
1 * Virt Viewer: A virtual machine console viewer
2 *
3 * Copyright (C) 2018 Red Hat, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * Author: Marc-André Lureau <marcandre.lureau@redhat.com>
20 */
21 #ifndef _VIRT_VIEWER_DISPLAY_VTE_H
22 #define _VIRT_VIEWER_DISPLAY_VTE_H
23
24 #include <glib-object.h>
25
26 #include "virt-viewer-display.h"
27
28 G_BEGIN_DECLS
29
30 #define VIRT_VIEWER_TYPE_DISPLAY_VTE virt_viewer_display_vte_get_type()
31
32 #define VIRT_VIEWER_DISPLAY_VTE(obj) \
33 (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIRT_VIEWER_TYPE_DISPLAY_VTE, VirtViewerDisplayVte))
34
35 #define VIRT_VIEWER_DISPLAY_VTE_CLASS(klass) \
36 (G_TYPE_CHECK_CLASS_CAST ((klass), VIRT_VIEWER_TYPE_DISPLAY_VTE, VirtViewerDisplayVteClass))
37
38 #define VIRT_VIEWER_IS_DISPLAY_VTE(obj) \
39 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIRT_VIEWER_TYPE_DISPLAY_VTE))
40
41 #define VIRT_VIEWER_IS_DISPLAY_VTE_CLASS(klass) \
42 (G_TYPE_CHECK_CLASS_TYPE ((klass), VIRT_VIEWER_TYPE_DISPLAY_VTE))
43
44 #define VIRT_VIEWER_DISPLAY_VTE_GET_CLASS(obj) \
45 (G_TYPE_INSTANCE_GET_CLASS ((obj), VIRT_VIEWER_TYPE_DISPLAY_VTE, VirtViewerDisplayVteClass))
46
47 typedef struct _VirtViewerDisplayVte VirtViewerDisplayVte;
48 typedef struct _VirtViewerDisplayVteClass VirtViewerDisplayVteClass;
49 typedef struct _VirtViewerDisplayVtePrivate VirtViewerDisplayVtePrivate;
50
51 struct _VirtViewerDisplayVte {
52 VirtViewerDisplay parent;
53
54 VirtViewerDisplayVtePrivate *priv;
55 };
56
57 struct _VirtViewerDisplayVteClass {
58 VirtViewerDisplayClass parent_class;
59 };
60
61 GType virt_viewer_display_vte_get_type(void);
62
63 GtkWidget* virt_viewer_display_vte_new(VirtViewerSession *session, const char *name);
64
65 void virt_viewer_display_vte_feed(VirtViewerDisplayVte *vte, gpointer data, int size);
66
67 void virt_viewer_display_vte_zoom_reset(VirtViewerDisplayVte *vte);
68 void virt_viewer_display_vte_zoom_in(VirtViewerDisplayVte *vte);
69 void virt_viewer_display_vte_zoom_out(VirtViewerDisplayVte *vte);
70
71 G_END_DECLS
72
73 #endif /* _VIRT_VIEWER_DISPLAY_VTE_H */
74 /*
75 * Local variables:
76 * c-indent-level: 4
77 * c-basic-offset: 4
78 * indent-tabs-mode: nil
79 * End:
80 */
3030 #include "virt-viewer-display.h"
3131 #include "virt-viewer-util.h"
3232
33 #define VIRT_VIEWER_DISPLAY_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_DISPLAY, VirtViewerDisplayPrivate))
34
3533 struct _VirtViewerDisplayPrivate
3634 {
3735 guint desktopWidth;
6260 GParamSpec *pspec);
6361 static void virt_viewer_display_grab_focus(GtkWidget *widget);
6462
65 G_DEFINE_ABSTRACT_TYPE(VirtViewerDisplay, virt_viewer_display, GTK_TYPE_BIN)
63 G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE(VirtViewerDisplay, virt_viewer_display, GTK_TYPE_BIN)
6664
6765 enum {
6866 PROP_0,
128126 g_param_spec_int("nth-display",
129127 "Nth display",
130128 "Nth display",
131 0,
129 -1,
132130 G_MAXINT32,
133131 0,
134132 G_PARAM_READWRITE |
182180 g_signal_new("display-pointer-grab",
183181 G_OBJECT_CLASS_TYPE(object_class),
184182 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
185 G_STRUCT_OFFSET(VirtViewerDisplayClass, display_pointer_grab),
183 0,
186184 NULL,
187185 NULL,
188186 g_cclosure_marshal_VOID__VOID,
192190 g_signal_new("display-pointer-ungrab",
193191 G_OBJECT_CLASS_TYPE(object_class),
194192 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
195 G_STRUCT_OFFSET(VirtViewerDisplayClass, display_pointer_ungrab),
193 0,
196194 NULL,
197195 NULL,
198196 g_cclosure_marshal_VOID__VOID,
202200 g_signal_new("display-keyboard-grab",
203201 G_OBJECT_CLASS_TYPE(object_class),
204202 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
205 G_STRUCT_OFFSET(VirtViewerDisplayClass, display_keyboard_grab),
203 0,
206204 NULL,
207205 NULL,
208206 g_cclosure_marshal_VOID__VOID,
212210 g_signal_new("display-keyboard-ungrab",
213211 G_OBJECT_CLASS_TYPE(object_class),
214212 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
215 G_STRUCT_OFFSET(VirtViewerDisplayClass, display_keyboard_ungrab),
213 0,
216214 NULL,
217215 NULL,
218216 g_cclosure_marshal_VOID__VOID,
222220 g_signal_new("display-desktop-resize",
223221 G_OBJECT_CLASS_TYPE(object_class),
224222 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
225 G_STRUCT_OFFSET(VirtViewerDisplayClass, display_desktop_resize),
223 0,
226224 NULL,
227225 NULL,
228226 g_cclosure_marshal_VOID__VOID,
238236 g_cclosure_marshal_VOID__VOID,
239237 G_TYPE_NONE,
240238 0);
241
242 g_type_class_add_private(class, sizeof(VirtViewerDisplayPrivate));
243239 }
244240
245241 static void
248244 gtk_widget_set_has_window(GTK_WIDGET(display), FALSE);
249245 gtk_widget_set_redraw_on_allocate(GTK_WIDGET(display), FALSE);
250246
251 display->priv = VIRT_VIEWER_DISPLAY_GET_PRIVATE(display);
247 display->priv = virt_viewer_display_get_instance_private(display);
252248
253249 display->priv->desktopWidth = MIN_DISPLAY_WIDTH;
254250 display->priv->desktopHeight = MIN_DISPLAY_HEIGHT;
656652 g_return_if_fail(VIRT_VIEWER_IS_DISPLAY(self));
657653
658654 klass = VIRT_VIEWER_DISPLAY_GET_CLASS(self);
659 g_return_if_fail(klass->close != NULL);
660
661 klass->close(self);
655 if (klass->close)
656 klass->close(self);
662657 }
663658
664659 void virt_viewer_display_set_fullscreen(VirtViewerDisplay *self, gboolean fullscreen)
687682
688683 g_return_if_fail(preferred != NULL);
689684
690 if (!virt_viewer_display_get_enabled(self)) {
685 top = gtk_widget_get_toplevel(GTK_WIDGET(self));
686 if (!virt_viewer_display_get_enabled(self) ||
687 !GTK_IS_WINDOW(top)) {
691688 preferred->width = 0;
692689 preferred->height = 0;
693690 preferred->x = 0;
695692 return;
696693 }
697694
698 top = gtk_widget_get_toplevel(GTK_WIDGET(self));
699695 gtk_window_get_position(GTK_WINDOW(top), &topx, &topy);
700696 topx = MAX(topx, 0);
701697 topy = MAX(topy, 0);
8181
8282 void (*close)(VirtViewerDisplay *display);
8383 gboolean (*selectable)(VirtViewerDisplay *display);
84
85 /* signals */
86 void (*display_pointer_grab)(VirtViewerDisplay *display);
87 void (*display_pointer_ungrab)(VirtViewerDisplay *display);
88 void (*display_keyboard_grab)(VirtViewerDisplay *display);
89 void (*display_keyboard_ungrab)(VirtViewerDisplay *display);
90
91 void (*display_desktop_resize)(VirtViewerDisplay *display);
9284 void (*enable)(VirtViewerDisplay *display);
9385 void (*disable)(VirtViewerDisplay *display);
9486 };
87
88 #define VIRT_VIEWER_DISPLAY_CAN_SCREENSHOT(display) \
89 (display && (VIRT_VIEWER_DISPLAY_GET_CLASS(display)->get_pixbuf != NULL))
90
91 #define VIRT_VIEWER_DISPLAY_CAN_SEND_KEYS(display) \
92 (display && (VIRT_VIEWER_DISPLAY_GET_CLASS(display)->send_keys != NULL))
9593
9694 GType virt_viewer_display_get_type(void);
9795
3838
3939 G_DEFINE_TYPE_WITH_PRIVATE(VirtViewerFileTransferDialog, virt_viewer_file_transfer_dialog, GTK_TYPE_DIALOG)
4040
41 #define FILE_TRANSFER_DIALOG_PRIVATE(o) \
42 (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_FILE_TRANSFER_DIALOG, VirtViewerFileTransferDialogPrivate))
43
44
4541 static void
4642 virt_viewer_file_transfer_dialog_dispose(GObject *object)
4743 {
114110 {
115111 gtk_widget_init_template(GTK_WIDGET(self));
116112
117 self->priv = FILE_TRANSFER_DIALOG_PRIVATE(self);
113 self->priv = virt_viewer_file_transfer_dialog_get_instance_private(self);
118114
119115 g_signal_connect(self, "response", G_CALLBACK(dialog_response), NULL);
120116 g_signal_connect(self, "delete-event", G_CALLBACK(delete_event), NULL);
152148 if (self->priv->num_files == 1) {
153149 message = g_strdup(_("Transferring 1 file..."));
154150 } else {
155 message = g_strdup_printf(ngettext("Transferring %d file of %d...",
156 "Transferring %d files of %d...", n_files),
151 message = g_strdup_printf(ngettext("Transferring %u file of %u...",
152 "Transferring %u files of %u...", n_files),
157153 n_files, self->priv->num_files);
158154 }
159155 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(self->priv->progressbar), fraction);
203199 if (self->priv->failed) {
204200 GSList *sl;
205201 GString *msg = g_string_new("");
206 GtkWidget *dialog;
202 GtkWidget *dialog, *files_label, *scrolled_window, *area;
203 GtkRequisition files_label_sz;
207204
208205 for (sl = self->priv->failed; sl != NULL; sl = g_slist_next(sl)) {
209206 SpiceFileTransferTask *failed_task = sl->data;
224221
225222 dialog = gtk_message_dialog_new(GTK_WINDOW(self), 0, GTK_MESSAGE_ERROR,
226223 GTK_BUTTONS_OK,
227 _("An error caused the following file transfers to fail:%s"),
228 msg->str);
224 _("An error caused the following file transfers to fail:"));
225 gtk_window_set_title(GTK_WINDOW(dialog), "Transfer error");
226
227 scrolled_window = gtk_scrolled_window_new(NULL, NULL);
228 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window),
229 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
230
231 area = gtk_message_dialog_get_message_area(GTK_MESSAGE_DIALOG(dialog));
232 gtk_container_add(GTK_CONTAINER(area), scrolled_window);
233
234 files_label = gtk_label_new(msg->str + 1); /* skip the initial '\n' */
235 gtk_label_set_selectable(GTK_LABEL(files_label), TRUE);
236 gtk_container_add(GTK_CONTAINER(scrolled_window), files_label);
237
229238 g_string_free(msg, TRUE);
230239 g_signal_connect(dialog, "response", G_CALLBACK(error_dialog_response), NULL);
231 gtk_widget_show(dialog);
240 gtk_widget_show_all(dialog);
241
242 /* adjust panel to file_label height */
243 gtk_widget_get_preferred_size(files_label, NULL, &files_label_sz);
244 gtk_scrolled_window_set_min_content_height(GTK_SCROLLED_WINDOW(scrolled_window),
245 MIN(files_label_sz.height, 170));
232246 }
233247
234248 return G_SOURCE_REMOVE;
4242 * - newer-version-url: string specifying an URL to display when the minimum
4343 * version check fails
4444 * - type: string, mandatory, values: "spice" (later "vnc" etc..)
45 * - unix-path: string
4546 * - host: string
4647 * - port: int
4748 * - tls-port: int
9394 GKeyFile* keyfile;
9495 };
9596
96 G_DEFINE_TYPE(VirtViewerFile, virt_viewer_file, G_TYPE_OBJECT);
97
98 #define VIRT_VIEWER_FILE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_FILE, VirtViewerFilePrivate))
97 G_DEFINE_TYPE_WITH_PRIVATE(VirtViewerFile, virt_viewer_file, G_TYPE_OBJECT);
9998
10099 #define MAIN_GROUP "virt-viewer"
101100 #define OVIRT_GROUP "ovirt"
103102 enum {
104103 PROP_DUMMY_PROPERTY,
105104 PROP_TYPE,
105 PROP_UNIX_PATH,
106106 PROP_HOST,
107107 PROP_PORT,
108108 PROP_TLS_PORT,
326326 }
327327
328328 gchar*
329 virt_viewer_file_get_unix_path(VirtViewerFile* self)
330 {
331 return virt_viewer_file_get_string(self, MAIN_GROUP, "unix-path");
332 }
333
334 void
335 virt_viewer_file_set_unix_path(VirtViewerFile* self, const gchar* value)
336 {
337 virt_viewer_file_set_string(self, MAIN_GROUP, "unix-path", value);
338 g_object_notify(G_OBJECT(self), "unix-path");
339 }
340
341 gchar*
329342 virt_viewer_file_get_file_type(VirtViewerFile* self)
330343 {
331344 return virt_viewer_file_get_string(self, MAIN_GROUP, "type");
938951 case PROP_TYPE:
939952 virt_viewer_file_set_type(self, g_value_get_string(value));
940953 break;
954 case PROP_UNIX_PATH:
955 virt_viewer_file_set_unix_path(self, g_value_get_string(value));
956 break;
941957 case PROP_HOST:
942958 virt_viewer_file_set_host(self, g_value_get_string(value));
943959 break;
10531069 case PROP_TYPE:
10541070 g_value_take_string(value, virt_viewer_file_get_file_type(self));
10551071 break;
1072 case PROP_UNIX_PATH:
1073 g_value_take_string(value, virt_viewer_file_get_unix_path(self));
1074 break;
10561075 case PROP_HOST:
10571076 g_value_take_string(value, virt_viewer_file_get_host(self));
10581077 break;
11691188 static void
11701189 virt_viewer_file_init(VirtViewerFile* self)
11711190 {
1172 self->priv = VIRT_VIEWER_FILE_GET_PRIVATE(self);
1191 self->priv = virt_viewer_file_get_instance_private(self);
11731192
11741193 self->priv->keyfile = g_key_file_new();
11751194 }
11781197 virt_viewer_file_class_init(VirtViewerFileClass* klass)
11791198 {
11801199 virt_viewer_file_parent_class = g_type_class_peek_parent(klass);
1181 g_type_class_add_private(klass, sizeof(VirtViewerFilePrivate));
11821200
11831201 G_OBJECT_CLASS(klass)->get_property = virt_viewer_file_get_property;
11841202 G_OBJECT_CLASS(klass)->set_property = virt_viewer_file_set_property;
5353 GError** error);
5454 gboolean virt_viewer_file_is_set(VirtViewerFile* self, const gchar* key);
5555
56 gchar* virt_viewer_file_get_unix_path(VirtViewerFile* self);
57 void virt_viewer_file_set_unix_path(VirtViewerFile* self, const gchar* value);
5658 gchar* virt_viewer_file_get_ca(VirtViewerFile* self);
5759 void virt_viewer_file_set_ca(VirtViewerFile* self, const gchar* value);
5860 gchar* virt_viewer_file_get_host(VirtViewerFile* self);
2626 #include "virt-viewer-notebook.h"
2727 #include "virt-viewer-util.h"
2828
29 G_DEFINE_TYPE (VirtViewerNotebook, virt_viewer_notebook, GTK_TYPE_NOTEBOOK)
30
31 #define GET_PRIVATE(o) \
32 (G_TYPE_INSTANCE_GET_PRIVATE ((o), VIRT_VIEWER_TYPE_NOTEBOOK, VirtViewerNotebookPrivate))
33
3429 struct _VirtViewerNotebookPrivate {
3530 GtkWidget *status;
3631 };
32
33 G_DEFINE_TYPE_WITH_PRIVATE (VirtViewerNotebook, virt_viewer_notebook, GTK_TYPE_NOTEBOOK)
3734
3835 static void
3936 virt_viewer_notebook_get_property (GObject *object, guint property_id,
6057 {
6158 GObjectClass *object_class = G_OBJECT_CLASS (klass);
6259
63 g_type_class_add_private (klass, sizeof (VirtViewerNotebookPrivate));
64
6560 object_class->get_property = virt_viewer_notebook_get_property;
6661 object_class->set_property = virt_viewer_notebook_set_property;
6762 }
7166 {
7267 VirtViewerNotebookPrivate *priv;
7368
74 self->priv = GET_PRIVATE(self);
69 self->priv = virt_viewer_notebook_get_instance_private(self);
7570 priv = self->priv;
7671
7772 priv->status = gtk_label_new("");
55 # define SECTION
66 #endif
77
8 static const SECTION union { const guint8 data[89144]; const double alignment; void * const ptr;} virt_viewer_resource_data = { {
9 0x47, 0x56, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x74,
10 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
11 0x18, 0x00, 0x00, 0x00, 0x30, 0x03, 0x00, 0x00,
12 0x00, 0x00, 0x00, 0x28, 0x1c, 0x00, 0x00, 0x00,
13 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
14 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
15 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
16 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
17 0x06, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
18 0x08, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
19 0x0c, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
20 0x10, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
21 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
22 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00,
23 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
24 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
25 0x19, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
26 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
27 0xfd, 0x25, 0x30, 0x6a, 0x08, 0x00, 0x00, 0x00,
28 0x30, 0x03, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
29 0x40, 0x03, 0x00, 0x00, 0x11, 0x4a, 0x00, 0x00,
30 0x2d, 0x7f, 0x1e, 0x74, 0x1a, 0x00, 0x00, 0x00,
31 0x11, 0x4a, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
32 0x20, 0x4a, 0x00, 0x00, 0x6c, 0x50, 0x00, 0x00,
33 0x16, 0x22, 0x3d, 0xaa, 0x17, 0x00, 0x00, 0x00,
34 0x6c, 0x50, 0x00, 0x00, 0x13, 0x00, 0x76, 0x00,
35 0x80, 0x50, 0x00, 0x00, 0x95, 0x6c, 0x00, 0x00,
36 0x07, 0xd6, 0x7a, 0xe9, 0x12, 0x00, 0x00, 0x00,
37 0x95, 0x6c, 0x00, 0x00, 0x0d, 0x00, 0x4c, 0x00,
38 0xa4, 0x6c, 0x00, 0x00, 0xa8, 0x6c, 0x00, 0x00,
39 0x8b, 0x62, 0xfb, 0x34, 0x0c, 0x00, 0x00, 0x00,
40 0xa8, 0x6c, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
41 0xb8, 0x6c, 0x00, 0x00, 0x8e, 0x70, 0x00, 0x00,
42 0x4f, 0x83, 0xfd, 0xf2, 0x0e, 0x00, 0x00, 0x00,
43 0x8e, 0x70, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
44 0xa0, 0x70, 0x00, 0x00, 0x4d, 0x75, 0x00, 0x00,
45 0x15, 0xe9, 0x13, 0x36, 0x17, 0x00, 0x00, 0x00,
46 0x4d, 0x75, 0x00, 0x00, 0x18, 0x00, 0x76, 0x00,
47 0x68, 0x75, 0x00, 0x00, 0x83, 0x90, 0x00, 0x00,
48 0x71, 0x87, 0xdc, 0x71, 0x1b, 0x00, 0x00, 0x00,
49 0x83, 0x90, 0x00, 0x00, 0x0f, 0x00, 0x76, 0x00,
50 0x98, 0x90, 0x00, 0x00, 0x3e, 0x93, 0x00, 0x00,
51 0x66, 0x9e, 0xc2, 0x8d, 0x0f, 0x00, 0x00, 0x00,
52 0x3e, 0x93, 0x00, 0x00, 0x08, 0x00, 0x4c, 0x00,
53 0x48, 0x93, 0x00, 0x00, 0x4c, 0x93, 0x00, 0x00,
54 0x76, 0x74, 0xd6, 0xa2, 0x17, 0x00, 0x00, 0x00,
55 0x4c, 0x93, 0x00, 0x00, 0x1a, 0x00, 0x76, 0x00,
56 0x68, 0x93, 0x00, 0x00, 0x76, 0xab, 0x00, 0x00,
57 0x17, 0x53, 0x0e, 0x8b, 0x17, 0x00, 0x00, 0x00,
58 0x76, 0xab, 0x00, 0x00, 0x0e, 0x00, 0x76, 0x00,
59 0x88, 0xab, 0x00, 0x00, 0x9d, 0xee, 0x00, 0x00,
60 0x7f, 0x72, 0x6e, 0x6f, 0x17, 0x00, 0x00, 0x00,
61 0x9d, 0xee, 0x00, 0x00, 0x1c, 0x00, 0x76, 0x00,
62 0xc0, 0xee, 0x00, 0x00, 0xe4, 0x03, 0x01, 0x00,
63 0xb4, 0x90, 0xee, 0x05, 0x0f, 0x00, 0x00, 0x00,
64 0xe4, 0x03, 0x01, 0x00, 0x06, 0x00, 0x4c, 0x00,
65 0xec, 0x03, 0x01, 0x00, 0xf0, 0x03, 0x01, 0x00,
66 0x44, 0x7e, 0x05, 0x0b, 0x0f, 0x00, 0x00, 0x00,
67 0xf0, 0x03, 0x01, 0x00, 0x06, 0x00, 0x4c, 0x00,
68 0xf8, 0x03, 0x01, 0x00, 0xfc, 0x03, 0x01, 0x00,
69 0xf8, 0xc1, 0x12, 0x06, 0x0f, 0x00, 0x00, 0x00,
70 0xfc, 0x03, 0x01, 0x00, 0x06, 0x00, 0x4c, 0x00,
71 0x04, 0x04, 0x01, 0x00, 0x0c, 0x04, 0x01, 0x00,
72 0x85, 0x5f, 0xf4, 0x8b, 0x14, 0x00, 0x00, 0x00,
73 0x0c, 0x04, 0x01, 0x00, 0x06, 0x00, 0x4c, 0x00,
74 0x14, 0x04, 0x01, 0x00, 0x2c, 0x04, 0x01, 0x00,
75 0x5f, 0x8c, 0xb5, 0x30, 0x17, 0x00, 0x00, 0x00,
76 0x2c, 0x04, 0x01, 0x00, 0x14, 0x00, 0x76, 0x00,
77 0x40, 0x04, 0x01, 0x00, 0xcf, 0x10, 0x01, 0x00,
78 0x1b, 0xfe, 0x47, 0xed, 0x0d, 0x00, 0x00, 0x00,
79 0xcf, 0x10, 0x01, 0x00, 0x0f, 0x00, 0x76, 0x00,
80 0xe0, 0x10, 0x01, 0x00, 0xde, 0x1a, 0x01, 0x00,
81 0x4b, 0x50, 0x90, 0x0b, 0x13, 0x00, 0x00, 0x00,
82 0xde, 0x1a, 0x01, 0x00, 0x04, 0x00, 0x4c, 0x00,
83 0xe4, 0x1a, 0x01, 0x00, 0xe8, 0x1a, 0x01, 0x00,
84 0xd4, 0xb5, 0x02, 0x00, 0xff, 0xff, 0xff, 0xff,
85 0xe8, 0x1a, 0x01, 0x00, 0x01, 0x00, 0x4c, 0x00,
86 0xec, 0x1a, 0x01, 0x00, 0xf0, 0x1a, 0x01, 0x00,
87 0x1a, 0x0f, 0x8f, 0x65, 0x03, 0x00, 0x00, 0x00,
88 0xf0, 0x1a, 0x01, 0x00, 0x0c, 0x00, 0x4c, 0x00,
89 0xfc, 0x1a, 0x01, 0x00, 0x04, 0x1b, 0x01, 0x00,
90 0x9f, 0xae, 0x96, 0xc9, 0x17, 0x00, 0x00, 0x00,
91 0x04, 0x1b, 0x01, 0x00, 0x19, 0x00, 0x76, 0x00,
92 0x20, 0x1b, 0x01, 0x00, 0xa6, 0x34, 0x01, 0x00,
93 0x93, 0xff, 0xee, 0x3f, 0x17, 0x00, 0x00, 0x00,
94 0xa6, 0x34, 0x01, 0x00, 0x23, 0x00, 0x76, 0x00,
95 0xd0, 0x34, 0x01, 0x00, 0x55, 0x43, 0x01, 0x00,
96 0x47, 0xf0, 0x78, 0xb7, 0x14, 0x00, 0x00, 0x00,
97 0x55, 0x43, 0x01, 0x00, 0x03, 0x00, 0x4c, 0x00,
98 0x58, 0x43, 0x01, 0x00, 0x7c, 0x43, 0x01, 0x00,
99 0x44, 0xd2, 0xec, 0x36, 0x17, 0x00, 0x00, 0x00,
100 0x7c, 0x43, 0x01, 0x00, 0x1c, 0x00, 0x76, 0x00,
101 0x98, 0x43, 0x01, 0x00, 0xd5, 0x57, 0x01, 0x00,
102 0xc6, 0x62, 0xa8, 0x11, 0x0e, 0x00, 0x00, 0x00,
103 0xd5, 0x57, 0x01, 0x00, 0x13, 0x00, 0x76, 0x00,
104 0xe8, 0x57, 0x01, 0x00, 0x1f, 0x5c, 0x01, 0x00,
105 0x96, 0xbd, 0x43, 0x08, 0x0f, 0x00, 0x00, 0x00,
106 0x1f, 0x5c, 0x01, 0x00, 0x06, 0x00, 0x4c, 0x00,
107 0x28, 0x5c, 0x01, 0x00, 0x2c, 0x5c, 0x01, 0x00,
108 0x5a, 0xc6, 0xe1, 0x03, 0x0f, 0x00, 0x00, 0x00,
109 0x2c, 0x5c, 0x01, 0x00, 0x06, 0x00, 0x4c, 0x00,
110 0x34, 0x5c, 0x01, 0x00, 0x38, 0x5c, 0x01, 0x00,
111 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65,
112 0x77, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00,
113 0xc1, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
114 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
115 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
116 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
117 0x08, 0x06, 0x00, 0x00, 0x00, 0x5c, 0x72, 0xa8,
118 0x66, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47,
119 0x42, 0x00, 0xae, 0xce, 0x1c, 0xe9, 0x00, 0x00,
120 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff,
121 0x00, 0xff, 0x00, 0xff, 0xa0, 0xbd, 0xa7, 0x93,
122 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73,
123 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d, 0xd7,
124 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00, 0x00,
125 0x07, 0x74, 0x49, 0x4d, 0x45, 0x07, 0xdc, 0x02,
126 0x08, 0x0f, 0x27, 0x1b, 0x4d, 0xa0, 0x31, 0xcf,
127 0x00, 0x00, 0x20, 0x00, 0x49, 0x44, 0x41, 0x54,
128 0x78, 0xda, 0xed, 0xbd, 0x69, 0xb0, 0x24, 0xd7,
129 0x75, 0x1e, 0xf8, 0xdd, 0xdc, 0xab, 0xea, 0xbd,
130 0x7a, 0x4b, 0x77, 0x03, 0xfd, 0x5e, 0x2f, 0x68,
131 0xa0, 0xd1, 0x40, 0xa3, 0xd1, 0x8d, 0x85, 0x10,
132 0x88, 0x85, 0x0b, 0x44, 0x6a, 0x2c, 0x6b, 0x6c,
133 0x4b, 0xf3, 0x63, 0x0c, 0x4b, 0xf2, 0x58, 0x8b,
134 0x2d, 0x53, 0x31, 0x21, 0x86, 0xa8, 0xc0, 0x48,
135 0xb6, 0x27, 0xac, 0x09, 0xbb, 0xc3, 0xe1, 0x18,
136 0x69, 0xe8, 0xa1, 0x40, 0x49, 0xb6, 0x35, 0xa3,
137 0x18, 0x8b, 0x54, 0x38, 0x62, 0xc6, 0x36, 0x6d,
138 0x2b, 0x1c, 0x21, 0x2e, 0x61, 0x8f, 0x2d, 0x48,
139 0xa4, 0x08, 0x4a, 0x34, 0x49, 0x00, 0x0d, 0x34,
140 0xb1, 0x34, 0x76, 0xf4, 0xfa, 0xb6, 0xda, 0xb7,
141 0xcc, 0xbc, 0xd7, 0x3f, 0xb2, 0xb2, 0x2a, 0x97,
142 0x9b, 0x7b, 0x56, 0xbd, 0xaa, 0x7a, 0x79, 0x22,
143 0x2a, 0x5e, 0xbd, 0xaa, 0xcc, 0xac, 0x5c, 0xee,
144 0xf7, 0xdd, 0x73, 0xce, 0x3d, 0x0b, 0x50, 0x48,
145 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
146 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
147 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52,
148 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85,
149 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
150 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
151 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
152 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52,
153 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85,
154 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
155 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
156 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
157 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x4c, 0x55,
158 0xc8, 0x2c, 0x9e, 0xd4, 0xc5, 0x8b, 0x17, 0x95,
159 0x95, 0x95, 0x95, 0x73, 0x94, 0xd2, 0x35, 0x42,
160 0xc8, 0xaa, 0x20, 0x08, 0x52, 0xf1, 0xa8, 0xa2,
161 0xc5, 0x34, 0xcd, 0x89, 0x6e, 0x3f, 0xeb, 0xfb,
162 0xcc, 0xfa, 0xf9, 0x19, 0x86, 0x61, 0x88, 0xa2,
163 0xb8, 0x03, 0x60, 0xa7, 0x54, 0x2a, 0xbd, 0x76,
164 0xf1, 0xe2, 0x45, 0xa3, 0x20, 0x80, 0xa1, 0x3c,
165 0xfb, 0xec, 0xb3, 0xab, 0x84, 0x90, 0x4f, 0x31,
166 0xc6, 0x7e, 0x0c, 0xc0, 0x23, 0x00, 0x4a, 0x05,
167 0xa4, 0xe3, 0x09, 0x63, 0x2c, 0xf4, 0x7f, 0xef,
168 0x67, 0x51, 0xdf, 0xc7, 0x3d, 0x6e, 0x9a, 0x7d,
169 0xf2, 0x3a, 0xee, 0x02, 0x5c, 0x53, 0x8d, 0x31,
170 0xf6, 0x9f, 0x18, 0x63, 0xff, 0x72, 0x69, 0x69,
171 0xe9, 0xcb, 0x17, 0x2f, 0x5e, 0xa4, 0x07, 0x92,
172 0x00, 0x2e, 0x5e, 0xbc, 0x28, 0xad, 0xac, 0xac,
173 0xfc, 0x03, 0x00, 0xcf, 0x00, 0x58, 0x2a, 0xe0,
174 0x9c, 0x1e, 0xfc, 0x05, 0x20, 0xe7, 0xf6, 0x9a,
175 0xbe, 0x4f, 0x08, 0xf9, 0xf4, 0x67, 0x3f, 0xfb,
176 0xd9, 0x3f, 0x9a, 0xf6, 0xf8, 0x11, 0xf7, 0x73,
177 0xf0, 0xfe, 0xfa, 0xaf, 0xff, 0xfa, 0x4a, 0xa5,
178 0x52, 0xf9, 0x1a, 0x80, 0x9f, 0x06, 0xa0, 0x14,
179 0x70, 0x3e, 0x38, 0xb3, 0x7e, 0x1e, 0xe7, 0xb7,
180 0x40, 0xd7, 0x74, 0x84, 0x31, 0xf6, 0x53, 0x4f,
181 0x3e, 0xf9, 0xa4, 0xf4, 0xcd, 0x6f, 0x7e, 0xf3,
182 0x8f, 0x0e, 0x04, 0x01, 0xfc, 0xd6, 0x6f, 0xfd,
183 0x96, 0x2a, 0x08, 0xc2, 0x97, 0x01, 0x3c, 0x55,
184 0xc0, 0x39, 0x5f, 0xf0, 0xcf, 0x3b, 0x20, 0x0f,
185 0xe8, 0x35, 0x11, 0xc6, 0xd8, 0x53, 0x4f, 0x3e,
186 0xf9, 0xa4, 0xf2, 0xfc, 0xf3, 0xcf, 0xff, 0x97,
187 0x85, 0x37, 0x01, 0x7e, 0xe3, 0x37, 0x7e, 0xe3,
188 0xb3, 0x84, 0x90, 0xbf, 0x53, 0xc0, 0x79, 0xba,
189 0x2a, 0xff, 0xac, 0x01, 0x52, 0x51, 0x94, 0x03,
190 0x65, 0x26, 0x50, 0x4a, 0x61, 0x18, 0x46, 0xd4,
191 0x6f, 0xfd, 0x8f, 0x9f, 0xfb, 0xdc, 0xe7, 0xfe,
192 0xfd, 0xc2, 0x12, 0xc0, 0xe7, 0x3e, 0xf7, 0xb9,
193 0x13, 0x82, 0x20, 0xbc, 0x01, 0x40, 0xf5, 0x7e,
194 0xb7, 0xb2, 0x52, 0xc5, 0x87, 0x7e, 0xe0, 0x43,
195 0xb8, 0xfd, 0xb6, 0xdb, 0xa0, 0x69, 0x25, 0x88,
196 0x92, 0x08, 0x42, 0xc8, 0x1c, 0x23, 0x36, 0xd9,
197 0xd3, 0x10, 0xec, 0x6b, 0x65, 0xc9, 0x77, 0x9f,
198 0x8d, 0x8b, 0xc8, 0x69, 0x6f, 0x36, 0x8b, 0x8f,
199 0x92, 0x65, 0x3a, 0x77, 0xc6, 0x18, 0x4c, 0x6a,
200 0xa2, 0xdd, 0x6a, 0xe1, 0xe5, 0x97, 0x5f, 0xc1,
201 0x1f, 0x3f, 0xf7, 0x27, 0xd0, 0x75, 0x9d, 0xb7,
202 0xdd, 0x75, 0xc6, 0xd8, 0xe9, 0x67, 0x9f, 0x7d,
203 0xb6, 0x3b, 0xe9, 0x6b, 0xda, 0x97, 0xe5, 0x35,
204 0x41, 0x10, 0xfe, 0x06, 0x0f, 0xfc, 0xa7, 0xcf,
205 0x9c, 0xc6, 0x53, 0x4f, 0x7d, 0x1c, 0x92, 0xb8,
206 0x08, 0xab, 0x7e, 0x2c, 0x3d, 0xc5, 0xb2, 0x03,
207 0x0c, 0xfc, 0x05, 0x05, 0x3f, 0x00, 0x10, 0x42,
208 0x20, 0x89, 0x12, 0x56, 0x56, 0x56, 0xf1, 0x91,
209 0x8f, 0x7c, 0x04, 0xe7, 0xcf, 0xdf, 0x8f, 0x2f,
210 0x7e, 0xe1, 0xf7, 0x51, 0xab, 0xd5, 0xbd, 0x9a,
211 0xc0, 0x06, 0x21, 0xe4, 0xc7, 0x01, 0x7c, 0x71,
212 0xe2, 0x58, 0xdc, 0x8f, 0x9b, 0x49, 0x08, 0xf9,
213 0x31, 0xef, 0x67, 0xe5, 0x4a, 0x19, 0x1f, 0xff,
214 0xf8, 0x47, 0x17, 0x0b, 0xfc, 0x28, 0xc0, 0x7f,
215 0x60, 0xc0, 0xcf, 0x92, 0x9f, 0xfb, 0xca, 0xca,
216 0x2a, 0x7e, 0xfa, 0x67, 0x7e, 0x0a, 0xa2, 0x24,
217 0x82, 0x31, 0xe6, 0x35, 0x03, 0xfe, 0xc6, 0x54,
218 0x26, 0xe3, 0x7d, 0xb0, 0x61, 0x09, 0x80, 0x87,
219 0xbc, 0x9f, 0x3f, 0xf0, 0xe0, 0x79, 0xc8, 0x92,
220 0x52, 0x80, 0xff, 0x20, 0xab, 0xfc, 0x6c, 0xf6,
221 0x80, 0x1f, 0x1b, 0xfc, 0x29, 0x65, 0x6d, 0x6d,
222 0x1d, 0x1f, 0x7e, 0xec, 0x51, 0x1e, 0x4e, 0x1e,
223 0x59, 0x48, 0x02, 0xf8, 0xfc, 0xe7, 0x3f, 0x7f,
224 0x94, 0x31, 0xa6, 0x79, 0x3f, 0xdf, 0xd8, 0xd8,
225 0x5c, 0x00, 0xe0, 0xb3, 0xf4, 0xc0, 0x67, 0x85,
226 0xbd, 0xbf, 0x68, 0x2a, 0x7f, 0x5c, 0xb9, 0xe7,
227 0xcc, 0x19, 0x97, 0x09, 0x30, 0xd4, 0x04, 0x56,
228 0x7f, 0xe9, 0x97, 0x7e, 0xe9, 0xf6, 0x85, 0xf3,
229 0x01, 0x88, 0xa2, 0xb8, 0xc6, 0x0b, 0xa3, 0x2c,
230 0x97, 0xcb, 0xbe, 0xcf, 0x06, 0x7a, 0x1f, 0xbd,
231 0x5e, 0x77, 0x0e, 0xa0, 0x9f, 0x75, 0xd6, 0x77,
232 0x78, 0x89, 0x19, 0x9d, 0x2e, 0x78, 0x58, 0xc6,
233 0x6b, 0xc8, 0xb8, 0x3f, 0xa5, 0x34, 0xfd, 0x05,
234 0xb1, 0x8c, 0xcf, 0x82, 0x65, 0xbc, 0xa5, 0x2c,
235 0xf9, 0x78, 0x58, 0xad, 0xae, 0x41, 0x51, 0xdc,
236 0xee, 0xaf, 0xd5, 0xd5, 0x35, 0xa7, 0xfd, 0x3f,
237 0x7a, 0x4f, 0x08, 0x59, 0x07, 0x70, 0x73, 0xa1,
238 0x08, 0x40, 0xd7, 0xf5, 0xaa, 0x20, 0xf8, 0x15,
239 0x0f, 0x59, 0x96, 0x7d, 0x9f, 0xf5, 0xfb, 0x3d,
240 0x74, 0x7a, 0xed, 0xd9, 0x06, 0x3f, 0xcb, 0x0f,
241 0xfc, 0xfb, 0xb1, 0xff, 0x7e, 0x82, 0xdf, 0xb9,
242 0x1b, 0x9b, 0x09, 0xe0, 0xb3, 0x89, 0xef, 0xdf,
243 0xed, 0x6b, 0x3e, 0x02, 0x50, 0x55, 0x85, 0xbb,
244 0x94, 0xc8, 0x18, 0xab, 0x2e, 0xa2, 0x06, 0xb0,
245 0xec, 0x05, 0x8d, 0x20, 0x08, 0x5c, 0xe7, 0x9f,
246 0x49, 0xcd, 0xc5, 0x04, 0xff, 0xbc, 0x02, 0x6f,
247 0x02, 0xfb, 0x1f, 0x24, 0xf0, 0x03, 0x00, 0xe5,
248 0x68, 0xbf, 0x92, 0x24, 0x73, 0xc7, 0x93, 0x20,
249 0x08, 0xcb, 0x0b, 0x47, 0x00, 0x8c, 0xb1, 0x65,
250 0xff, 0x0d, 0x90, 0x20, 0x08, 0xfe, 0xf5, 0xb2,
251 0xc4, 0xea, 0x70, 0x31, 0xeb, 0x17, 0xe0, 0x9f,
252 0x61, 0xf0, 0x83, 0xf1, 0xc7, 0xb4, 0x24, 0x8a,
253 0xdc, 0x31, 0x65, 0x9a, 0xe6, 0xc4, 0x09, 0x60,
254 0x3f, 0x96, 0x01, 0x7d, 0x6a, 0x8d, 0xaa, 0xaa,
255 0xe0, 0x2d, 0x98, 0x33, 0xca, 0x0a, 0xf0, 0x4f,
256 0x48, 0xe5, 0xcf, 0x02, 0xde, 0xac, 0xfb, 0xa7,
257 0x3a, 0x06, 0x87, 0x38, 0xa6, 0x06, 0x7e, 0x96,
258 0xdf, 0xfe, 0xbc, 0x31, 0x4d, 0x04, 0xc1, 0x65,
259 0x02, 0x3b, 0x1c, 0x81, 0x8b, 0x67, 0x02, 0x00,
260 0xf0, 0xb1, 0x9a, 0xaa, 0xa9, 0x01, 0x60, 0x0b,
261 0xd6, 0x00, 0x7e, 0xff, 0x0b, 0x97, 0xf1, 0x8f,
262 0xff, 0xd1, 0xb7, 0x41, 0x27, 0x40, 0x12, 0xb2,
263 0x2c, 0xa0, 0x5c, 0xce, 0xff, 0xd6, 0x08, 0x82,
264 0x80, 0xa5, 0x65, 0x79, 0x22, 0x37, 0x75, 0xa5,
265 0xaa, 0x64, 0xc1, 0x41, 0xf0, 0xc3, 0x5a, 0x96,
266 0xb9, 0xda, 0x59, 0x56, 0xf0, 0x97, 0x2b, 0x12,
267 0x64, 0x49, 0xc8, 0x7a, 0x28, 0x9f, 0x94, 0x34,
268 0x11, 0x8a, 0x22, 0xe6, 0x77, 0x1f, 0x86, 0x1b,
269 0x56, 0xab, 0x32, 0x7e, 0xea, 0x67, 0xee, 0xc5,
270 0x91, 0x23, 0x5a, 0x26, 0xad, 0x21, 0x48, 0xab,
271 0x2d, 0x97, 0x4b, 0xa8, 0xd7, 0x75, 0xd7, 0x04,
272 0x43, 0x08, 0x59, 0x4c, 0x13, 0xc0, 0x1b, 0xda,
273 0x6b, 0x69, 0x00, 0x1c, 0x7b, 0x29, 0x64, 0xb6,
274 0xfd, 0xd2, 0xbf, 0xbe, 0x32, 0x11, 0xf0, 0x03,
275 0x80, 0xae, 0x53, 0xd4, 0xeb, 0x83, 0x89, 0x1c,
276 0x7b, 0x6f, 0xaf, 0x37, 0x91, 0xe3, 0xbe, 0x8f,
277 0x42, 0x26, 0x2d, 0x5f, 0xff, 0xfa, 0x75, 0xfc,
278 0xc1, 0x7f, 0xf8, 0x91, 0x4c, 0x26, 0x83, 0x7f,
279 0xd5, 0x63, 0x48, 0x00, 0x95, 0x8a, 0x2b, 0x22,
280 0x30, 0xc8, 0x5c, 0x9e, 0x7b, 0x02, 0x10, 0x04,
281 0xc1, 0xe7, 0x04, 0xd4, 0xd4, 0xe4, 0x1a, 0x80,
282 0x0d, 0x50, 0x41, 0x30, 0xa0, 0xaa, 0x8d, 0x9c,
283 0x49, 0x4a, 0x00, 0x63, 0x93, 0xb1, 0x8e, 0x28,
284 0x9d, 0x4c, 0x02, 0x26, 0x63, 0xd2, 0x9c, 0x9d,
285 0xaf, 0x08, 0x2b, 0x26, 0x6c, 0x7e, 0xe4, 0xfd,
286 0xf7, 0x5a, 0xd9, 0xfd, 0x05, 0x34, 0x58, 0x03,
287 0xe0, 0x98, 0x9a, 0x8b, 0x47, 0x00, 0xc1, 0x3e,
288 0x80, 0x64, 0xf6, 0x76, 0xab, 0x35, 0x18, 0xaa,
289 0xeb, 0x1d, 0x3c, 0xfc, 0x70, 0x07, 0xb2, 0x2c,
290 0x7a, 0xf6, 0xcd, 0xd7, 0xce, 0xd7, 0x75, 0x23,
291 0x90, 0xbd, 0xf3, 0x92, 0xc1, 0xc0, 0x08, 0x25,
292 0xbd, 0x3c, 0x7c, 0x13, 0xba, 0x6e, 0xa6, 0xfe,
293 0x8d, 0xf8, 0x1a, 0x94, 0x99, 0xfb, 0xbd, 0xf2,
294 0x5e, 0x1f, 0xa5, 0x14, 0xa6, 0x49, 0xa7, 0x42,
295 0xde, 0xb5, 0xda, 0x9d, 0xe8, 0x76, 0xd7, 0xd0,
296 0xed, 0x1a, 0x30, 0x0c, 0x0a, 0x29, 0xcc, 0x74,
297 0x89, 0x78, 0x0c, 0x26, 0xe3, 0xaf, 0x6c, 0x95,
298 0x4a, 0x25, 0xde, 0xb5, 0x2e, 0x9e, 0x0f, 0x80,
299 0xa7, 0xd6, 0x28, 0xaa, 0xc2, 0x51, 0xff, 0x69,
300 0xe8, 0x60, 0x68, 0xb5, 0xf4, 0xa1, 0x06, 0x60,
301 0xe2, 0x93, 0x9f, 0xfc, 0x30, 0x4a, 0x25, 0x35,
302 0x10, 0x04, 0x8c, 0x25, 0x03, 0x4d, 0xf2, 0xcf,
303 0xd3, 0x1f, 0x3f, 0x89, 0x53, 0x71, 0x16, 0xce,
304 0x37, 0xf8, 0x3a, 0x92, 0x21, 0x62, 0x16, 0x9e,
305 0x55, 0xd4, 0xbe, 0xdf, 0xff, 0xfe, 0x5b, 0x78,
306 0xf5, 0xd5, 0xb7, 0x21, 0x08, 0xe3, 0x8c, 0xbd,
307 0x66, 0x53, 0xc7, 0xda, 0x9a, 0x1a, 0x78, 0xa9,
308 0xdd, 0x4e, 0x17, 0xdd, 0x5e, 0x1f, 0x04, 0x80,
309 0x20, 0x8a, 0x50, 0x15, 0x19, 0x92, 0x2c, 0x41,
310 0x10, 0x05, 0x10, 0x42, 0x02, 0xcd, 0x56, 0x4d,
311 0xd3, 0x78, 0x29, 0xc2, 0x0b, 0xa9, 0x01, 0x70,
312 0x08, 0x40, 0x4d, 0x34, 0xa3, 0x75, 0x3a, 0xc6,
313 0xe8, 0x46, 0x12, 0x62, 0x40, 0x14, 0xed, 0x64,
314 0x8a, 0xec, 0x83, 0x67, 0xbf, 0x41, 0x5e, 0x00,
315 0x7d, 0xfa, 0x40, 0x0f, 0xfa, 0xdc, 0x0e, 0x58,
316 0x13, 0x04, 0x33, 0x92, 0x00, 0x6e, 0xdd, 0xdc,
317 0xc6, 0x5b, 0x57, 0xde, 0x01, 0x35, 0x29, 0x2a,
318 0x4b, 0x65, 0x54, 0x2a, 0x15, 0x94, 0x4a, 0x1a,
319 0x8c, 0x92, 0x06, 0x59, 0x91, 0xa1, 0xaa, 0x0a,
320 0x24, 0x59, 0x84, 0x75, 0x48, 0x06, 0xef, 0xaa,
321 0x97, 0xaa, 0x6a, 0xbe, 0xdf, 0x5f, 0x54, 0x02,
322 0xf0, 0xa9, 0x35, 0x0a, 0x27, 0x0a, 0x30, 0x4c,
323 0x4d, 0x6d, 0x36, 0xc6, 0x0e, 0x3a, 0x51, 0xa4,
324 0x90, 0x24, 0x31, 0x90, 0x59, 0x67, 0x75, 0x36,
325 0x2f, 0x80, 0x3e, 0x3b, 0x40, 0x0f, 0x3a, 0x4f,
326 0x9b, 0x00, 0x08, 0x31, 0x1c, 0x63, 0xcf, 0x9f,
327 0xbf, 0xbf, 0x7d, 0x6b, 0x07, 0x2f, 0x7d, 0xef,
328 0xe5, 0xe1, 0x4c, 0xae, 0x82, 0x51, 0x36, 0x5a,
329 0xca, 0xa3, 0x8c, 0x5a, 0x7f, 0x29, 0x05, 0x63,
330 0xe2, 0xd0, 0x7c, 0x61, 0xbe, 0x95, 0x95, 0x52,
331 0x49, 0xf3, 0x9d, 0x13, 0x21, 0xe4, 0x60, 0x2c,
332 0x03, 0x7a, 0xab, 0xc2, 0x58, 0xce, 0x92, 0x30,
333 0xfb, 0x7f, 0xfc, 0x10, 0x64, 0x99, 0xf1, 0x52,
334 0x29, 0x0b, 0xa0, 0x17, 0x40, 0x4f, 0x78, 0xbd,
335 0x3c, 0x0d, 0x80, 0x70, 0x34, 0x80, 0x81, 0xef,
336 0x16, 0xed, 0xed, 0xd5, 0xc6, 0x36, 0x3e, 0xa5,
337 0xa0, 0x94, 0x82, 0x9a, 0x26, 0x28, 0x63, 0xae,
338 0x71, 0xcc, 0x28, 0x05, 0x44, 0x01, 0x94, 0x51,
339 0x08, 0x9e, 0x10, 0x1c, 0x55, 0x55, 0x0f, 0x86,
340 0x09, 0x40, 0x08, 0xf1, 0xad, 0x02, 0x48, 0xb2,
341 0x94, 0xc8, 0x07, 0xe0, 0x7c, 0x08, 0xaa, 0x2a,
342 0x44, 0x10, 0x40, 0x01, 0xf4, 0x02, 0xe8, 0xe9,
343 0xce, 0x59, 0x10, 0xc4, 0xe1, 0x98, 0xe5, 0x10,
344 0x80, 0x63, 0xd7, 0x63, 0xc7, 0x36, 0x70, 0xed,
345 0x83, 0x1b, 0xd0, 0x75, 0x1d, 0xd4, 0xa4, 0xa0,
346 0x8c, 0x82, 0x8e, 0x66, 0x7d, 0x06, 0x36, 0xfc,
347 0x6b, 0xcf, 0xfe, 0x16, 0x11, 0xb8, 0x7f, 0xd3,
348 0x1b, 0x0b, 0xb3, 0xb0, 0xab, 0x00, 0xbc, 0x04,
349 0x07, 0x99, 0x6b, 0x02, 0xb0, 0x10, 0x02, 0x30,
350 0x1c, 0xda, 0x03, 0xcb, 0x6c, 0xff, 0x17, 0x40,
351 0x3f, 0xd8, 0x40, 0x0f, 0xfa, 0x5c, 0x14, 0xfd,
352 0x1a, 0x40, 0xab, 0x69, 0xf8, 0x6e, 0x65, 0xb9,
353 0x52, 0xc6, 0x63, 0x4f, 0x3c, 0x82, 0xb7, 0xdf,
354 0x7a, 0x0f, 0x3b, 0x3b, 0xbb, 0x96, 0x06, 0x40,
355 0xe9, 0x08, 0xf8, 0x4e, 0x9f, 0x02, 0x21, 0xfc,
356 0x58, 0x00, 0x75, 0x98, 0x20, 0xe4, 0x39, 0xa7,
357 0x83, 0x61, 0x02, 0xc8, 0x09, 0x7d, 0x00, 0xf6,
358 0x12, 0xa0, 0xa5, 0x01, 0x10, 0x2b, 0x97, 0xbe,
359 0x00, 0x7a, 0x01, 0xf4, 0x9c, 0xcf, 0xd9, 0xf6,
360 0x01, 0x88, 0xe2, 0x98, 0x00, 0x1a, 0x0d, 0x7e,
361 0x80, 0x98, 0x56, 0xd2, 0x70, 0xf6, 0xfe, 0x33,
362 0x00, 0x03, 0x7a, 0xbd, 0x3e, 0x0c, 0xc3, 0x00,
363 0x08, 0xa0, 0x2a, 0x0a, 0x44, 0x49, 0xb4, 0x8e,
364 0xc5, 0x82, 0xb5, 0x5b, 0x55, 0x51, 0x78, 0xe7,
365 0xb3, 0x58, 0x1a, 0xc0, 0xc5, 0x8b, 0x17, 0x05,
366 0x00, 0x15, 0x1f, 0x01, 0x48, 0x32, 0xc7, 0x04,
367 0x60, 0xb1, 0x4c, 0x00, 0x49, 0x82, 0xcf, 0x04,
368 0x28, 0x80, 0x5e, 0x00, 0x3d, 0xae, 0x36, 0x19,
369 0x26, 0xd6, 0x8c, 0x4d, 0x5c, 0x26, 0x40, 0xab,
370 0xa9, 0x07, 0x3c, 0x8d, 0x71, 0x0d, 0x48, 0xad,
371 0xa4, 0xc2, 0x57, 0xf2, 0xd2, 0x79, 0x7f, 0x38,
372 0x1a, 0x80, 0xac, 0xc8, 0xbc, 0x73, 0x5e, 0xb2,
373 0x8e, 0x38, 0xb9, 0x92, 0x29, 0x53, 0x4d, 0x06,
374 0x2a, 0x95, 0x4a, 0x15, 0xde, 0x6f, 0x4a, 0x92,
375 0x98, 0xe8, 0xa1, 0x39, 0x1f, 0x82, 0xaa, 0x92,
376 0xb1, 0xad, 0x15, 0xe2, 0x0b, 0xb0, 0x8f, 0x99,
377 0xcf, 0x0b, 0x01, 0xaf, 0xf4, 0xc7, 0xa4, 0x74,
378 0xfc, 0x72, 0x1e, 0x73, 0x9c, 0x49, 0xe2, 0x7e,
379 0x4d, 0xf3, 0xdc, 0x82, 0x8e, 0xef, 0x3e, 0xe7,
380 0xbc, 0xae, 0x37, 0xfb, 0xf3, 0x8a, 0x4f, 0xfc,
381 0xde, 0x6b, 0x01, 0x28, 0x1d, 0x7f, 0x46, 0x88,
382 0x45, 0x00, 0x4e, 0x0d, 0xa0, 0xd9, 0xd2, 0x7d,
383 0xc0, 0x8f, 0x8c, 0x0e, 0x64, 0x61, 0x93, 0x9b,
384 0xf5, 0x3c, 0x9d, 0x8e, 0x70, 0xc7, 0x35, 0x08,
385 0xbf, 0xf0, 0x0b, 0xbf, 0x50, 0x59, 0x18, 0x0d,
386 0xa0, 0x5c, 0x2e, 0x2f, 0x1b, 0x86, 0xbf, 0x1f,
387 0xa2, 0xc8, 0xa9, 0x05, 0x10, 0x6e, 0x02, 0xe8,
388 0x2e, 0x0d, 0xa0, 0x98, 0xd1, 0x17, 0x6f, 0x46,
389 0xf7, 0x7f, 0x46, 0x62, 0xdf, 0xa7, 0xa0, 0xdf,
390 0x77, 0xbe, 0x77, 0xa6, 0xa3, 0x8c, 0xb7, 0x67,
391 0x9e, 0x71, 0x49, 0x00, 0x10, 0x08, 0xc2, 0xf8,
392 0x73, 0xe7, 0x12, 0x74, 0xda, 0x7a, 0x81, 0x63,
393 0x1f, 0x00, 0xf3, 0x99, 0xc1, 0xde, 0xeb, 0x30,
394 0x0c, 0x63, 0x19, 0x40, 0x6b, 0x21, 0x08, 0xa0,
395 0xdf, 0xef, 0x57, 0x45, 0xd1, 0x3f, 0xdb, 0x8b,
396 0x3c, 0x0d, 0x80, 0xc6, 0x33, 0x01, 0x14, 0x85,
397 0xc4, 0x6a, 0xe8, 0x50, 0x00, 0x9d, 0xcd, 0xa8,
398 0xda, 0x1e, 0x7b, 0xbe, 0xe6, 0x1c, 0x87, 0x24,
399 0x3c, 0x4e, 0x34, 0x31, 0xb8, 0x4d, 0x00, 0x11,
400 0x84, 0xd8, 0xab, 0x00, 0x56, 0xf0, 0x4e, 0x73,
401 0xa8, 0x7d, 0x26, 0x9d, 0xf5, 0xfd, 0x04, 0xe0,
402 0x5d, 0x09, 0x93, 0xb9, 0x24, 0x26, 0x8a, 0x62,
403 0x15, 0xc0, 0xf5, 0x85, 0x20, 0x00, 0x49, 0x92,
404 0x96, 0x79, 0x03, 0x81, 0x57, 0x0d, 0x28, 0x6c,
405 0x19, 0xb0, 0xe5, 0x22, 0x00, 0x24, 0x20, 0x80,
406 0xd9, 0x04, 0xfa, 0xe2, 0xcd, 0xe6, 0x24, 0x01,
407 0xd0, 0xf9, 0x33, 0x7d, 0xf0, 0x3d, 0xc9, 0x9f,
408 0x4c, 0x79, 0x91, 0x79, 0x63, 0x27, 0xe0, 0x78,
409 0x25, 0x80, 0x52, 0x09, 0xcd, 0xa6, 0x1e, 0x09,
410 0x7e, 0x43, 0x37, 0x60, 0x18, 0x26, 0x18, 0x63,
411 0x10, 0x05, 0x01, 0xa2, 0x24, 0xc2, 0x9e, 0xf8,
412 0x18, 0x18, 0x28, 0x27, 0x1f, 0x80, 0xa7, 0x01,
413 0x0c, 0x09, 0x60, 0xa2, 0x8e, 0xc0, 0xa9, 0x12,
414 0x40, 0x50, 0x35, 0x20, 0x5e, 0xe7, 0x9f, 0xf0,
415 0x44, 0x20, 0x67, 0x20, 0x10, 0x4f, 0x03, 0xc8,
416 0xa2, 0x6a, 0x16, 0x6a, 0x7b, 0x3c, 0xa0, 0x87,
417 0x7d, 0x9e, 0xcc, 0x0e, 0x8f, 0x9e, 0xe9, 0x27,
418 0xa5, 0x55, 0x84, 0x9d, 0x33, 0x19, 0x39, 0x01,
419 0x2d, 0x02, 0xa0, 0xa0, 0xd4, 0x6d, 0x02, 0x78,
420 0xe5, 0xd6, 0xcd, 0x6d, 0x5c, 0xff, 0xe0, 0x3a,
421 0x74, 0xc3, 0x40, 0xa5, 0x5c, 0x41, 0xb9, 0x52,
422 0x82, 0x56, 0xd2, 0xa0, 0xaa, 0x2a, 0x54, 0x55,
423 0x81, 0xac, 0xca, 0x10, 0x45, 0x81, 0xbb, 0x0c,
424 0x28, 0x89, 0x12, 0xf7, 0x7a, 0x28, 0xa5, 0x8b,
425 0x43, 0x00, 0xe0, 0xac, 0x6b, 0x06, 0x13, 0x40,
426 0x58, 0x20, 0x90, 0x3e, 0xb4, 0xe3, 0xcc, 0x61,
427 0x1e, 0x40, 0x61, 0x9f, 0x67, 0xb9, 0x5e, 0x42,
428 0x48, 0xcc, 0x19, 0x37, 0x1e, 0x41, 0xc7, 0xdb,
429 0x9e, 0x64, 0x98, 0xd1, 0x49, 0x4a, 0xa0, 0xf3,
430 0x67, 0xfa, 0xa0, 0x67, 0xee, 0x0c, 0xd7, 0x15,
431 0x04, 0x03, 0x80, 0xe2, 0x73, 0x02, 0xda, 0xf2,
432 0xd6, 0x95, 0x77, 0xf0, 0xf6, 0x9b, 0xef, 0x02,
433 0x04, 0x58, 0x5a, 0x5a, 0x1a, 0x46, 0x04, 0x8e,
434 0x83, 0x81, 0x4c, 0x4a, 0x21, 0x98, 0x26, 0x08,
435 0x71, 0xc4, 0xfa, 0x3b, 0x2e, 0x5b, 0x14, 0xad,
436 0xa5, 0x42, 0x9b, 0x1c, 0x1c, 0xb1, 0x03, 0xd5,
437 0x45, 0x22, 0x00, 0x7f, 0x35, 0x20, 0x55, 0xe5,
438 0x12, 0x00, 0x8d, 0xa1, 0x01, 0x08, 0x82, 0x09,
439 0x49, 0x12, 0x63, 0x2d, 0x01, 0x1e, 0x34, 0xa0,
440 0x07, 0x1f, 0x87, 0x7f, 0x8c, 0xa8, 0x6b, 0x89,
441 0xdb, 0x9e, 0x31, 0xbe, 0xea, 0xce, 0x52, 0xee,
442 0x1b, 0xad, 0x61, 0x84, 0xdf, 0x12, 0x3f, 0x99,
443 0x04, 0x6d, 0x2f, 0x8a, 0xa2, 0x4b, 0x03, 0xb0,
444 0x9c, 0x80, 0x3a, 0xf7, 0x90, 0xef, 0xbf, 0x7b,
445 0x75, 0xf4, 0xde, 0xb6, 0xf1, 0xad, 0x60, 0x20,
446 0x36, 0x36, 0x67, 0xd9, 0xd8, 0x07, 0xe0, 0x55,
447 0x3a, 0x08, 0x21, 0x50, 0x55, 0x15, 0xdd, 0x6e,
448 0xd7, 0xdb, 0x4c, 0x74, 0xb1, 0x4c, 0x00, 0x2f,
449 0xd8, 0x79, 0xa9, 0xc0, 0x91, 0x1a, 0x40, 0x63,
450 0x10, 0x8b, 0x00, 0x16, 0x11, 0xe8, 0x61, 0x8d,
451 0x52, 0xa3, 0x8f, 0xe3, 0x1f, 0xec, 0xe3, 0xc3,
452 0x25, 0x03, 0x15, 0xef, 0xf0, 0xd6, 0xb1, 0x58,
453 0x6a, 0x7f, 0x80, 0xf7, 0x9c, 0xa3, 0x9a, 0xc2,
454 0x26, 0xb5, 0xe9, 0xf9, 0xdb, 0x87, 0x2f, 0x1d,
455 0x12, 0x62, 0x85, 0x9a, 0xdb, 0x04, 0xd0, 0x6a,
456 0xeb, 0x76, 0xcd, 0x7e, 0xd7, 0x6d, 0x3b, 0x74,
457 0x68, 0x0d, 0x37, 0x6f, 0x6e, 0xb9, 0x48, 0x80,
458 0x0d, 0x43, 0x82, 0xad, 0xe4, 0xa0, 0x61, 0x38,
459 0xb0, 0x4d, 0x10, 0x9c, 0x9f, 0x2c, 0x97, 0xcb,
460 0xe8, 0x74, 0x3a, 0xde, 0xfb, 0xb1, 0xd8, 0x26,
461 0x80, 0x96, 0xaa, 0x18, 0x88, 0x6d, 0x02, 0x18,
462 0x10, 0x45, 0x25, 0xa4, 0x34, 0xd8, 0x7c, 0x00,
463 0x3d, 0x49, 0xf3, 0x63, 0xef, 0x6c, 0x1d, 0x0c,
464 0xc4, 0xa0, 0xfb, 0xc1, 0xb8, 0x84, 0x10, 0x36,
465 0xfb, 0x46, 0x9d, 0xdf, 0x38, 0x7d, 0x35, 0x9b,
466 0x3f, 0x20, 0xee, 0x71, 0xd3, 0xda, 0xf4, 0xf1,
467 0xcc, 0x0d, 0xaf, 0x16, 0x40, 0x60, 0x9a, 0xb6,
468 0x09, 0x00, 0x50, 0x93, 0xa1, 0xdd, 0x36, 0xb1,
469 0xb4, 0x24, 0xb9, 0x0e, 0x71, 0xee, 0xc2, 0x59,
470 0x94, 0x2a, 0x25, 0x5c, 0xfb, 0xe0, 0xfa, 0x30,
471 0x19, 0x68, 0x08, 0x7e, 0xfb, 0x45, 0xc7, 0x04,
472 0x4e, 0x63, 0x54, 0x05, 0x72, 0x10, 0xfe, 0xe2,
473 0x98, 0x00, 0xbc, 0x72, 0x60, 0xaa, 0xa6, 0xf1,
474 0x1f, 0x44, 0x8c, 0x65, 0x40, 0x41, 0xa0, 0xc3,
475 0x20, 0xa2, 0xd9, 0x04, 0xba, 0xd3, 0xde, 0x8b,
476 0xaf, 0xa2, 0x33, 0xee, 0x80, 0x0d, 0x06, 0x22,
477 0x4f, 0x95, 0x8e, 0x67, 0xd3, 0x13, 0xc2, 0x12,
478 0x00, 0x2a, 0xfc, 0x3e, 0x24, 0x69, 0xe1, 0x1e,
479 0xc7, 0xa6, 0x8f, 0x73, 0xb8, 0x78, 0x1a, 0x06,
480 0x7f, 0x8d, 0x3f, 0x2e, 0xa9, 0x08, 0x82, 0x08,
481 0xd3, 0x34, 0x46, 0x1a, 0x00, 0x60, 0xad, 0x42,
482 0x2d, 0x55, 0x24, 0xef, 0xd8, 0xc6, 0xe9, 0xbb,
483 0xef, 0xc4, 0xe9, 0xd3, 0x77, 0xa2, 0x56, 0xaf,
484 0x5b, 0xa1, 0xc0, 0x20, 0x90, 0x25, 0x09, 0xb2,
485 0x2a, 0x43, 0x91, 0x65, 0xab, 0x28, 0x08, 0x08,
486 0x27, 0x12, 0xd0, 0x3a, 0x99, 0x52, 0xb9, 0x3c,
487 0xf5, 0x8c, 0xc0, 0x7d, 0x5f, 0x05, 0x50, 0x79,
488 0xa9, 0xc0, 0x2c, 0x38, 0xba, 0xca, 0x34, 0x18,
489 0xba, 0x5d, 0x73, 0xe4, 0x04, 0x14, 0x04, 0x61,
490 0xea, 0x40, 0x8f, 0xbb, 0x6a, 0xc1, 0x8b, 0x6e,
491 0xe3, 0x93, 0x04, 0xef, 0x9c, 0xe3, 0xd9, 0xc8,
492 0x7c, 0x95, 0xde, 0x3f, 0xd3, 0x27, 0xf1, 0x0d,
493 0x78, 0x72, 0xd2, 0x53, 0x82, 0x3a, 0x89, 0x76,
494 0xc2, 0x62, 0x9f, 0x5b, 0xd0, 0xbe, 0x4e, 0xe2,
495 0x4c, 0x03, 0xf4, 0x60, 0x0d, 0x40, 0x84, 0x61,
496 0x98, 0x10, 0x45, 0xea, 0x32, 0x41, 0x8f, 0x1e,
497 0x2d, 0xf3, 0xf7, 0x27, 0x0c, 0x2b, 0xab, 0xd5,
498 0x50, 0x85, 0xd4, 0xf2, 0x09, 0xf8, 0x4f, 0xac,
499 0xc4, 0x9f, 0x0c, 0x17, 0xca, 0x04, 0xf0, 0xd7,
500 0x02, 0xd0, 0x94, 0x44, 0xf6, 0xbf, 0x6d, 0x83,
501 0xb9, 0x7d, 0x00, 0xd9, 0x81, 0x9e, 0x64, 0xa0,
502 0xf3, 0x66, 0xb0, 0x60, 0xdb, 0x3a, 0x1c, 0x64,
503 0xde, 0xc2, 0x98, 0xc9, 0xfc, 0x16, 0x24, 0x64,
504 0xb6, 0xe6, 0xef, 0xeb, 0xd4, 0x24, 0x92, 0x06,
505 0xf0, 0x24, 0xf3, 0xa2, 0x07, 0xab, 0xe1, 0x71,
506 0x48, 0x31, 0xc8, 0xa6, 0x8f, 0x26, 0x7b, 0x96,
507 0x18, 0xe4, 0x61, 0xe7, 0x6b, 0xa5, 0x04, 0x13,
508 0x77, 0x4d, 0x00, 0xce, 0x4a, 0x40, 0x92, 0xc0,
509 0xa0, 0x91, 0x0f, 0xc0, 0x13, 0xe5, 0xaf, 0x95,
510 0x34, 0xde, 0x7d, 0x5f, 0x6c, 0x1f, 0x80, 0x22,
511 0x2b, 0x89, 0xec, 0xff, 0x46, 0xa3, 0xef, 0x00,
512 0x99, 0xe1, 0x73, 0x02, 0xa6, 0x55, 0x4d, 0xf9,
513 0x09, 0x45, 0x24, 0xd5, 0x40, 0x77, 0x0e, 0xf2,
514 0x68, 0xdb, 0x3a, 0x99, 0x1a, 0x1e, 0xe6, 0xc0,
515 0x0a, 0xba, 0xd6, 0x20, 0x07, 0x5e, 0x54, 0x54,
516 0x5d, 0x9a, 0xd9, 0x3a, 0x9c, 0x64, 0x59, 0x2c,
517 0xd3, 0x84, 0xef, 0xd3, 0x09, 0xbe, 0xd6, 0x7c,
518 0xe3, 0x01, 0xdc, 0xbf, 0x29, 0x8a, 0x04, 0x84,
519 0xc0, 0xa3, 0x01, 0xe8, 0xf1, 0xc1, 0x1f, 0xf0,
520 0x15, 0x65, 0x0c, 0x02, 0x88, 0xeb, 0x6b, 0xbb,
521 0x30, 0xa8, 0x67, 0x1c, 0x2e, 0xf6, 0x32, 0x20,
522 0x8f, 0x00, 0x82, 0xa2, 0x00, 0x9d, 0xc5, 0x40,
523 0x6d, 0x1f, 0x00, 0x2f, 0xb4, 0x38, 0xca, 0xde,
524 0xf4, 0xce, 0xc4, 0xe1, 0x4e, 0xb3, 0xb0, 0x7d,
525 0x83, 0x6c, 0xeb, 0x18, 0x23, 0x20, 0x11, 0x70,
526 0xe2, 0x11, 0x11, 0x0f, 0x38, 0x41, 0x9a, 0x89,
527 0xff, 0x77, 0x58, 0x84, 0x0f, 0x22, 0x89, 0xa3,
528 0x35, 0x98, 0x88, 0xa2, 0x8e, 0x99, 0xc6, 0xe4,
529 0x48, 0x17, 0x0f, 0x10, 0x7d, 0xbe, 0xb6, 0x6d,
530 0xef, 0xd5, 0x00, 0x9c, 0x63, 0x30, 0x0d, 0xf8,
531 0x6d, 0x2d, 0x80, 0x78, 0xc6, 0x2e, 0xaf, 0x2a,
532 0xd0, 0x42, 0x69, 0x00, 0xbc, 0x6a, 0x40, 0xb2,
533 0x1a, 0xaf, 0x18, 0x88, 0xfd, 0x99, 0x33, 0x0c,
534 0xd8, 0xbd, 0x0c, 0x98, 0xce, 0x19, 0x64, 0xcd,
535 0x2c, 0x24, 0xa6, 0x0d, 0x1a, 0xcf, 0xa4, 0x88,
536 0x9e, 0xfd, 0x59, 0xa2, 0xe8, 0x47, 0xa7, 0xd7,
537 0x38, 0x79, 0x66, 0x6b, 0xd2, 0x73, 0x0b, 0x72,
538 0x10, 0x26, 0x5d, 0x5a, 0x4b, 0xed, 0x27, 0x4a,
539 0xa9, 0x99, 0x64, 0xd1, 0x00, 0x82, 0xf3, 0x0c,
540 0xec, 0x58, 0x00, 0x51, 0x64, 0x0e, 0x2d, 0x34,
541 0x3c, 0x1c, 0xb8, 0xd5, 0x6c, 0xa3, 0xdb, 0xee,
542 0x82, 0x10, 0x02, 0x41, 0x14, 0xa1, 0x28, 0x32,
543 0x14, 0x55, 0x71, 0xf5, 0xc0, 0xa4, 0x8c, 0x42,
544 0xf4, 0x94, 0x05, 0xda, 0x8f, 0xaa, 0x40, 0x53,
545 0x25, 0x00, 0x4a, 0x69, 0xd5, 0x3b, 0xf0, 0x79,
546 0xb5, 0x00, 0xc2, 0x02, 0x7b, 0x9a, 0x4d, 0xb7,
547 0x06, 0x60, 0x39, 0x01, 0xc3, 0x1d, 0x5f, 0xd1,
548 0xbe, 0x00, 0x36, 0xa5, 0x84, 0x96, 0xf8, 0x4e,
549 0xb3, 0xe4, 0x01, 0x38, 0xd1, 0xe7, 0xc6, 0xd7,
550 0x4c, 0x92, 0x98, 0x0d, 0xe1, 0xce, 0xd0, 0x64,
551 0xbe, 0x98, 0x78, 0x7e, 0x93, 0x38, 0x26, 0x47,
552 0x52, 0xbf, 0x49, 0x92, 0x67, 0x6d, 0x5f, 0xa3,
553 0xcb, 0x04, 0x68, 0xf2, 0xc3, 0x81, 0xf7, 0x76,
554 0x6b, 0x78, 0xf5, 0xf2, 0x1b, 0xa0, 0x26, 0xc5,
555 0xd2, 0x52, 0x05, 0xe5, 0x72, 0x09, 0x5a, 0xb9,
556 0x04, 0x4a, 0xad, 0x92, 0xdf, 0x4c, 0x61, 0x56,
557 0x89, 0x70, 0x81, 0x80, 0x52, 0x13, 0x80, 0x3c,
558 0x26, 0x1f, 0x00, 0x9a, 0xaa, 0xf1, 0xee, 0xd7,
559 0xe2, 0x98, 0x00, 0xbc, 0x5e, 0x67, 0x8a, 0x22,
560 0x07, 0x9a, 0x00, 0xbc, 0x81, 0xe3, 0x36, 0x01,
561 0x4c, 0x97, 0x09, 0x10, 0xec, 0xf8, 0x62, 0xa9,
562 0x1e, 0xbe, 0x97, 0x4c, 0xf2, 0x0a, 0x3d, 0x8d,
563 0xb3, 0x1e, 0x1d, 0x3c, 0xd8, 0x79, 0x6a, 0x73,
564 0xf2, 0x19, 0x31, 0x48, 0xab, 0x89, 0xe3, 0x37,
565 0x09, 0x5a, 0x16, 0x9c, 0x85, 0x98, 0x84, 0x38,
566 0xda, 0x49, 0x50, 0x56, 0x60, 0x18, 0x09, 0x38,
567 0x97, 0x01, 0x9b, 0x9c, 0xa2, 0x20, 0x9d, 0x76,
568 0x07, 0x2f, 0x7c, 0xe7, 0x12, 0x18, 0xb3, 0x72,
569 0xfb, 0x29, 0xb5, 0xe2, 0x00, 0xc0, 0xab, 0xc5,
570 0x00, 0x3b, 0x1a, 0xd0, 0xfd, 0xe3, 0x8a, 0xaa,
571 0xf0, 0x26, 0xbf, 0xc5, 0x5e, 0x05, 0x90, 0x78,
572 0x1a, 0x00, 0x0d, 0x8e, 0xce, 0x72, 0xb2, 0xaf,
573 0x2c, 0xb3, 0xc0, 0x81, 0x13, 0xfc, 0xf0, 0xe3,
574 0xcc, 0x58, 0x09, 0x8c, 0x39, 0xc4, 0x4d, 0x8c,
575 0x49, 0x96, 0xc6, 0xca, 0xf7, 0x4d, 0xc4, 0xb3,
576 0xad, 0xc3, 0x66, 0xb2, 0x24, 0xda, 0x44, 0x72,
577 0x20, 0x4e, 0x2f, 0x26, 0x21, 0xa9, 0xdf, 0x24,
578 0x2a, 0x1e, 0x83, 0x52, 0x8a, 0x76, 0xbb, 0x8b,
579 0x76, 0xbb, 0x87, 0x4e, 0xa7, 0x8b, 0x56, 0xab,
580 0x87, 0x5e, 0xaf, 0x3f, 0x22, 0x44, 0xa7, 0x06,
581 0xd0, 0xe2, 0xac, 0x02, 0xb4, 0x5b, 0x9d, 0xd1,
582 0x6f, 0x98, 0xa6, 0x01, 0x93, 0x3a, 0xca, 0x81,
583 0xd3, 0x61, 0x34, 0x20, 0xd8, 0xb0, 0x22, 0xb0,
584 0xe8, 0x5f, 0xe9, 0x62, 0xee, 0x25, 0xf1, 0x85,
585 0x5b, 0x05, 0x60, 0x8c, 0x91, 0xcf, 0x7f, 0xfe,
586 0xf3, 0x7e, 0x02, 0x90, 0x93, 0xa6, 0x02, 0x3b,
587 0x33, 0x01, 0x05, 0x8f, 0xe3, 0x2b, 0xd9, 0x5a,
588 0x70, 0x12, 0x67, 0x50, 0xf4, 0x71, 0xa2, 0x0a,
589 0x56, 0x04, 0x01, 0x85, 0xc5, 0x56, 0xc3, 0xb3,
590 0xda, 0xd6, 0x41, 0xe7, 0x9c, 0x26, 0x2a, 0x71,
591 0x5a, 0x31, 0x09, 0x69, 0xaf, 0x33, 0x1a, 0xf0,
592 0x0c, 0xed, 0x76, 0x07, 0x8d, 0x46, 0x1b, 0xcd,
593 0x66, 0x07, 0xad, 0x56, 0x77, 0xa8, 0x96, 0xf3,
594 0xae, 0x21, 0xb8, 0x28, 0x88, 0xfd, 0x08, 0x0f,
595 0x1d, 0x3e, 0x84, 0xd5, 0xb5, 0x15, 0xd4, 0xf6,
596 0xea, 0x6e, 0xf0, 0x0f, 0x43, 0x80, 0x19, 0x1c,
597 0xc1, 0x6d, 0xcc, 0xe3, 0xb0, 0x65, 0xf6, 0x78,
598 0x56, 0x78, 0xe7, 0xbe, 0x18, 0x04, 0xf0, 0xbb,
599 0xbf, 0xfb, 0xbb, 0x25, 0xf8, 0x8a, 0x21, 0x7b,
600 0x6b, 0x01, 0x0c, 0x1f, 0x1e, 0x8d, 0x57, 0x0d,
601 0x48, 0x51, 0x82, 0x80, 0x9e, 0x56, 0x35, 0x8d,
602 0x9e, 0xf9, 0x82, 0x67, 0xbb, 0xf0, 0x82, 0x15,
603 0xe1, 0x40, 0x8a, 0x9f, 0xa0, 0x12, 0x0d, 0x70,
604 0x12, 0x38, 0x5b, 0x07, 0x79, 0xfe, 0x93, 0x03,
605 0x31, 0xbf, 0x98, 0x84, 0xb4, 0x7e, 0x8e, 0xa0,
606 0xeb, 0x0d, 0x9b, 0xe1, 0x5b, 0xad, 0x2e, 0x9a,
607 0xcd, 0x36, 0x9a, 0xcd, 0xf6, 0x10, 0xf0, 0xd1,
608 0x13, 0x80, 0x7d, 0x6e, 0x84, 0xb0, 0x61, 0x4a,
609 0xb0, 0x30, 0x8e, 0x03, 0x70, 0xec, 0x2e, 0x08,
610 0x04, 0x0f, 0x3f, 0xf2, 0x00, 0xae, 0x5f, 0xbb,
611 0x89, 0x5b, 0x37, 0xb7, 0x30, 0x18, 0xe8, 0x23,
612 0x4d, 0xd6, 0x2a, 0x13, 0x4e, 0x41, 0x84, 0x61,
613 0x8a, 0xb1, 0x40, 0xac, 0x49, 0x8e, 0x79, 0xcd,
614 0x61, 0x85, 0x47, 0xd4, 0xd2, 0x33, 0xcf, 0x3c,
615 0x53, 0x7a, 0xf6, 0xd9, 0x67, 0xbb, 0x73, 0x4d,
616 0x00, 0xf5, 0x7a, 0xbd, 0xca, 0xab, 0xfe, 0x2b,
617 0x8d, 0x6a, 0x7a, 0xc5, 0x2b, 0xea, 0xe9, 0xac,
618 0x08, 0x2c, 0xcb, 0x48, 0x19, 0x2e, 0x4b, 0x12,
619 0x44, 0xe9, 0x65, 0xf1, 0x07, 0xa4, 0x4d, 0x8c,
620 0x49, 0xb6, 0x74, 0xe8, 0xd7, 0x12, 0x98, 0x4f,
621 0x0d, 0x8f, 0x43, 0x6c, 0xd9, 0xbc, 0xeb, 0x2c,
622 0x55, 0x04, 0x61, 0x94, 0x53, 0x2f, 0xda, 0x19,
623 0x1a, 0x4c, 0xf6, 0x8d, 0x46, 0x1b, 0x8d, 0x46,
624 0x0b, 0x8d, 0x46, 0x1b, 0x9d, 0x4e, 0xcf, 0xa7,
625 0xe9, 0xc4, 0x35, 0xb1, 0xc6, 0x20, 0x1f, 0x12,
626 0x40, 0x43, 0xe7, 0x3e, 0x22, 0x42, 0x08, 0x36,
627 0x8f, 0x1d, 0xc5, 0xe6, 0xb1, 0xa3, 0x00, 0x03,
628 0x0c, 0xc3, 0x80, 0x41, 0xcd, 0x91, 0xf7, 0xdf,
629 0x79, 0x4f, 0x28, 0xa7, 0xb1, 0xa9, 0xb7, 0x43,
630 0x96, 0x7d, 0xbe, 0xcd, 0x66, 0xb3, 0x0a, 0x60,
631 0xbe, 0x09, 0x40, 0x55, 0xd5, 0x65, 0x5e, 0x12,
632 0x84, 0xe5, 0xc4, 0x63, 0xb1, 0x4d, 0x80, 0xa6,
633 0xab, 0x20, 0x68, 0xbc, 0xd9, 0xde, 0xaf, 0x9a,
634 0xc6, 0x0f, 0xb3, 0x0d, 0xf6, 0x07, 0x24, 0xb5,
635 0xe9, 0xf9, 0x44, 0x94, 0x1c, 0xe8, 0x4e, 0x87,
636 0x66, 0x5c, 0xcf, 0x3f, 0x4b, 0x09, 0xc4, 0xc9,
637 0xae, 0xd3, 0x87, 0x6b, 0x27, 0x5e, 0xcd, 0x2a,
638 0xda, 0xac, 0xa3, 0x94, 0xa2, 0x5e, 0x6f, 0xa2,
639 0x56, 0x6b, 0xa2, 0xd1, 0x68, 0x43, 0xd7, 0x0d,
640 0xd7, 0x3d, 0x4e, 0x42, 0x4a, 0xbc, 0xed, 0x45,
641 0x91, 0xc2, 0x30, 0x82, 0x2b, 0x03, 0x7b, 0x1f,
642 0xad, 0x28, 0x8b, 0xbe, 0xa5, 0x3e, 0xfb, 0x92,
643 0xdc, 0x3e, 0x00, 0x36, 0x34, 0x87, 0xe5, 0x20,
644 0x73, 0x6d, 0x19, 0xc0, 0xcd, 0xb9, 0x26, 0x00,
645 0x5e, 0x5e, 0xb3, 0x20, 0x08, 0xa3, 0xda, 0xeb,
646 0x71, 0x1d, 0x36, 0xad, 0x51, 0x31, 0x10, 0x06,
647 0x51, 0x14, 0x22, 0xd4, 0x72, 0x12, 0xdb, 0x61,
648 0x96, 0x2d, 0x15, 0x35, 0x7d, 0x04, 0x61, 0xfa,
649 0xe5, 0x47, 0x16, 0xfb, 0x7a, 0xe3, 0x39, 0x1c,
650 0xd3, 0x86, 0x42, 0x27, 0x5b, 0xa7, 0xf7, 0xee,
651 0x9b, 0x36, 0x62, 0xd2, 0xfe, 0x8d, 0x5e, 0x6f,
652 0x80, 0x5a, 0xcd, 0x02, 0x7d, 0xb3, 0xd9, 0x89,
653 0x45, 0xb0, 0x49, 0x89, 0x60, 0x3c, 0x5e, 0x4d,
654 0xdf, 0x24, 0x14, 0xf0, 0x54, 0x23, 0x95, 0x42,
655 0x5e, 0x5d, 0x40, 0x59, 0x96, 0x82, 0xc6, 0xfe,
656 0xc4, 0xfc, 0x00, 0xd3, 0x5c, 0x05, 0xe0, 0x57,
657 0x03, 0xe2, 0x12, 0x40, 0x74, 0x5b, 0x30, 0x42,
658 0x4c, 0x5f, 0x39, 0x71, 0xff, 0x60, 0xcf, 0x23,
659 0x15, 0x35, 0x8f, 0x70, 0x59, 0x92, 0x01, 0xe8,
660 0x49, 0xb4, 0x04, 0x96, 0x4a, 0xa5, 0x0f, 0x72,
661 0x88, 0xf2, 0x9c, 0x7a, 0xc1, 0x11, 0x84, 0x4e,
662 0xb2, 0x8f, 0xf7, 0x1b, 0xb6, 0x26, 0x16, 0xec,
663 0x37, 0xe1, 0x47, 0x69, 0x0e, 0x06, 0x3a, 0x76,
664 0x77, 0x1b, 0xd8, 0xdb, 0x6b, 0xa0, 0xd5, 0xea,
665 0x8e, 0x40, 0x9d, 0x16, 0xd8, 0x61, 0xb6, 0xbf,
666 0x5b, 0x03, 0x60, 0xae, 0x31, 0x98, 0x08, 0xfc,
667 0xbe, 0xd2, 0xe0, 0x3c, 0x6d, 0x58, 0x1a, 0x56,
668 0x67, 0x72, 0xdf, 0x17, 0x4a, 0x69, 0x75, 0xee,
669 0x09, 0x80, 0x57, 0x0c, 0x44, 0x96, 0x65, 0x08,
670 0xa9, 0xab, 0x01, 0xd1, 0x61, 0x7d, 0x35, 0x96,
671 0x79, 0xa0, 0xf3, 0xd5, 0xe6, 0xa8, 0xa7, 0xc8,
672 0xb8, 0x20, 0xe1, 0x3b, 0x1c, 0x83, 0x3d, 0xf0,
673 0xd1, 0xe7, 0x4b, 0x03, 0x06, 0x6c, 0x9c, 0x9a,
674 0x03, 0xd1, 0x4e, 0xc2, 0xe0, 0xe3, 0xd0, 0x48,
675 0xbf, 0x49, 0x9c, 0xa2, 0x20, 0x61, 0x24, 0x16,
676 0xcf, 0xff, 0x61, 0xed, 0xab, 0xeb, 0x06, 0x76,
677 0x76, 0x6a, 0xd8, 0xde, 0xae, 0xa3, 0xd7, 0xeb,
678 0xc7, 0x9c, 0xcd, 0xe3, 0x01, 0x3b, 0xee, 0xbe,
679 0xb6, 0x06, 0xd0, 0xef, 0x53, 0x0c, 0x06, 0x26,
680 0x14, 0x45, 0x4c, 0x05, 0x7e, 0x60, 0xec, 0xe8,
681 0x66, 0xcc, 0xad, 0x11, 0x4b, 0x92, 0x04, 0x5d,
682 0xd7, 0xa7, 0xb6, 0x12, 0x30, 0x4d, 0x0d, 0xc0,
683 0xdf, 0x12, 0x4c, 0x91, 0xf9, 0x59, 0x73, 0xbc,
684 0x29, 0x64, 0x78, 0x3f, 0xc6, 0xd5, 0x80, 0xe8,
685 0xc8, 0x81, 0x18, 0xc7, 0xee, 0x8f, 0x9e, 0xad,
686 0x19, 0xc7, 0x69, 0x16, 0x55, 0x9d, 0x87, 0xc5,
687 0x04, 0x5f, 0x94, 0x0f, 0x21, 0xe9, 0xd2, 0x17,
688 0xcb, 0xe0, 0xd0, 0x4b, 0x1e, 0x0b, 0x61, 0xa9,
689 0xe1, 0xf1, 0xfd, 0x08, 0x71, 0xfc, 0x26, 0xee,
690 0x64, 0x1e, 0x12, 0x48, 0x42, 0xb5, 0x5a, 0x03,
691 0x3b, 0x3b, 0x0d, 0xd4, 0xeb, 0x2d, 0x07, 0x71,
692 0x92, 0xdc, 0x40, 0xcd, 0x37, 0x11, 0xf8, 0xfb,
693 0x3a, 0xc3, 0x81, 0x5b, 0x2d, 0x1d, 0xeb, 0xeb,
694 0xa2, 0x0f, 0xfc, 0x94, 0x52, 0x6c, 0x6f, 0xed,
695 0xa2, 0xd5, 0x6c, 0x81, 0x31, 0x2b, 0xd2, 0x55,
696 0x55, 0x15, 0x94, 0xca, 0x56, 0x71, 0x50, 0x59,
697 0x91, 0x46, 0x45, 0x41, 0xbc, 0xe3, 0x82, 0x08,
698 0x04, 0x8a, 0xa2, 0x60, 0x30, 0x18, 0x78, 0xc7,
699 0xda, 0x62, 0x9a, 0x00, 0x76, 0x43, 0xc4, 0x48,
700 0x0d, 0x80, 0x8d, 0x6f, 0x70, 0xab, 0x65, 0x8c,
701 0xd8, 0xd8, 0xee, 0xde, 0x1a, 0x57, 0x95, 0x0e,
702 0xaa, 0x1c, 0xe4, 0x5f, 0x07, 0x67, 0x3e, 0x87,
703 0x5b, 0xfc, 0xc1, 0x8e, 0xd0, 0x7d, 0x27, 0x11,
704 0xb6, 0x9a, 0xd6, 0x69, 0xe6, 0x2f, 0xe1, 0xe5,
705 0x3c, 0x5f, 0x12, 0x49, 0x38, 0x41, 0x7e, 0x93,
706 0x20, 0x40, 0x3a, 0xcf, 0xc9, 0xaf, 0x9d, 0x10,
707 0x87, 0x99, 0xd7, 0xc6, 0xce, 0x4e, 0x1d, 0xf5,
708 0x7a, 0x13, 0xa6, 0xc3, 0x5b, 0x1e, 0x3c, 0xdb,
709 0x67, 0x03, 0x76, 0x5c, 0xf1, 0x66, 0x04, 0xae,
710 0xaf, 0x6b, 0xae, 0x59, 0xbf, 0xd7, 0xed, 0xe1,
711 0xc5, 0xef, 0xbd, 0x82, 0x4e, 0xbb, 0x83, 0x72,
712 0xa5, 0x8c, 0xe5, 0xa5, 0x25, 0x90, 0x12, 0x81,
713 0x2c, 0x4b, 0x30, 0x4d, 0x0a, 0xd3, 0x34, 0x41,
714 0x0c, 0x02, 0x49, 0x12, 0x1d, 0x63, 0x9c, 0xb9,
715 0xce, 0xa4, 0x5c, 0x2e, 0xa3, 0xd5, 0x6a, 0xb9,
716 0xee, 0xed, 0x24, 0x0b, 0x83, 0x4e, 0x8d, 0x00,
717 0xb8, 0xd5, 0x80, 0x02, 0xcb, 0x81, 0x51, 0x2e,
718 0xf8, 0x2d, 0x02, 0x70, 0x6a, 0x00, 0x42, 0x82,
719 0xd9, 0x3f, 0x8b, 0xd3, 0x8c, 0xc5, 0x8c, 0x5b,
720 0xe7, 0xef, 0x1b, 0x77, 0xe6, 0x8c, 0x47, 0x0a,
721 0xe9, 0x9c, 0x66, 0xbc, 0x7d, 0xdd, 0x80, 0xb7,
722 0x81, 0x18, 0x9f, 0x71, 0xf8, 0x79, 0xfb, 0xe9,
723 0x42, 0x79, 0x29, 0x35, 0xb1, 0xb3, 0x53, 0xc7,
724 0xf6, 0x76, 0x0d, 0xdd, 0x6e, 0x3f, 0x80, 0x88,
725 0xf2, 0x07, 0x75, 0x12, 0x07, 0xa1, 0x8b, 0x00,
726 0x5a, 0xfe, 0x84, 0xa0, 0x37, 0xaf, 0xbc, 0x83,
727 0x4e, 0xbb, 0x33, 0xba, 0x58, 0x57, 0xcb, 0x3a,
728 0xbb, 0x0d, 0x1a, 0x1d, 0x86, 0x07, 0x7b, 0x9c,
729 0x80, 0xf6, 0xbb, 0x72, 0xb9, 0x34, 0xd5, 0x8c,
730 0xc0, 0xa9, 0xfa, 0x00, 0x7c, 0x1a, 0x00, 0xaf,
731 0x18, 0x88, 0x73, 0x66, 0xf1, 0x80, 0x7f, 0x30,
732 0x30, 0xd1, 0xef, 0x9b, 0x0e, 0x1f, 0x80, 0x98,
733 0xc8, 0xde, 0x8c, 0xaa, 0x41, 0xef, 0x74, 0xc0,
734 0xc4, 0x05, 0x6c, 0xd2, 0x80, 0x94, 0xec, 0x8e,
735 0x3e, 0x44, 0x6a, 0x27, 0x69, 0xb3, 0x11, 0xa3,
736 0xb4, 0x8a, 0x74, 0x7e, 0x13, 0xaf, 0xe9, 0xe2,
737 0xde, 0xb0, 0xdb, 0xed, 0xe1, 0xe6, 0xcd, 0x3d,
738 0xd4, 0x6a, 0x0d, 0x87, 0x86, 0x46, 0xa6, 0x0a,
739 0xec, 0xf8, 0x93, 0xd8, 0x98, 0x00, 0x1a, 0x9c,
740 0xea, 0xc0, 0x4e, 0x7f, 0x16, 0xa5, 0x74, 0x14,
741 0x11, 0x68, 0x07, 0x03, 0x39, 0x9d, 0x7b, 0x06,
742 0x35, 0xb8, 0x54, 0x5b, 0x2a, 0x97, 0x7d, 0xcf,
743 0x6a, 0x92, 0x65, 0xc1, 0xf6, 0xd5, 0x07, 0xc0,
744 0xd3, 0x00, 0x6c, 0x86, 0xe4, 0x39, 0x55, 0x9c,
745 0x51, 0x80, 0xa2, 0x48, 0x21, 0x8a, 0x4a, 0x40,
746 0xb8, 0x6c, 0xda, 0x12, 0x5e, 0x93, 0xb7, 0xad,
747 0xe3, 0xd9, 0xf4, 0x24, 0x86, 0x93, 0x8e, 0xbf,
748 0x6f, 0xd6, 0xec, 0x41, 0xde, 0x0c, 0x1b, 0x27,
749 0x37, 0x22, 0x69, 0x09, 0xaf, 0x46, 0xa3, 0x8d,
750 0x5b, 0xb7, 0xf6, 0x5c, 0x4b, 0x77, 0x59, 0xd7,
751 0xe9, 0xb3, 0x4a, 0xd4, 0xf1, 0x24, 0xc9, 0x11,
752 0x0e, 0xcc, 0x59, 0x09, 0xb8, 0xfb, 0x9e, 0xd3,
753 0xe8, 0xf7, 0x07, 0xd8, 0xdb, 0xad, 0x79, 0xc2,
754 0x81, 0xed, 0x44, 0x20, 0x3a, 0x2a, 0x77, 0xc7,
755 0xbd, 0xff, 0x0c, 0x28, 0x4d, 0xb9, 0x2a, 0xd0,
756 0xbe, 0xfa, 0x00, 0x14, 0x85, 0x5f, 0x0e, 0x2c,
757 0xc8, 0x9b, 0xda, 0x6a, 0x26, 0x2b, 0x06, 0xe2,
758 0x60, 0xd0, 0x48, 0xdb, 0x3a, 0x7a, 0x2c, 0xe5,
759 0x53, 0xc2, 0x2b, 0xc8, 0xe1, 0xe5, 0x5f, 0x61,
760 0xe0, 0x69, 0x18, 0x69, 0x0a, 0x8c, 0xc6, 0xf7,
761 0x84, 0x07, 0xdd, 0xa7, 0xbc, 0x4a, 0x78, 0x99,
762 0x26, 0xc5, 0xce, 0x4e, 0x0d, 0x3b, 0x3b, 0x75,
763 0xf4, 0xfb, 0xfa, 0x54, 0x80, 0x9d, 0xed, 0x58,
764 0xc4, 0xa3, 0x01, 0x30, 0xee, 0x58, 0x1c, 0xc7,
765 0xf2, 0x4b, 0x78, 0xe8, 0x43, 0x17, 0xd0, 0x68,
766 0x34, 0xb1, 0xbb, 0xbd, 0x07, 0x93, 0xd2, 0x51,
767 0x6b, 0x30, 0x49, 0x92, 0x20, 0x2b, 0x32, 0x64,
768 0x75, 0xdc, 0x08, 0x67, 0xa4, 0x89, 0x39, 0xee,
769 0x6f, 0x49, 0x9b, 0x6e, 0x55, 0xa0, 0x7d, 0xd5,
770 0x00, 0x7c, 0x04, 0xc0, 0xe2, 0x47, 0x01, 0x5a,
771 0x04, 0xe0, 0x5d, 0x33, 0x4d, 0x57, 0xc2, 0xcb,
772 0x09, 0xec, 0xb0, 0xe8, 0xba, 0x64, 0x51, 0x75,
773 0x71, 0x80, 0x1e, 0x14, 0x41, 0xc8, 0x62, 0x68,
774 0x09, 0xd1, 0x40, 0x0c, 0x3a, 0xdf, 0xb8, 0x59,
775 0x90, 0x7c, 0xcf, 0x3f, 0xe1, 0xda, 0xfc, 0x61,
776 0x79, 0x06, 0xd6, 0x12, 0x5e, 0x1d, 0xdb, 0xdb,
777 0x75, 0x98, 0xa6, 0x99, 0x0b, 0xc8, 0xf3, 0x04,
778 0x76, 0x5c, 0xcd, 0x49, 0x92, 0x38, 0x29, 0xc1,
779 0x9c, 0x5b, 0x54, 0xad, 0x2e, 0xa3, 0x5a, 0x5d,
780 0xf6, 0x3e, 0x3d, 0x8e, 0xdf, 0x83, 0x42, 0xf4,
781 0x38, 0xb2, 0xb5, 0x92, 0xc6, 0xd3, 0x60, 0xe7,
782 0x5f, 0x03, 0x70, 0x56, 0x03, 0xb2, 0xff, 0xba,
783 0xca, 0x81, 0x0d, 0x35, 0xff, 0xb0, 0x72, 0xe0,
784 0xce, 0x3c, 0x00, 0xcb, 0x04, 0x10, 0x23, 0x6d,
785 0xd5, 0xe0, 0x25, 0xa6, 0xe4, 0x9e, 0xff, 0x6c,
786 0xcb, 0x8d, 0xbc, 0xed, 0x69, 0x80, 0x96, 0x90,
787 0x6c, 0x60, 0x5a, 0x40, 0x25, 0x09, 0xce, 0x2d,
788 0xc8, 0x6f, 0x42, 0x22, 0xfc, 0x1c, 0xfe, 0xf8,
789 0x80, 0x30, 0x20, 0x0e, 0x06, 0x3a, 0x6e, 0xdc,
790 0xd8, 0x45, 0xad, 0xd6, 0x4c, 0x60, 0x72, 0xe4,
791 0x07, 0xec, 0xbc, 0x97, 0x07, 0x9d, 0x04, 0xd0,
792 0x6a, 0xe9, 0xb1, 0xfd, 0xa5, 0x41, 0x1a, 0x2d,
793 0xa3, 0x14, 0x10, 0xdc, 0x7e, 0x2c, 0x6f, 0x99,
794 0xfc, 0xa1, 0x96, 0x30, 0xff, 0x04, 0x60, 0x57,
795 0x03, 0x72, 0x0e, 0x04, 0x59, 0x91, 0x1d, 0xf6,
796 0xfe, 0x70, 0xbb, 0x18, 0x51, 0x80, 0xb6, 0x06,
797 0x20, 0x08, 0xa2, 0x63, 0x90, 0x92, 0x84, 0x83,
798 0x3d, 0xca, 0x7e, 0xcd, 0x12, 0x45, 0x98, 0xbc,
799 0x77, 0x5e, 0x16, 0x5f, 0x42, 0xf2, 0x75, 0xfa,
800 0x68, 0x52, 0x8c, 0x7f, 0xad, 0xfe, 0x7d, 0x7a,
801 0xbd, 0x01, 0x6e, 0xde, 0xdc, 0x41, 0xad, 0xd6,
802 0x1a, 0x81, 0x7a, 0xd2, 0x51, 0x7a, 0x59, 0x80,
803 0x1d, 0xd7, 0xe1, 0xe8, 0x0c, 0x5a, 0x6d, 0xc6,
804 0xc8, 0x07, 0x88, 0x0a, 0x09, 0xe6, 0x95, 0x07,
805 0xd7, 0x14, 0x65, 0x71, 0x4d, 0x00, 0x6f, 0x3a,
806 0xa7, 0x2c, 0xcb, 0xfe, 0xa4, 0xda, 0xd0, 0x28,
807 0x40, 0xc3, 0xa3, 0x01, 0x90, 0x18, 0x83, 0x3d,
808 0xc8, 0x96, 0x4f, 0x56, 0x28, 0x23, 0x4b, 0xbb,
809 0xea, 0xb4, 0x6b, 0xfc, 0xde, 0x53, 0x0b, 0x33,
810 0x73, 0xe2, 0xe7, 0xe7, 0x47, 0xdf, 0xef, 0xb4,
811 0xe4, 0x65, 0x01, 0x7f, 0x17, 0xf5, 0x7a, 0x2b,
812 0xc6, 0xbd, 0x9d, 0x2c, 0xb0, 0x27, 0xb1, 0x8a,
813 0xe0, 0x72, 0x02, 0x36, 0x52, 0xe6, 0x03, 0x78,
814 0xcb, 0x83, 0x7b, 0x44, 0x2b, 0x95, 0xa6, 0x5a,
815 0x15, 0x68, 0x5f, 0x7c, 0x00, 0xf6, 0x05, 0xf2,
816 0xd2, 0x83, 0x59, 0xcc, 0x62, 0x20, 0x7e, 0x0d,
817 0x20, 0x59, 0x32, 0x4f, 0xd0, 0x60, 0x8f, 0xa3,
818 0xd2, 0x27, 0xef, 0x8c, 0xcb, 0x1f, 0x09, 0xee,
819 0xe3, 0x12, 0x0e, 0xf3, 0xf3, 0x7e, 0x93, 0x05,
820 0xf8, 0x26, 0xa2, 0x9c, 0x81, 0xf9, 0x66, 0xfb,
821 0x39, 0xa5, 0xd3, 0xe9, 0xe1, 0xe6, 0xcd, 0x5d,
822 0x34, 0x9b, 0x5d, 0x1f, 0xd0, 0xf6, 0x6b, 0xb6,
823 0x9e, 0x84, 0x2f, 0x41, 0x10, 0xd8, 0xb0, 0xb4,
824 0x39, 0xe1, 0x56, 0x05, 0xf2, 0x82, 0xdf, 0x30,
825 0x4c, 0x18, 0x86, 0x01, 0x46, 0x99, 0xe5, 0x08,
826 0x1c, 0x16, 0x18, 0x1d, 0x39, 0x01, 0x3d, 0x04,
827 0xc0, 0xe0, 0x2e, 0x91, 0xb7, 0x70, 0xab, 0x00,
828 0xde, 0x01, 0x37, 0xae, 0x05, 0xe0, 0x60, 0x45,
829 0x16, 0xdd, 0x12, 0xcc, 0xd2, 0x00, 0xc0, 0xcd,
830 0x24, 0xf4, 0x0f, 0xfa, 0xe8, 0x42, 0x19, 0xe1,
831 0x80, 0xf3, 0xaa, 0xcc, 0xc9, 0xba, 0x0a, 0x05,
832 0xa9, 0xbf, 0xfe, 0x25, 0xc7, 0x74, 0x9a, 0x49,
833 0x90, 0xad, 0xce, 0xb1, 0x23, 0x53, 0xab, 0xf4,
834 0x41, 0x4d, 0x39, 0x06, 0x03, 0x1d, 0xb7, 0x6e,
835 0xed, 0xa2, 0x5e, 0x6f, 0x87, 0x94, 0x57, 0x9f,
836 0x3e, 0xb0, 0x27, 0xe9, 0x20, 0x14, 0x45, 0x06,
837 0xc3, 0x20, 0x81, 0x26, 0x00, 0x65, 0x14, 0xd7,
838 0x3e, 0xb8, 0x81, 0xed, 0xad, 0x1d, 0x00, 0x56,
839 0x64, 0x5f, 0xa9, 0x5c, 0x82, 0xa6, 0xa9, 0x50,
840 0x15, 0x05, 0x8a, 0xaa, 0x40, 0x96, 0x25, 0x08,
841 0xa2, 0x60, 0xf5, 0x0e, 0xf4, 0x0c, 0x01, 0x5e,
842 0x51, 0x10, 0x4c, 0xb0, 0x30, 0xe8, 0xbe, 0x05,
843 0x02, 0x31, 0xc6, 0xb8, 0x04, 0x10, 0xb7, 0x1a,
844 0x90, 0x15, 0x0a, 0x2c, 0xf8, 0xec, 0x6d, 0xe7,
845 0xc3, 0x72, 0xdf, 0x48, 0xc6, 0x01, 0x4c, 0x7e,
846 0x85, 0x3d, 0x82, 0x9b, 0x72, 0xe4, 0xaf, 0x99,
847 0xe4, 0xd3, 0xba, 0x8b, 0x84, 0x98, 0x13, 0x41,
848 0x1e, 0x7d, 0x7b, 0x66, 0xa3, 0x23, 0xe7, 0x5e,
849 0x72, 0x95, 0x7e, 0xbf, 0x82, 0x79, 0xf2, 0x31,
850 0x39, 0xac, 0x9a, 0x00, 0x82, 0xaf, 0x2c, 0x98,
851 0x0d, 0xe5, 0x57, 0x2e, 0xbd, 0x8a, 0xed, 0x5b,
852 0x3b, 0x10, 0x45, 0x01, 0x95, 0xa5, 0x25, 0x2b,
853 0x02, 0xd0, 0xb4, 0xdb, 0x84, 0x5b, 0x71, 0x01,
854 0x94, 0x5a, 0xd5, 0x81, 0x78, 0x5d, 0x82, 0xf9,
855 0x4b, 0xe3, 0x93, 0x0b, 0x04, 0x12, 0xa6, 0x01,
856 0xfe, 0x8b, 0x17, 0x2f, 0x6a, 0xb0, 0x6a, 0x20,
857 0xbb, 0x06, 0x58, 0x22, 0x0d, 0x80, 0xb9, 0x7b,
858 0x02, 0x48, 0x92, 0x55, 0x0f, 0x60, 0x9c, 0x17,
859 0x6f, 0xbd, 0x6c, 0x50, 0x7b, 0x5f, 0x94, 0x8e,
860 0x5f, 0xfc, 0x5e, 0xf5, 0xfc, 0xee, 0x3e, 0xde,
861 0x97, 0x35, 0xa3, 0xc3, 0xf7, 0x4a, 0xe2, 0x34,
862 0x0b, 0x7f, 0xf1, 0xcf, 0x21, 0xfe, 0xf1, 0xfc,
863 0xe7, 0x3c, 0x06, 0x3b, 0x71, 0x01, 0x3f, 0x68,
864 0xdf, 0x20, 0x31, 0x0c, 0x86, 0x1b, 0x37, 0x76,
865 0xf1, 0xc6, 0x1b, 0xef, 0xa1, 0x5e, 0x6f, 0x7a,
866 0xee, 0x01, 0xf1, 0xbd, 0x82, 0x7e, 0x37, 0x48,
867 0x4b, 0x8a, 0x7a, 0xf1, 0x81, 0xe9, 0x7e, 0x05,
868 0xef, 0x0f, 0xdf, 0xf9, 0xf2, 0xcf, 0x8f, 0x77,
869 0xbc, 0xf1, 0x7e, 0x76, 0x38, 0x70, 0x93, 0xd3,
870 0x1c, 0xa4, 0xdf, 0xeb, 0x63, 0xfb, 0x96, 0x35,
871 0xf3, 0x9b, 0x26, 0x05, 0x1b, 0x82, 0xdd, 0x79,
872 0x8f, 0x5d, 0x74, 0xea, 0x2b, 0x0a, 0xc2, 0x20,
873 0x7b, 0x0a, 0x83, 0x0e, 0xf7, 0x51, 0x7e, 0xf1,
874 0x17, 0x7f, 0x51, 0x9d, 0x5b, 0x0d, 0x60, 0x7d,
875 0x7d, 0x7d, 0x59, 0xd7, 0x75, 0xdf, 0xec, 0xc2,
876 0xd5, 0x00, 0x18, 0x3f, 0x13, 0x90, 0x81, 0xb9,
877 0xd4, 0x2e, 0x6b, 0x57, 0x77, 0xa0, 0x4a, 0xdc,
878 0x6e, 0xbc, 0x5e, 0x2d, 0x80, 0x37, 0xd3, 0x27,
879 0x9d, 0x6c, 0xe2, 0xf4, 0x21, 0x9c, 0x7c, 0xeb,
880 0xae, 0x24, 0x69, 0xb7, 0x61, 0x9a, 0x0e, 0xf3,
881 0xa8, 0xfe, 0xc0, 0xde, 0x5e, 0x13, 0x5b, 0x5b,
882 0x7b, 0x30, 0x0c, 0x33, 0xd6, 0x4c, 0x3e, 0x0b,
883 0xb3, 0xf5, 0x24, 0x4c, 0x8e, 0x51, 0x4d, 0x80,
884 0xa1, 0x13, 0xd0, 0xa9, 0xc4, 0x2b, 0xaa, 0x82,
885 0xca, 0x52, 0x19, 0xed, 0x56, 0x67, 0xf4, 0xfc,
886 0xec, 0x10, 0x60, 0x4a, 0xa9, 0x8f, 0x74, 0x29,
887 0x27, 0x1f, 0x40, 0x09, 0xa8, 0x0a, 0xb4, 0xbd,
888 0xbd, 0xbd, 0x0c, 0xa0, 0x3f, 0x97, 0x04, 0x60,
889 0x9a, 0xe6, 0x32, 0xaf, 0x2a, 0x2d, 0x2f, 0x92,
890 0xcf, 0xb5, 0x9d, 0x27, 0x24, 0xd8, 0x36, 0x01,
891 0xc6, 0xd5, 0x80, 0x82, 0x7b, 0xf2, 0xc5, 0x05,
892 0x62, 0x76, 0xa0, 0xc7, 0x3f, 0x40, 0x50, 0x11,
893 0xca, 0x78, 0x55, 0x79, 0xd3, 0x35, 0xc8, 0x48,
894 0x92, 0x9f, 0xcf, 0xf3, 0x79, 0xb4, 0x5a, 0x1d,
895 0xdc, 0xbc, 0xb9, 0x3b, 0x8a, 0xdc, 0x9b, 0xe5,
896 0x75, 0xfa, 0x69, 0x98, 0x1c, 0xf6, 0x90, 0xed,
897 0x74, 0xac, 0xd2, 0xdf, 0x76, 0xa7, 0x1f, 0x7b,
898 0xfb, 0x87, 0x3e, 0x74, 0x01, 0x6f, 0xbe, 0xf1,
899 0x0e, 0xb6, 0x6e, 0x6d, 0x8f, 0xd4, 0x7d, 0xab,
900 0x07, 0xc0, 0x90, 0x10, 0x28, 0x83, 0x40, 0xc8,
901 0xa8, 0xab, 0xb5, 0xf7, 0xc9, 0xc8, 0xb2, 0xcc,
902 0xad, 0xe0, 0x2c, 0x49, 0xd2, 0x32, 0x80, 0xed,
903 0xb9, 0x24, 0x00, 0x5d, 0xd7, 0xab, 0xb6, 0xc3,
904 0xce, 0xa9, 0xfe, 0xf3, 0x9c, 0x78, 0xa3, 0x38,
905 0x00, 0x16, 0x9c, 0x0b, 0x20, 0x8a, 0xfe, 0x72,
906 0x60, 0xe3, 0x87, 0xc5, 0x62, 0x0c, 0x8e, 0x2c,
907 0x1d, 0x64, 0xf9, 0xc0, 0x0c, 0x76, 0x1a, 0x92,
908 0x10, 0x20, 0x06, 0xd7, 0x22, 0x08, 0x3b, 0x87,
909 0x24, 0x0d, 0x32, 0xc2, 0xb2, 0x0c, 0xc3, 0xf2,
910 0x1b, 0x2c, 0x07, 0xdf, 0x38, 0x56, 0x3f, 0x49,
911 0x2a, 0xee, 0x22, 0x79, 0xfe, 0xbd, 0xbf, 0x69,
912 0x9b, 0x00, 0x94, 0x32, 0x74, 0x3a, 0x06, 0x96,
913 0x96, 0x64, 0xd7, 0x6d, 0x95, 0x65, 0x19, 0x67,
914 0xcf, 0x9d, 0xc1, 0x3d, 0x67, 0x4f, 0xa3, 0x5e,
915 0x6f, 0x80, 0x9a, 0x14, 0x84, 0x10, 0xc8, 0x8a,
916 0x02, 0x55, 0x51, 0x20, 0xc9, 0xa2, 0x05, 0x7e,
917 0x30, 0x98, 0xde, 0x32, 0xe4, 0xcc, 0xea, 0x93,
918 0xc1, 0xab, 0x0a, 0x34, 0xa9, 0x58, 0x80, 0x69,
919 0x39, 0x01, 0x97, 0xbd, 0x20, 0x91, 0x65, 0x99,
920 0xef, 0x1d, 0xb7, 0xd3, 0x25, 0x39, 0x20, 0xb5,
921 0x57, 0x01, 0xbc, 0x1d, 0x81, 0xdc, 0xc7, 0xce,
922 0x63, 0x89, 0x2e, 0x78, 0xd6, 0x0c, 0xde, 0x9e,
923 0x84, 0xee, 0x1b, 0x3f, 0xa6, 0x3e, 0xce, 0x6c,
924 0xcd, 0x12, 0x55, 0xd3, 0x89, 0x73, 0x0f, 0x1c,
925 0xe5, 0xa7, 0xb0, 0xb5, 0x55, 0x43, 0xad, 0xd6,
926 0xf6, 0x39, 0x3c, 0x67, 0x7d, 0x9d, 0x7e, 0x1a,
927 0x26, 0x87, 0x37, 0x16, 0x60, 0x44, 0x00, 0x9e,
928 0x5b, 0x2f, 0x08, 0x02, 0xd6, 0xd6, 0x56, 0x03,
929 0x46, 0x16, 0xf3, 0x9b, 0xbb, 0xc3, 0xfb, 0x2f,
930 0x8a, 0x22, 0x44, 0x51, 0xb4, 0x96, 0x0f, 0xdd,
931 0x35, 0x01, 0x96, 0xe7, 0x96, 0x00, 0x44, 0x51,
932 0xf4, 0x55, 0x04, 0xb6, 0x9b, 0x2e, 0xfa, 0x09,
933 0x20, 0x24, 0x19, 0xc8, 0x53, 0x0e, 0xcc, 0xbe,
934 0xeb, 0xee, 0xea, 0x32, 0x59, 0x67, 0xf4, 0xa0,
935 0x7d, 0xf3, 0x88, 0xa9, 0x0f, 0xaa, 0x7d, 0x47,
936 0x02, 0x54, 0x7a, 0x86, 0x2c, 0x11, 0x89, 0xfe,
937 0xfc, 0x7c, 0xc2, 0x59, 0x95, 0x18, 0xbf, 0xaf,
938 0xd7, 0x5b, 0xd8, 0xde, 0xae, 0x8f, 0xec, 0x7c,
939 0x5e, 0x9c, 0xc2, 0x3c, 0x03, 0x3b, 0x0f, 0x02,
940 0x73, 0x56, 0x05, 0x6a, 0x36, 0x07, 0xd8, 0x40,
941 0x39, 0xd1, 0x23, 0x72, 0x8e, 0x6d, 0xcb, 0x24,
942 0x64, 0x9e, 0xfe, 0x02, 0x02, 0x64, 0x59, 0x86,
943 0xed, 0x33, 0x1b, 0xf9, 0x12, 0x38, 0x45, 0x75,
944 0xe7, 0x86, 0x00, 0xbc, 0x45, 0x0d, 0xed, 0xfe,
945 0x69, 0xbc, 0x87, 0x6b, 0xc6, 0x08, 0x05, 0x16,
946 0x45, 0xe6, 0x32, 0x1f, 0xb2, 0xb4, 0x8a, 0x8e,
947 0xd3, 0x27, 0x2e, 0xaf, 0xda, 0x77, 0x61, 0x21,
948 0xb8, 0xf9, 0xe4, 0xe7, 0x47, 0xc5, 0x2b, 0xf0,
949 0x56, 0x3b, 0x08, 0xba, 0xdd, 0x3e, 0x6e, 0xdd,
950 0xda, 0x43, 0xaf, 0x37, 0x48, 0x38, 0x23, 0xce,
951 0xde, 0x3a, 0xfd, 0xa4, 0x4d, 0x0e, 0x37, 0x01,
952 0xe8, 0xa9, 0xc1, 0x3f, 0x32, 0x77, 0xbd, 0x9a,
953 0x83, 0x28, 0x8c, 0x02, 0xe4, 0xa6, 0xd1, 0x24,
954 0x74, 0xaa, 0x26, 0x80, 0xf3, 0xa2, 0x78, 0xeb,
955 0x9d, 0x3e, 0xb5, 0xc8, 0xab, 0x01, 0x34, 0x9d,
956 0x3e, 0x00, 0x31, 0x71, 0xb3, 0xc8, 0x60, 0x47,
957 0x5e, 0x3a, 0xdb, 0x3a, 0xaa, 0x2a, 0x6f, 0x92,
958 0xc1, 0x99, 0x2c, 0xba, 0x30, 0xaa, 0x8a, 0x0f,
959 0x89, 0x55, 0xc2, 0xcb, 0x56, 0xf7, 0x1b, 0x8d,
960 0xb6, 0xe3, 0x5c, 0xe7, 0x7b, 0x9d, 0x7e, 0xd2,
961 0x9a, 0x89, 0xdb, 0x04, 0x30, 0x52, 0x01, 0x7f,
962 0xe4, 0xe3, 0x0a, 0x88, 0x79, 0x29, 0x95, 0x4a,
963 0xa8, 0xd5, 0x6a, 0xde, 0x7b, 0xbb, 0x3c, 0xd7,
964 0x04, 0xe0, 0x1d, 0x7c, 0x5a, 0x49, 0x4b, 0x04,
965 0x84, 0x6e, 0xd7, 0x84, 0x69, 0xda, 0x76, 0x92,
966 0x39, 0xf2, 0xbe, 0xfa, 0x67, 0x55, 0x7e, 0x87,
967 0xa1, 0x6c, 0x3d, 0xef, 0x58, 0xea, 0x81, 0x1e,
968 0x5d, 0x39, 0x88, 0x25, 0x20, 0x87, 0xb8, 0x0d,
969 0x2f, 0x83, 0x2a, 0x09, 0x8f, 0x57, 0x1d, 0xea,
970 0xf5, 0x16, 0x76, 0x76, 0x1a, 0xc3, 0xa5, 0xa8,
971 0x49, 0x2d, 0xe9, 0x2d, 0x9e, 0x83, 0xd0, 0x49,
972 0x00, 0x61, 0xe1, 0xc0, 0x51, 0xe0, 0xb7, 0x09,
973 0x98, 0x37, 0x02, 0x4a, 0xe5, 0x92, 0xef, 0x39,
974 0x4f, 0x2a, 0x18, 0x68, 0x6a, 0x26, 0x80, 0xdb,
975 0x4e, 0x67, 0xdc, 0x82, 0xa0, 0xfc, 0xe2, 0x1d,
976 0xf6, 0xec, 0xef, 0xcc, 0x04, 0x74, 0x86, 0x01,
977 0xf3, 0x9b, 0x4f, 0x06, 0x45, 0xd2, 0x25, 0x2d,
978 0x93, 0x95, 0xb6, 0x72, 0x50, 0xf0, 0xe0, 0x9c,
979 0x4c, 0x9d, 0x3f, 0xaf, 0x5a, 0x1f, 0x74, 0x8d,
980 0xb6, 0x77, 0x3f, 0xdb, 0xb2, 0xde, 0x7c, 0x01,
981 0x3b, 0x4f, 0xcd, 0xc4, 0x67, 0x02, 0xa4, 0x04,
982 0xff, 0x68, 0x1c, 0x71, 0xf6, 0x2b, 0x97, 0x4a,
983 0xbc, 0xf1, 0xb7, 0x60, 0x26, 0x80, 0xaa, 0x24,
984 0x53, 0xff, 0x7d, 0xe5, 0xc0, 0xc4, 0x00, 0x80,
985 0xf2, 0xd4, 0x70, 0x12, 0x13, 0x80, 0xf9, 0x55,
986 0x0e, 0x0a, 0xcb, 0xf6, 0x0b, 0x26, 0x89, 0x3c,
987 0x6a, 0x11, 0x10, 0xf0, 0xc3, 0x9e, 0x19, 0xb6,
988 0xb6, 0x6a, 0x68, 0x36, 0xdb, 0x53, 0x75, 0x9a,
989 0xed, 0xe7, 0x6c, 0x3d, 0x09, 0x12, 0x73, 0xc6,
990 0xae, 0x85, 0xb5, 0x08, 0xf3, 0x41, 0x3b, 0x48,
991 0xb3, 0x74, 0xf7, 0x47, 0x1b, 0x99, 0x00, 0xd3,
992 0x2a, 0x0a, 0xb2, 0x6f, 0xcb, 0x80, 0x3c, 0x1f,
993 0x40, 0x9c, 0x86, 0x20, 0x63, 0x02, 0x90, 0x7d,
994 0x55, 0x6d, 0xe3, 0x98, 0x02, 0x93, 0xae, 0x1c,
995 0x14, 0x4e, 0x34, 0x84, 0x73, 0x6e, 0x3c, 0x40,
996 0xc7, 0x5d, 0xce, 0xe3, 0x03, 0xdd, 0x1b, 0x41,
997 0xd8, 0x6e, 0x77, 0xb1, 0xbd, 0x5d, 0x1b, 0x96,
998 0xd8, 0x26, 0x0b, 0xbd, 0x4e, 0x3f, 0x69, 0xcd,
999 0xc4, 0x45, 0x00, 0x1c, 0x13, 0x20, 0x6a, 0xd6,
1000 0xe7, 0x68, 0xc7, 0xbe, 0x78, 0x98, 0x12, 0xc7,
1001 0x3c, 0x9e, 0x6b, 0x13, 0x00, 0x9c, 0x5a, 0x00,
1002 0x49, 0x35, 0x00, 0x77, 0x26, 0x20, 0x73, 0xf8,
1003 0x00, 0x82, 0xc3, 0x65, 0xe3, 0x47, 0xd5, 0xe5,
1004 0x59, 0x39, 0x88, 0x84, 0x68, 0x14, 0x51, 0x19,
1005 0x7f, 0xd1, 0xe7, 0xe0, 0x5e, 0xd2, 0x0b, 0x1f,
1006 0xec, 0x86, 0x61, 0x95, 0xda, 0xee, 0x74, 0x7a,
1007 0x9e, 0xef, 0x17, 0x77, 0x9d, 0x7e, 0xd2, 0x24,
1008 0x16, 0x66, 0x02, 0x24, 0x05, 0xbf, 0x35, 0xe9,
1009 0x51, 0x08, 0xc3, 0x94, 0x1c, 0x7b, 0x53, 0x4d,
1010 0xf3, 0x9b, 0x00, 0xf3, 0xae, 0x01, 0x54, 0xbd,
1011 0x03, 0x59, 0xe5, 0x65, 0x3d, 0xd1, 0xb0, 0x44,
1012 0x20, 0xa7, 0x06, 0x80, 0x80, 0xa6, 0x20, 0xee,
1013 0xec, 0x3f, 0x1e, 0xa8, 0xf3, 0xaa, 0x1c, 0x14,
1014 0x06, 0xf4, 0xe8, 0xc1, 0x1e, 0xb4, 0xee, 0xef,
1015 0x7f, 0xcf, 0xaf, 0xca, 0xcb, 0xf7, 0x7d, 0x8c,
1016 0xf7, 0x21, 0xa8, 0xd7, 0xdb, 0xd8, 0xdb, 0xb3,
1017 0x4b, 0x6d, 0x93, 0x05, 0x03, 0xf6, 0xfe, 0x69,
1018 0x26, 0x4e, 0x0d, 0xc0, 0x39, 0x29, 0xa5, 0x01,
1019 0xff, 0x68, 0xcc, 0x8b, 0xee, 0x4d, 0x15, 0x4d,
1020 0xe1, 0x8d, 0xab, 0xf9, 0xf6, 0x01, 0x78, 0x41,
1021 0xe2, 0xaa, 0x07, 0xe8, 0x60, 0xc3, 0xa0, 0x9b,
1022 0xd8, 0x74, 0x11, 0x00, 0x73, 0xa4, 0x02, 0x67,
1023 0x1b, 0x24, 0x36, 0xd8, 0xe2, 0x94, 0xbe, 0x8e,
1024 0x7f, 0xbc, 0xf8, 0x0d, 0x32, 0x82, 0xd2, 0x7c,
1025 0x9d, 0x84, 0x15, 0x74, 0x1c, 0x9e, 0x6f, 0x43,
1026 0xd7, 0x8d, 0x61, 0xff, 0xbc, 0x01, 0xec, 0x6c,
1027 0xb6, 0x83, 0x3a, 0x5b, 0x4f, 0xe2, 0x7a, 0xad,
1028 0x8c, 0x40, 0x06, 0xd3, 0xb4, 0x6a, 0x02, 0xa4,
1029 0x05, 0xfe, 0x78, 0xcc, 0x9b, 0x60, 0x90, 0x5d,
1030 0x3b, 0x95, 0x54, 0xcd, 0x67, 0xb6, 0xce, 0xb5,
1031 0x09, 0xc0, 0xab, 0x05, 0x10, 0xab, 0x1a, 0x90,
1032 0x23, 0x19, 0xc8, 0x5b, 0x10, 0xd4, 0x32, 0x01,
1033 0xd2, 0x78, 0xd4, 0xb3, 0x03, 0x3b, 0x68, 0x26,
1034 0x8f, 0x5b, 0x0c, 0x34, 0xb8, 0x45, 0x39, 0x5f,
1035 0x33, 0x89, 0x33, 0x3e, 0x4d, 0x93, 0x0d, 0x5b,
1036 0x64, 0x77, 0x13, 0xd7, 0x2c, 0x98, 0x05, 0x60,
1037 0xcf, 0x93, 0x66, 0xe2, 0x24, 0x80, 0x2c, 0xe0,
1038 0x67, 0xf0, 0x67, 0x04, 0x82, 0x01, 0x8a, 0xa3,
1039 0x5f, 0xc6, 0xa4, 0xab, 0x02, 0x4d, 0xd5, 0x04,
1040 0x70, 0x5e, 0x90, 0xac, 0xc8, 0x1c, 0x36, 0x0c,
1041 0xce, 0x04, 0x6c, 0x7a, 0x4c, 0x00, 0x2b, 0x61,
1042 0x22, 0xae, 0x27, 0x3c, 0x59, 0x90, 0x4d, 0x58,
1043 0xb8, 0x6c, 0xd8, 0xd3, 0xf6, 0xce, 0xd6, 0xc1,
1044 0xbf, 0xcb, 0x77, 0x10, 0xc6, 0x59, 0xad, 0xe0,
1045 0x17, 0xe1, 0xd4, 0xb1, 0xb3, 0xe3, 0x0c, 0xe1,
1046 0x25, 0x33, 0x01, 0xea, 0x45, 0x35, 0x39, 0x24,
1047 0x09, 0x18, 0x0c, 0x38, 0xab, 0x00, 0x29, 0xa2,
1048 0x02, 0x79, 0x63, 0x5e, 0x55, 0xd5, 0xa9, 0x55,
1049 0x05, 0xda, 0xd7, 0x64, 0x20, 0xbf, 0x3d, 0x44,
1050 0x3d, 0x64, 0x38, 0xfe, 0xa7, 0xdd, 0x76, 0xd6,
1051 0x02, 0xb0, 0x53, 0x89, 0xf9, 0x40, 0x8f, 0xdf,
1052 0x7e, 0x2b, 0x7e, 0xb8, 0xac, 0xd7, 0x7f, 0xe0,
1053 0x05, 0x7a, 0x92, 0x75, 0x7a, 0x7e, 0xe2, 0x50,
1054 0xf2, 0x7d, 0x29, 0xa5, 0xd8, 0xd9, 0x69, 0x8c,
1055 0x9c, 0x7c, 0xf3, 0x0a, 0xec, 0x79, 0x33, 0x39,
1056 0xec, 0x60, 0xa0, 0x66, 0xd3, 0xc8, 0x04, 0xfe,
1057 0xd1, 0x98, 0xf7, 0xec, 0x3f, 0xcd, 0xaa, 0x40,
1058 0xfb, 0x62, 0x02, 0x00, 0x80, 0xc4, 0xa9, 0x05,
1059 0x60, 0xe7, 0xcb, 0x87, 0x65, 0x02, 0x02, 0xe3,
1060 0x0e, 0x2d, 0x41, 0xf9, 0xf5, 0x71, 0x40, 0x1d,
1061 0xbe, 0x4e, 0x1f, 0xe5, 0x8d, 0x8f, 0xb7, 0x4e,
1062 0xcf, 0x27, 0x9b, 0x7c, 0xaa, 0x10, 0xb7, 0x5a,
1063 0x5d, 0xd4, 0xeb, 0x2d, 0xab, 0xbc, 0x54, 0x4c,
1064 0xa7, 0xe3, 0xc1, 0x98, 0xad, 0x27, 0x6f, 0x72,
1065 0xd8, 0x2b, 0x01, 0x49, 0x7a, 0x03, 0x04, 0x8d,
1066 0xeb, 0xa8, 0xb2, 0x60, 0x93, 0x36, 0x01, 0x26,
1067 0x5e, 0x12, 0xec, 0xe2, 0xc5, 0x8b, 0x0a, 0x00,
1068 0xcd, 0xe3, 0xd0, 0x80, 0x14, 0xe0, 0x03, 0x08,
1069 0x6e, 0x0b, 0x66, 0xb8, 0x18, 0x98, 0x5f, 0x10,
1070 0x34, 0x38, 0xc6, 0xdf, 0x5f, 0x26, 0x2b, 0x5e,
1071 0x09, 0x30, 0xfe, 0xcb, 0x5d, 0x4a, 0x2b, 0xba,
1072 0x2c, 0x18, 0xe3, 0x90, 0x51, 0x70, 0x09, 0xaf,
1073 0x30, 0xff, 0x85, 0xae, 0x1b, 0xb8, 0x75, 0x6b,
1074 0xd7, 0xe3, 0xe1, 0x8f, 0x2a, 0x6b, 0x05, 0x6e,
1075 0x49, 0xac, 0x83, 0x50, 0xc2, 0x6b, 0x12, 0xd7,
1076 0x6a, 0xaf, 0x04, 0x38, 0x9b, 0xd5, 0xa6, 0x01,
1077 0x3f, 0x38, 0xfd, 0x23, 0x18, 0xd8, 0x88, 0x00,
1078 0x3c, 0xdf, 0x95, 0x7e, 0xfe, 0xe7, 0x7f, 0x5e,
1079 0x9e, 0x3b, 0x0d, 0xa0, 0x5a, 0xad, 0x2e, 0xf5,
1080 0xfb, 0x7d, 0xdf, 0x05, 0xf1, 0xeb, 0x01, 0x46,
1081 0xc7, 0x01, 0x58, 0xa5, 0x99, 0xfd, 0x03, 0x2c,
1082 0x48, 0x0d, 0x0f, 0x6a, 0x5a, 0x19, 0x54, 0x7b,
1083 0x34, 0xb8, 0x84, 0x17, 0xe3, 0x7a, 0xee, 0xdd,
1084 0xff, 0x27, 0x2d, 0xe1, 0x15, 0x7f, 0xf6, 0x67,
1085 0x8c, 0xa1, 0xd1, 0xe8, 0xa0, 0xd9, 0xec, 0x84,
1086 0x64, 0x0f, 0x16, 0xeb, 0xf4, 0x93, 0xbf, 0x56,
1087 0x4f, 0x3e, 0x40, 0x53, 0x87, 0xaa, 0x8a, 0xa9,
1088 0xc0, 0x6f, 0x8f, 0x79, 0xef, 0xf7, 0xbc, 0xca,
1089 0xc0, 0x8c, 0x31, 0xb4, 0x5a, 0xad, 0x25, 0x00,
1090 0x7b, 0x73, 0x45, 0x00, 0xfd, 0x7e, 0xbf, 0xca,
1091 0x03, 0x96, 0x7f, 0x06, 0x67, 0x11, 0x4d, 0x41,
1092 0xc6, 0xa9, 0xc0, 0x16, 0xab, 0x0b, 0x81, 0xc0,
1093 0x89, 0xea, 0x54, 0xeb, 0x75, 0x12, 0x06, 0x0d,
1094 0xb4, 0xe0, 0xf2, 0x5f, 0x41, 0x55, 0x88, 0xc3,
1095 0xb4, 0x11, 0x12, 0xb3, 0x2e, 0xbf, 0x7f, 0xdf,
1096 0xc1, 0xc0, 0xc4, 0xde, 0x5e, 0x13, 0xba, 0x6e,
1097 0x24, 0x1e, 0xc0, 0x07, 0x6d, 0x9d, 0x3e, 0x4f,
1098 0x09, 0x3a, 0x9e, 0x3b, 0x16, 0x40, 0xc7, 0xa1,
1099 0xc3, 0x5a, 0x7c, 0xf0, 0x7b, 0xff, 0xe5, 0xc4,
1100 0xbe, 0xc8, 0xb2, 0x14, 0x34, 0x4e, 0xaa, 0x73,
1101 0x47, 0x00, 0x84, 0x10, 0x57, 0x31, 0x10, 0xbb,
1102 0x16, 0x80, 0x3b, 0x99, 0xc7, 0x61, 0x0f, 0x05,
1103 0x11, 0xc0, 0xd0, 0x04, 0xb0, 0xec, 0x2f, 0x02,
1104 0x41, 0x20, 0x1e, 0x1f, 0x40, 0x9c, 0x66, 0x9c,
1105 0xce, 0x1b, 0x1a, 0x5d, 0xc2, 0xcb, 0xdf, 0x6e,
1106 0x2b, 0xbc, 0xfc, 0x57, 0x78, 0xbe, 0x7f, 0xf2,
1107 0xd6, 0x5d, 0x8c, 0x31, 0xd4, 0x6a, 0x2d, 0x9f,
1108 0x93, 0xaf, 0x58, 0xa7, 0xc7, 0x3e, 0x1d, 0xcb,
1109 0xae, 0x09, 0xe0, 0x20, 0x80, 0x80, 0x8c, 0xc0,
1110 0xb8, 0xf1, 0x01, 0x2e, 0xad, 0x97, 0x8d, 0xb5,
1111 0x63, 0xbb, 0x2a, 0x90, 0x53, 0x4c, 0xd3, 0xcc,
1112 0xdd, 0x0f, 0x30, 0x71, 0x02, 0x30, 0x0c, 0x63,
1113 0xd9, 0x2e, 0x80, 0xe8, 0x54, 0xff, 0x79, 0xb3,
1114 0x70, 0x78, 0x32, 0x90, 0xad, 0x01, 0xd8, 0xb1,
1115 0xd3, 0x71, 0x52, 0x63, 0xe3, 0xb5, 0xa6, 0xf2,
1116 0x83, 0x93, 0x44, 0x38, 0xe2, 0x48, 0xc0, 0x40,
1117 0xcf, 0xda, 0xba, 0x8b, 0x8c, 0xce, 0xa7, 0xd3,
1118 0xe9, 0xa3, 0x5e, 0x6f, 0xc7, 0x74, 0xf2, 0xcd,
1119 0xb6, 0xd3, 0x6c, 0x3f, 0x67, 0xeb, 0x49, 0x90,
1120 0xa2, 0x2c, 0x87, 0x67, 0x04, 0x26, 0x09, 0x0e,
1121 0x62, 0x1c, 0x27, 0xa0, 0x20, 0x08, 0x90, 0x24,
1122 0xc9, 0x45, 0x00, 0x93, 0x0a, 0x06, 0x9a, 0x38,
1123 0x01, 0x88, 0xa2, 0x58, 0xf5, 0xce, 0xec, 0x41,
1124 0xf5, 0x00, 0x69, 0x8c, 0xbe, 0x80, 0xce, 0x18,
1125 0x00, 0xe7, 0xc3, 0xe2, 0xab, 0xe2, 0xc9, 0x4a,
1126 0x84, 0x07, 0x13, 0x82, 0x77, 0x90, 0xb0, 0x10,
1127 0x5f, 0x40, 0x7c, 0x22, 0xe2, 0x69, 0x18, 0xa6,
1128 0x49, 0x51, 0xaf, 0xb7, 0xd0, 0xed, 0x0e, 0xb8,
1129 0xce, 0xa9, 0x83, 0x34, 0x5b, 0x67, 0x3b, 0xde,
1130 0xe4, 0x08, 0xd1, 0xa9, 0x01, 0x38, 0x9d, 0xd3,
1131 0x49, 0xc1, 0x1f, 0x34, 0xe6, 0x05, 0x51, 0x84,
1132 0x2c, 0xcb, 0xe8, 0xf5, 0x7a, 0x5e, 0xd3, 0xb9,
1133 0x3a, 0x77, 0x04, 0x60, 0x9a, 0xe6, 0xb2, 0xb7,
1134 0x16, 0x80, 0x24, 0x49, 0x20, 0x02, 0xbf, 0x1e,
1135 0x20, 0xf7, 0x26, 0x51, 0x36, 0x8a, 0x03, 0xb0,
1136 0x56, 0x00, 0xc8, 0xb0, 0x47, 0x1b, 0x42, 0x67,
1137 0xea, 0xe8, 0x27, 0x11, 0xbf, 0x2d, 0xb6, 0x37,
1138 0xde, 0x20, 0x99, 0x13, 0x2e, 0x5a, 0xc3, 0xb0,
1139 0x9c, 0x3c, 0x5d, 0xb4, 0xdb, 0xbd, 0x88, 0x12,
1140 0x61, 0xf3, 0xe7, 0x34, 0x9b, 0x0d, 0xbf, 0x44,
1141 0x7e, 0xf7, 0x4e, 0x96, 0x89, 0x43, 0x03, 0x18,
1142 0xa4, 0x02, 0x7e, 0x90, 0xd6, 0xcb, 0x60, 0x55,
1143 0xbc, 0x96, 0x24, 0x89, 0xe7, 0x08, 0x9c, 0x3f,
1144 0x0d, 0xc0, 0x99, 0xc5, 0x64, 0x5f, 0x90, 0xa6,
1145 0xa9, 0xdc, 0x47, 0x11, 0xb4, 0x0a, 0xd0, 0x69,
1146 0x1b, 0x23, 0x7b, 0xdf, 0xca, 0x03, 0x10, 0x53,
1147 0x15, 0xf9, 0x8c, 0x97, 0xf1, 0x17, 0x4f, 0xdd,
1148 0x4e, 0x1b, 0x51, 0xcc, 0xd3, 0x12, 0x7a, 0x3d,
1149 0x1d, 0x8d, 0x46, 0x7b, 0x98, 0xae, 0x1b, 0xa6,
1150 0x31, 0x14, 0x6a, 0xf8, 0x2c, 0x10, 0xa2, 0xab,
1151 0x2c, 0x58, 0xc6, 0x7c, 0x00, 0x5e, 0xec, 0x0b,
1152 0xe3, 0x93, 0x9a, 0x19, 0x00, 0x00, 0x20, 0x00,
1153 0x49, 0x44, 0x41, 0x54, 0x01, 0x81, 0xaa, 0xaa,
1154 0xbe, 0x31, 0x3a, 0x97, 0x04, 0xc0, 0x18, 0xab,
1155 0x3a, 0xeb, 0x9c, 0x03, 0x80, 0xaa, 0xc5, 0x2c,
1156 0x07, 0x36, 0x0a, 0x7a, 0xf1, 0x66, 0x02, 0xda,
1157 0x3e, 0x00, 0x16, 0x53, 0xa5, 0x4f, 0x74, 0xbe,
1158 0xa1, 0x76, 0x7b, 0x5c, 0x0d, 0xc3, 0x5d, 0xab,
1159 0x80, 0x9f, 0x39, 0x68, 0x18, 0x26, 0x1a, 0x8d,
1160 0xce, 0xa8, 0x02, 0x6c, 0x9a, 0x2a, 0xbc, 0xf3,
1161 0xe0, 0x34, 0x5b, 0x34, 0x13, 0x46, 0x92, 0x1c,
1162 0x8d, 0x53, 0xb2, 0xe6, 0x03, 0x78, 0x97, 0x01,
1163 0x87, 0x6f, 0xcb, 0x95, 0xb2, 0x6f, 0xcc, 0xcc,
1164 0xa5, 0x09, 0x40, 0x08, 0xf1, 0x65, 0x02, 0xf2,
1165 0xca, 0x81, 0xf9, 0xa2, 0xfa, 0x1c, 0xff, 0x36,
1166 0x9b, 0x7d, 0x07, 0x01, 0xd0, 0x84, 0x61, 0xb7,
1167 0x59, 0x5a, 0x6d, 0x25, 0xf5, 0x1f, 0x78, 0xfd,
1168 0x04, 0xc1, 0x9d, 0x80, 0x5a, 0xad, 0x2e, 0xba,
1169 0xdd, 0x41, 0xec, 0x02, 0x25, 0x07, 0x49, 0x0d,
1170 0x9f, 0xf5, 0x88, 0x44, 0x97, 0x13, 0xb0, 0x95,
1171 0x3e, 0x1f, 0xc0, 0xd6, 0x7a, 0x19, 0xf3, 0x8f,
1172 0x9c, 0x32, 0xa7, 0x2a, 0xd0, 0x5c, 0x6a, 0x00,
1173 0x94, 0xd2, 0x91, 0x0f, 0xc0, 0xbe, 0x20, 0xaf,
1174 0x7a, 0xe3, 0xb3, 0x85, 0x7c, 0x2d, 0xc1, 0x0c,
1175 0x17, 0xfb, 0x5a, 0x3d, 0x01, 0x78, 0x33, 0x74,
1176 0x96, 0x56, 0x5b, 0x24, 0x34, 0x25, 0x38, 0x98,
1177 0x24, 0xf8, 0x00, 0x0e, 0xca, 0xe1, 0xef, 0xf5,
1178 0x74, 0xb4, 0x5a, 0x9d, 0x91, 0xba, 0x7f, 0x10,
1179 0x9c, 0x66, 0xf3, 0x02, 0xec, 0xb8, 0x26, 0x07,
1180 0xb7, 0x2c, 0x58, 0x1a, 0x93, 0xd4, 0x76, 0x26,
1181 0x53, 0x6a, 0x15, 0xba, 0x74, 0x88, 0x56, 0x2a,
1182 0xf1, 0x76, 0x99, 0x5f, 0x1f, 0x80, 0xcb, 0x04,
1183 0x50, 0x43, 0x6a, 0x01, 0x78, 0xc0, 0xef, 0x74,
1184 0xb4, 0xd8, 0x3e, 0x00, 0x2b, 0x82, 0x99, 0x67,
1185 0x02, 0x44, 0xb5, 0xda, 0x4a, 0x92, 0x2b, 0xc0,
1186 0x07, 0x33, 0x3f, 0xdb, 0x2f, 0xba, 0xf5, 0xb6,
1187 0xae, 0x1b, 0x68, 0xb5, 0x3a, 0xd0, 0x75, 0x33,
1188 0xf1, 0xe0, 0x2d, 0xa2, 0xf4, 0x66, 0xeb, 0x5a,
1189 0x2d, 0x33, 0xd4, 0x8a, 0x26, 0x6d, 0x26, 0xcc,
1190 0x07, 0xf0, 0x8e, 0x6d, 0x30, 0x6b, 0xec, 0x8b,
1191 0x70, 0xc7, 0xc5, 0x94, 0x38, 0x55, 0x81, 0xe6,
1192 0xd6, 0x07, 0xe0, 0xb5, 0xb1, 0x79, 0x1a, 0x00,
1193 0xa5, 0x8c, 0x0b, 0x7e, 0xbf, 0x06, 0x60, 0x39,
1194 0x01, 0x29, 0x0d, 0xb3, 0xff, 0xfd, 0xeb, 0xf4,
1195 0xee, 0x44, 0x9e, 0x78, 0xbe, 0x03, 0x8e, 0x0d,
1196 0x16, 0x73, 0xd0, 0xb8, 0xed, 0xfc, 0x66, 0xb3,
1197 0x3b, 0x8a, 0xe2, 0x9b, 0xd4, 0x60, 0x2f, 0x66,
1198 0xeb, 0xe9, 0x9a, 0x1c, 0x76, 0x4a, 0x70, 0xdc,
1199 0xde, 0x00, 0x3e, 0xf0, 0x33, 0xaf, 0xf6, 0xeb,
1200 0x2d, 0x9b, 0xaf, 0x72, 0x7c, 0x52, 0xac, 0x3a,
1201 0x8f, 0x04, 0xe0, 0x33, 0x01, 0x94, 0x61, 0x2d,
1202 0x00, 0xe7, 0x72, 0xbd, 0x6d, 0x02, 0xf0, 0x3c,
1203 0xaa, 0xee, 0x62, 0x20, 0x80, 0x28, 0x86, 0x2d,
1204 0xc1, 0x45, 0xd5, 0x01, 0x60, 0x81, 0x01, 0x38,
1205 0xc1, 0x54, 0x1e, 0x14, 0x18, 0x14, 0xbc, 0xe6,
1206 0x6f, 0x2d, 0x5d, 0xf6, 0xd0, 0xef, 0xeb, 0x09,
1207 0x3a, 0xff, 0x1c, 0xac, 0x46, 0x9b, 0xf3, 0x7c,
1208 0xad, 0xa3, 0x9a, 0x00, 0x31, 0x7a, 0x03, 0x84,
1209 0x81, 0xdf, 0xe7, 0xff, 0x1a, 0xbe, 0xd5, 0x3c,
1210 0x35, 0x01, 0x18, 0x63, 0x13, 0xe9, 0x0f, 0xb8,
1211 0x2f, 0x4e, 0x40, 0x45, 0x51, 0xe0, 0x5d, 0x0d,
1212 0xa3, 0x61, 0x3d, 0x01, 0x9b, 0xba, 0xeb, 0xc6,
1213 0xfb, 0xed, 0x75, 0xbf, 0x0a, 0x6f, 0xad, 0x3c,
1214 0xc4, 0x5b, 0x97, 0x8f, 0x2a, 0xe1, 0x15, 0x16,
1215 0xe1, 0xc7, 0xd3, 0x16, 0x3a, 0x9d, 0x9e, 0xc3,
1216 0xc1, 0x57, 0x38, 0xcd, 0x16, 0xd1, 0xe4, 0xb0,
1217 0x96, 0x02, 0x89, 0xcb, 0x3c, 0x8d, 0xab, 0xf2,
1218 0x73, 0xfd, 0x5f, 0x9e, 0xcf, 0x9d, 0x2b, 0x65,
1219 0x73, 0x6d, 0x02, 0x80, 0x53, 0xc9, 0x44, 0x96,
1220 0x15, 0x7f, 0x52, 0x44, 0xcc, 0x9e, 0x00, 0x92,
1221 0x84, 0x51, 0xca, 0x67, 0x98, 0x6d, 0xcf, 0x58,
1222 0x78, 0x0b, 0xb0, 0xe4, 0x83, 0x33, 0xba, 0x92,
1223 0xf0, 0x60, 0xa0, 0xa3, 0xd3, 0xe9, 0xc5, 0x70,
1224 0xf0, 0x1d, 0xdc, 0x6a, 0x3a, 0x8b, 0x72, 0xad,
1225 0xb6, 0x23, 0xb0, 0x95, 0xa4, 0x39, 0x48, 0xc0,
1226 0x04, 0xc3, 0x33, 0x67, 0xa7, 0x55, 0x15, 0x68,
1227 0x2a, 0x26, 0x80, 0x97, 0xc9, 0xfc, 0xd5, 0x80,
1228 0x58, 0xa0, 0x4d, 0xef, 0x27, 0x00, 0xe6, 0x0b,
1229 0x05, 0xce, 0xa3, 0x75, 0x57, 0xf8, 0x4c, 0x1f,
1230 0xac, 0x49, 0x30, 0x06, 0xf4, 0xfb, 0x03, 0x74,
1231 0xbb, 0x03, 0xc7, 0x35, 0x90, 0xa9, 0x0d, 0xf6,
1232 0x62, 0x9d, 0x7e, 0x7f, 0xae, 0xd5, 0x8e, 0x05,
1233 0xe8, 0x74, 0x4c, 0x50, 0x3a, 0x2e, 0x53, 0x1f,
1234 0x47, 0xe5, 0xe7, 0x6a, 0x00, 0x9e, 0x0d, 0xf9,
1235 0x2b, 0x65, 0x73, 0xac, 0x01, 0xb8, 0xcb, 0x81,
1236 0x49, 0xbe, 0xbb, 0x12, 0x5e, 0x0b, 0x40, 0x77,
1237 0xdd, 0x78, 0xde, 0xcd, 0x8e, 0x56, 0xe9, 0xf9,
1238 0xb9, 0xfd, 0xee, 0xfd, 0xf8, 0xe0, 0xf7, 0x37,
1239 0x16, 0xb1, 0x8e, 0x3d, 0x18, 0xe8, 0x43, 0xe0,
1240 0xd3, 0x80, 0xa2, 0x20, 0x85, 0xd3, 0x6c, 0x51,
1241 0x49, 0xcc, 0x9e, 0xc3, 0xac, 0x98, 0x0e, 0x03,
1242 0xd5, 0xaa, 0x9c, 0x0a, 0xfc, 0xe3, 0xb1, 0xef,
1243 0x31, 0x93, 0x55, 0x6e, 0x55, 0xa0, 0xea, 0x3c,
1244 0x12, 0x80, 0xcf, 0x07, 0x20, 0x4a, 0xb2, 0x4f,
1245 0x2b, 0x8a, 0xdf, 0x16, 0xcc, 0xd6, 0x00, 0xc6,
1246 0xb3, 0xb5, 0x13, 0xb8, 0xce, 0x87, 0xe5, 0x4e,
1247 0xb6, 0x61, 0x1e, 0xf3, 0x20, 0xbc, 0x0f, 0xe0,
1248 0xd8, 0xf3, 0xef, 0x5f, 0x6a, 0xec, 0xf7, 0x0d,
1249 0xf4, 0x7a, 0xfa, 0x28, 0x7d, 0x79, 0x3a, 0x4b,
1250 0x7a, 0xc5, 0x3a, 0xfd, 0x2c, 0x99, 0x1c, 0xde,
1251 0x9a, 0x00, 0x36, 0x01, 0xc4, 0x51, 0xf9, 0x7d,
1252 0xe3, 0x6e, 0x14, 0x0e, 0xec, 0xf6, 0x93, 0x71,
1253 0xb4, 0xdb, 0xf9, 0xd2, 0x00, 0x2e, 0x5e, 0xbc,
1254 0x28, 0x31, 0xc6, 0x4a, 0x5e, 0x90, 0xc9, 0xb2,
1255 0xe4, 0x5f, 0xc1, 0x0f, 0x33, 0x01, 0x9a, 0x03,
1256 0x17, 0xf8, 0xbd, 0xeb, 0xec, 0x6e, 0x90, 0x26,
1257 0x5b, 0xf7, 0x0f, 0x76, 0xd4, 0xf9, 0x3d, 0xff,
1258 0xce, 0x19, 0xbf, 0x70, 0x9a, 0x1d, 0x6c, 0x12,
1259 0xb3, 0x08, 0x80, 0xb9, 0x26, 0xa8, 0x34, 0xe0,
1260 0xb7, 0x27, 0x3f, 0xef, 0xe6, 0x8a, 0xcc, 0xad,
1261 0x0a, 0x54, 0x7e, 0xfa, 0xe9, 0xa7, 0xc5, 0x2f,
1262 0x7d, 0xe9, 0x4b, 0xe6, 0x5c, 0x10, 0x00, 0x80,
1263 0x25, 0xe7, 0xdd, 0xb7, 0x2f, 0x48, 0xe4, 0x15,
1264 0x04, 0x0d, 0xd2, 0x00, 0x1c, 0x5d, 0x81, 0xec,
1265 0x15, 0x00, 0x7f, 0x39, 0xb0, 0xe8, 0xfc, 0xfc,
1266 0x60, 0x87, 0x60, 0x30, 0x49, 0x10, 0x42, 0x60,
1267 0x9a, 0x56, 0x47, 0xdd, 0xc1, 0x40, 0x1f, 0xd9,
1268 0xf8, 0x93, 0x5d, 0xd2, 0x2b, 0xd6, 0xe9, 0xe7,
1269 0xe1, 0x5a, 0xdd, 0x35, 0x01, 0x06, 0x89, 0x54,
1270 0x7e, 0xff, 0xd8, 0x77, 0x13, 0x87, 0x55, 0x17,
1271 0x50, 0xe6, 0x69, 0xa7, 0x64, 0x88, 0xa9, 0xfa,
1272 0x5c, 0x10, 0x80, 0x24, 0x49, 0xcb, 0xa6, 0x69,
1273 0xfa, 0x8a, 0x81, 0xb8, 0xca, 0x81, 0xb1, 0x10,
1274 0x13, 0xc0, 0x93, 0x0c, 0x64, 0xd5, 0x02, 0x08,
1275 0x1e, 0x5c, 0x7c, 0xcf, 0xbf, 0xdb, 0x1f, 0xe0,
1276 0x7d, 0xf8, 0x41, 0x95, 0x7a, 0x0c, 0x83, 0xa2,
1277 0xdf, 0xd7, 0xa1, 0xeb, 0xe6, 0xd4, 0x96, 0xf3,
1278 0x16, 0xd9, 0x69, 0xb6, 0x68, 0x24, 0xe6, 0x32,
1279 0x01, 0x1a, 0xd9, 0xc2, 0x81, 0xad, 0x7c, 0x00,
1280 0xf7, 0xce, 0xd2, 0xb0, 0x66, 0x86, 0x57, 0xdb,
1281 0x1c, 0x56, 0x05, 0x9a, 0x0f, 0x02, 0xa0, 0x94,
1282 0x56, 0xbd, 0x76, 0xf5, 0xa8, 0x1a, 0x50, 0x58,
1283 0x30, 0x84, 0xe7, 0x66, 0x36, 0x9b, 0xe3, 0x5a,
1284 0x00, 0xb6, 0xfa, 0xef, 0xdd, 0x7e, 0xfc, 0xf0,
1285 0x49, 0xc0, 0x6c, 0xce, 0xf7, 0x05, 0xb8, 0xd5,
1286 0x7d, 0x86, 0x7e, 0x5f, 0xc7, 0x60, 0x60, 0xb8,
1287 0x08, 0x29, 0x7c, 0x60, 0x15, 0x4e, 0xb3, 0x83,
1288 0x68, 0x72, 0x58, 0x35, 0x01, 0xcc, 0xf1, 0x04,
1289 0x95, 0x35, 0x17, 0xc0, 0x23, 0xa2, 0x28, 0x42,
1290 0x92, 0x24, 0x0c, 0x06, 0x03, 0x97, 0x06, 0x4b,
1291 0x29, 0xcd, 0xd5, 0x11, 0x38, 0x69, 0x02, 0xe0,
1292 0x2e, 0x01, 0xf2, 0x22, 0xef, 0x18, 0xa3, 0x5c,
1293 0x16, 0xb5, 0xda, 0x82, 0x8d, 0x4d, 0x00, 0x77,
1294 0x59, 0x67, 0x78, 0xc0, 0x1c, 0xee, 0x0b, 0xe0,
1295 0x9b, 0x08, 0x80, 0x69, 0x9a, 0x18, 0x0c, 0x9c,
1296 0xb3, 0x3d, 0x39, 0x40, 0xc0, 0x2e, 0x4c, 0x8e,
1297 0x78, 0xd7, 0x4b, 0x3c, 0x04, 0xe0, 0x30, 0x01,
1298 0x12, 0x86, 0x03, 0xbb, 0xfc, 0x05, 0x8c, 0x1f,
1299 0x07, 0x20, 0x0d, 0x8b, 0x82, 0x0c, 0x06, 0x83,
1300 0x89, 0x3a, 0x02, 0x27, 0x4a, 0x00, 0xde, 0x82,
1301 0xa0, 0x63, 0x13, 0xc0, 0x1f, 0x8f, 0x4f, 0x19,
1302 0xe3, 0x82, 0xdf, 0x34, 0x19, 0x7a, 0x3d, 0x73,
1303 0xc8, 0x8a, 0x51, 0xe0, 0x0c, 0x8f, 0xfc, 0x73,
1304 0xda, 0xfb, 0xa6, 0x49, 0x3d, 0xa0, 0x1f, 0x1f,
1305 0xa3, 0x70, 0x9a, 0x15, 0x26, 0x47, 0xb4, 0x79,
1306 0x3b, 0x7e, 0x9f, 0x24, 0x1c, 0xd8, 0x0b, 0x7e,
1307 0x9f, 0xf9, 0x3b, 0xfc, 0x4c, 0x94, 0x24, 0xc8,
1308 0xb2, 0xcc, 0xf3, 0x5d, 0xcd, 0x0f, 0x01, 0x98,
1309 0xa6, 0x59, 0xf5, 0x0e, 0x08, 0xab, 0x1c, 0x18,
1310 0xa7, 0xa4, 0xb7, 0xb3, 0x72, 0xb0, 0x83, 0x09,
1311 0x5a, 0x2d, 0x7d, 0x74, 0x13, 0x24, 0x89, 0x44,
1312 0xfa, 0x00, 0x82, 0x3e, 0xb7, 0xda, 0x6c, 0x53,
1313 0xe8, 0xba, 0x09, 0x5d, 0x37, 0x86, 0xd1, 0x7a,
1314 0x24, 0xf5, 0xa0, 0x2d, 0x9c, 0x66, 0x07, 0xdb,
1315 0xe4, 0xf0, 0x99, 0x00, 0x49, 0x80, 0xef, 0x51,
1316 0x56, 0x19, 0x65, 0xee, 0xc4, 0x98, 0xa1, 0x09,
1317 0xe0, 0x75, 0x96, 0x0f, 0xab, 0x02, 0xcd, 0x8f,
1318 0x09, 0x20, 0x08, 0xc2, 0xb2, 0xb7, 0x5f, 0x9f,
1319 0xaa, 0xf2, 0xcb, 0x81, 0x8d, 0xb6, 0xf3, 0x65,
1320 0x02, 0xba, 0xa3, 0x00, 0x6d, 0x0d, 0x80, 0x9f,
1321 0x9f, 0xef, 0x77, 0xd6, 0x51, 0x6a, 0x75, 0xd3,
1322 0xd1, 0x75, 0xd3, 0xe3, 0x50, 0x21, 0x85, 0xd3,
1323 0xac, 0x30, 0x39, 0x52, 0x5f, 0xab, 0xb3, 0x7d,
1324 0x5f, 0xd6, 0x7c, 0x00, 0x5e, 0x20, 0x90, 0x40,
1325 0x08, 0x34, 0x6d, 0xf2, 0x5d, 0x82, 0x27, 0xee,
1326 0x03, 0xf0, 0x96, 0x03, 0x73, 0x5e, 0x94, 0x87,
1327 0xd9, 0xf8, 0x99, 0x80, 0xbe, 0x28, 0x40, 0x21,
1328 0x70, 0xd6, 0xb7, 0x55, 0x7c, 0xd3, 0xa4, 0x30,
1329 0x4d, 0x13, 0x86, 0x61, 0xc2, 0x34, 0xa9, 0xa3,
1330 0xdc, 0x36, 0x59, 0x78, 0x60, 0x17, 0x26, 0xc7,
1331 0x74, 0xae, 0xd5, 0x5e, 0x91, 0x62, 0xcc, 0x9d,
1332 0xae, 0x1e, 0x47, 0xe5, 0xe7, 0x8e, 0x7f, 0xf8,
1333 0x13, 0xd5, 0x4b, 0xa5, 0xf2, 0x7c, 0x9b, 0x00,
1334 0x00, 0xaa, 0xfe, 0x4c, 0x40, 0xd5, 0x07, 0xdc,
1335 0xd0, 0x4c, 0xc0, 0x96, 0xee, 0xb3, 0xbb, 0xbc,
1336 0x4b, 0x7a, 0x94, 0xd2, 0x11, 0xd8, 0x4d, 0x93,
1337 0xc6, 0x2c, 0xf2, 0x59, 0x38, 0xcd, 0xa6, 0xe9,
1338 0x34, 0x5b, 0xb4, 0x6b, 0x25, 0xc4, 0x1a, 0x8f,
1339 0xba, 0xce, 0xef, 0x0d, 0x10, 0x17, 0xfc, 0xae,
1340 0x19, 0xde, 0x73, 0xa2, 0x5a, 0x49, 0xe3, 0x6d,
1341 0x57, 0x9d, 0x27, 0x02, 0x58, 0xf6, 0x5e, 0xa4,
1342 0xa6, 0xa9, 0xbe, 0x04, 0x9c, 0xf0, 0x7e, 0x00,
1343 0xfe, 0x4c, 0x40, 0x4a, 0x19, 0x4c, 0x93, 0x07,
1344 0x78, 0xff, 0x52, 0x60, 0x31, 0x83, 0x15, 0x26,
1345 0xc7, 0xa4, 0xae, 0x55, 0x92, 0x08, 0x74, 0x9d,
1346 0x45, 0x37, 0x07, 0x89, 0x53, 0x1e, 0x9c, 0x52,
1347 0x10, 0x8f, 0xcd, 0x5f, 0x2e, 0x95, 0xe6, 0xdb,
1348 0x04, 0x70, 0xd6, 0x02, 0xe0, 0xd7, 0x03, 0xb4,
1349 0xbf, 0x8b, 0x9b, 0x08, 0x64, 0xcd, 0xfe, 0x9d,
1350 0x4e, 0xdf, 0x13, 0xf3, 0x5f, 0xac, 0xd3, 0x17,
1351 0x26, 0xc7, 0xf4, 0x9f, 0xad, 0x2c, 0x13, 0x74,
1352 0xbb, 0xcc, 0x97, 0x12, 0x9c, 0x26, 0x2a, 0x90,
1353 0x32, 0xe6, 0x6a, 0xd5, 0x6d, 0x55, 0xce, 0xd2,
1354 0xbc, 0xe0, 0x77, 0x95, 0xd9, 0x9f, 0x79, 0x02,
1355 0x60, 0x8c, 0xf9, 0x8b, 0x81, 0x8c, 0xb2, 0x9c,
1356 0x62, 0xf6, 0x04, 0x74, 0x54, 0x03, 0xb2, 0x34,
1357 0x80, 0x62, 0x06, 0x2b, 0x48, 0x6c, 0x36, 0x4c,
1358 0x0e, 0x3b, 0x25, 0xb8, 0xe9, 0xe8, 0x0e, 0x94,
1359 0x36, 0x24, 0xd8, 0x59, 0x14, 0xc4, 0x3e, 0x86,
1360 0x56, 0xd2, 0x7c, 0x09, 0x6a, 0xf3, 0x46, 0x00,
1361 0x55, 0xaf, 0x0a, 0x63, 0x65, 0x39, 0x31, 0x97,
1362 0x0e, 0x10, 0x9a, 0x09, 0xd8, 0x70, 0x6a, 0x00,
1363 0x02, 0x82, 0x52, 0x79, 0x8b, 0x19, 0xac, 0x30,
1364 0x39, 0xf2, 0x7d, 0xb6, 0xd1, 0xc7, 0xb3, 0x53,
1365 0x82, 0x5b, 0x2d, 0x3d, 0x75, 0x22, 0xd0, 0x78,
1366 0x12, 0x64, 0x5e, 0xc3, 0x61, 0xe4, 0x30, 0x9f,
1367 0x64, 0x5d, 0xc0, 0xa9, 0xf8, 0x00, 0x5c, 0xb5,
1368 0x00, 0xec, 0x72, 0x60, 0x1e, 0xf5, 0x87, 0x63,
1369 0x44, 0x01, 0x00, 0xda, 0x6d, 0xc3, 0x75, 0xc3,
1370 0xe3, 0x3e, 0xd4, 0x62, 0x06, 0x2b, 0x4c, 0x8e,
1371 0x49, 0x1f, 0xcf, 0x6e, 0x11, 0x66, 0x18, 0x14,
1372 0xbd, 0x9e, 0x09, 0x4d, 0x13, 0x53, 0x81, 0xdf,
1373 0xc2, 0x80, 0xe9, 0xdb, 0x55, 0xd3, 0xb4, 0xf9,
1374 0x5e, 0x05, 0xe0, 0x55, 0x30, 0x51, 0x7c, 0xd5,
1375 0x80, 0x38, 0xb1, 0xd0, 0xae, 0x3c, 0x00, 0x77,
1376 0x41, 0xd0, 0x62, 0x06, 0x2b, 0x4c, 0x8e, 0x59,
1377 0xb9, 0x77, 0xce, 0xa1, 0xdc, 0x6c, 0xe8, 0xd0,
1378 0x54, 0x31, 0x1d, 0x4e, 0xc0, 0xdc, 0xe9, 0xf0,
1379 0xb6, 0xbf, 0x4c, 0x51, 0xbc, 0x78, 0x9a, 0x2f,
1380 0x02, 0x80, 0xa7, 0x82, 0x89, 0x55, 0x0b, 0x40,
1381 0xe6, 0x3a, 0x40, 0x82, 0xd4, 0x27, 0xe7, 0x2a,
1382 0x80, 0xb3, 0x29, 0xe3, 0xc1, 0x9c, 0xc1, 0x0e,
1383 0xb6, 0x1a, 0x3e, 0x6b, 0xf7, 0x4e, 0x96, 0x05,
1384 0xc7, 0x44, 0xa5, 0xe3, 0xc8, 0x11, 0x2d, 0x15,
1385 0xf8, 0x61, 0x67, 0xb1, 0x7a, 0x3b, 0x68, 0x95,
1386 0xfc, 0x85, 0x41, 0x91, 0x73, 0x55, 0xa0, 0xe9,
1387 0x9b, 0x00, 0x3c, 0x0d, 0x20, 0x24, 0x11, 0xc8,
1388 0x6e, 0xbd, 0x64, 0xad, 0xbb, 0x92, 0x05, 0x1d,
1389 0xe8, 0x07, 0xc9, 0xe4, 0x98, 0xaf, 0x7b, 0x17,
1390 0x36, 0x4e, 0x9c, 0x04, 0x90, 0x34, 0x1f, 0xc0,
1391 0x09, 0x7e, 0x6b, 0x12, 0xa4, 0xbe, 0x39, 0x50,
1392 0x91, 0x27, 0x5f, 0x15, 0x68, 0xe2, 0x04, 0xe0,
1393 0xb5, 0x61, 0x5c, 0x04, 0x60, 0x2f, 0x11, 0x52,
1394 0x7e, 0x22, 0x10, 0x00, 0xb4, 0x5b, 0xee, 0x62,
1395 0x20, 0xf3, 0x03, 0xec, 0xc2, 0x69, 0xb6, 0xe8,
1396 0xf7, 0xce, 0xd9, 0x25, 0xb8, 0xd5, 0x34, 0x92,
1397 0x01, 0xdf, 0x33, 0xe1, 0xd9, 0xd1, 0x80, 0x2e,
1398 0x73, 0x59, 0x91, 0x27, 0xde, 0x1f, 0x70, 0x62,
1399 0x04, 0x70, 0xf1, 0xe2, 0x45, 0x41, 0xd7, 0xf5,
1400 0x25, 0xaf, 0x09, 0x20, 0xd9, 0x8b, 0xf9, 0x2e,
1401 0x13, 0x80, 0xf2, 0x6f, 0x90, 0xc3, 0x07, 0x60,
1402 0x27, 0x02, 0x1d, 0xcc, 0xd9, 0x7a, 0xbf, 0x4c,
1403 0x8e, 0xe2, 0xde, 0x85, 0x89, 0xa2, 0x88, 0x89,
1404 0x35, 0x00, 0xe7, 0xac, 0xef, 0xfa, 0x9c, 0xb3,
1405 0x14, 0x6e, 0xc7, 0x01, 0x78, 0xcc, 0x00, 0xbb,
1406 0xca, 0x16, 0x9b, 0x69, 0x02, 0xe8, 0x74, 0x3a,
1407 0x15, 0xd9, 0x61, 0xb4, 0x0f, 0x3b, 0x9b, 0x40,
1408 0xe4, 0x66, 0x02, 0x32, 0x2e, 0xf8, 0xad, 0x1b,
1409 0x6b, 0xc4, 0xd6, 0x00, 0x0a, 0xa7, 0xd9, 0xbc,
1410 0x01, 0x7b, 0xbe, 0xcd, 0x35, 0xa7, 0x4f, 0x2a,
1411 0x76, 0x42, 0x50, 0x44, 0xfb, 0x39, 0xb7, 0xb6,
1412 0x2c, 0xf1, 0xaa, 0x02, 0x09, 0x3f, 0xf8, 0x83,
1413 0x3f, 0x58, 0x79, 0xee, 0xb9, 0xe7, 0x5a, 0x33,
1414 0x4d, 0x00, 0xb2, 0x2c, 0xfb, 0x62, 0x00, 0x24,
1415 0x49, 0x02, 0x11, 0x05, 0xae, 0x0f, 0x20, 0x2a,
1416 0x17, 0xc0, 0x0e, 0x03, 0x2e, 0xd4, 0xf0, 0x62,
1417 0xb6, 0x9e, 0x15, 0x93, 0xc3, 0x4d, 0x00, 0x46,
1418 0x6a, 0xf0, 0x5b, 0x5a, 0xb0, 0xa7, 0xd1, 0x2c,
1419 0xb3, 0xf0, 0x22, 0x8a, 0xe2, 0x88, 0x00, 0x6c,
1420 0x1c, 0x55, 0xab, 0xd5, 0x2a, 0x80, 0xd9, 0x26,
1421 0x00, 0x67, 0x5b, 0xf0, 0xb1, 0xcd, 0x24, 0x41,
1422 0x20, 0x82, 0xd7, 0xfc, 0x81, 0x19, 0x16, 0x08,
1423 0x34, 0x2a, 0x07, 0x46, 0xf6, 0x79, 0x70, 0x16,
1424 0x4e, 0xb3, 0x22, 0xac, 0xda, 0x4b, 0x00, 0x82,
1425 0x6f, 0x9c, 0x26, 0x05, 0xbe, 0x73, 0x12, 0xf4,
1426 0x9a, 0xc6, 0x76, 0x4d, 0x00, 0x5d, 0xd7, 0x5d,
1427 0x1a, 0xc2, 0x60, 0x30, 0xc8, 0xcd, 0x0f, 0x30,
1428 0x31, 0x02, 0xe0, 0x35, 0x05, 0xb5, 0x8a, 0x81,
1429 0x10, 0x4f, 0x5f, 0x40, 0xc6, 0xb5, 0x7f, 0xac,
1430 0x0b, 0x35, 0x31, 0x18, 0x98, 0xc3, 0x9b, 0xbd,
1431 0x68, 0xad, 0xb6, 0xf6, 0x7f, 0x06, 0x5b, 0x04,
1432 0x35, 0x7c, 0x3f, 0x4d, 0x0e, 0x45, 0x21, 0xa1,
1433 0x3e, 0x80, 0xb8, 0xe0, 0xe7, 0x99, 0x00, 0x0c,
1434 0x80, 0x28, 0x5b, 0x75, 0x01, 0xbd, 0xdf, 0xe5,
1435 0xd9, 0x24, 0x74, 0x62, 0x04, 0x20, 0x08, 0x02,
1436 0xa7, 0x23, 0x90, 0x6c, 0x69, 0x00, 0x9e, 0xea,
1437 0x27, 0x41, 0x25, 0xbb, 0xdd, 0x6d, 0xc1, 0x83,
1438 0x4b, 0x81, 0x15, 0x4e, 0xb3, 0xd9, 0x00, 0xf6,
1439 0x41, 0x33, 0x39, 0x14, 0x45, 0x08, 0x34, 0x01,
1440 0x92, 0x80, 0x1f, 0xb0, 0xfc, 0x60, 0x5e, 0x0a,
1441 0x90, 0x04, 0xc9, 0x72, 0x9a, 0xfb, 0x89, 0xa2,
1442 0x3a, 0xf3, 0x04, 0xc0, 0x5b, 0xae, 0x10, 0x45,
1443 0x71, 0x58, 0xd0, 0x23, 0x5e, 0x5b, 0xb0, 0x96,
1444 0xc3, 0xb1, 0x22, 0xcb, 0x24, 0xd3, 0x00, 0x2b,
1445 0x9c, 0x66, 0x45, 0x8c, 0x43, 0xde, 0xd7, 0x4a,
1446 0x88, 0xd5, 0xaa, 0xde, 0x34, 0x99, 0xbf, 0x39,
1447 0x48, 0x42, 0x1f, 0x3d, 0xd7, 0x07, 0x20, 0x8f,
1448 0x09, 0x60, 0x52, 0x19, 0x81, 0x93, 0x8c, 0x03,
1449 0xf0, 0xd5, 0x02, 0x50, 0x14, 0xc5, 0xf7, 0xb0,
1450 0x58, 0x98, 0x06, 0xd0, 0x74, 0x6a, 0x00, 0x93,
1451 0x07, 0x76, 0xe1, 0x34, 0x2b, 0xae, 0x35, 0xe9,
1452 0xf5, 0xca, 0xb2, 0x45, 0x00, 0xa3, 0xe6, 0x20,
1453 0x29, 0x17, 0xe7, 0x98, 0x5d, 0x16, 0xcc, 0x71,
1454 0x08, 0x41, 0x10, 0xa0, 0x28, 0xfe, 0x0e, 0x41,
1455 0xce, 0x6a, 0xdb, 0x33, 0x4b, 0x00, 0x84, 0x90,
1456 0xaa, 0x5d, 0xea, 0xcb, 0x16, 0x4d, 0xd3, 0x02,
1457 0x2e, 0x9c, 0xeb, 0x3d, 0x41, 0xd3, 0x95, 0x0a,
1458 0x9c, 0x5e, 0x03, 0x28, 0x9c, 0x66, 0x85, 0xc9,
1459 0x31, 0xa9, 0x6b, 0x95, 0x65, 0x82, 0x5e, 0x0f,
1460 0x68, 0xb5, 0xcc, 0x4c, 0x2b, 0xf3, 0xa3, 0x7c,
1461 0x00, 0xcf, 0x49, 0xa8, 0x9c, 0x12, 0x7a, 0x73,
1462 0x63, 0x02, 0x78, 0x99, 0x6b, 0x94, 0xde, 0xe8,
1463 0xb1, 0x7d, 0x78, 0xe0, 0x07, 0xc6, 0x51, 0x80,
1464 0xf6, 0x8d, 0x2e, 0x66, 0xb0, 0xc2, 0xe4, 0x98,
1465 0xb5, 0x67, 0x6b, 0x8f, 0xcb, 0x38, 0x71, 0x00,
1466 0x61, 0xe0, 0x07, 0x1b, 0x16, 0x05, 0xf1, 0x9c,
1467 0xac, 0xb3, 0x2a, 0xd0, 0x42, 0x98, 0x00, 0xfe,
1468 0x54, 0x60, 0x7f, 0x4d, 0xf4, 0x91, 0x09, 0xe0,
1469 0x20, 0x80, 0xad, 0x2d, 0x13, 0xfd, 0x3e, 0x9b,
1470 0xe0, 0xe9, 0x66, 0x19, 0xec, 0x93, 0xfd, 0xcd,
1471 0xfc, 0x07, 0xfa, 0xfe, 0x9c, 0x73, 0xfa, 0xf3,
1472 0x9b, 0xfc, 0x85, 0xa5, 0x25, 0xb1, 0xc1, 0x80,
1473 0xf9, 0x26, 0xab, 0x44, 0xc0, 0x77, 0x9a, 0xfd,
1474 0x8c, 0x02, 0xee, 0xba, 0x40, 0xd0, 0xb4, 0x52,
1475 0x24, 0xb6, 0x66, 0x9e, 0x00, 0x46, 0xe5, 0xc0,
1476 0x7c, 0xea, 0x0c, 0x0b, 0x4c, 0x04, 0x02, 0x80,
1477 0x4e, 0x67, 0xdc, 0x04, 0xf5, 0xea, 0x55, 0x13,
1478 0x57, 0xaf, 0x9a, 0x28, 0xa4, 0x90, 0x59, 0x94,
1479 0x6e, 0x97, 0x82, 0x52, 0x36, 0x6c, 0x7a, 0x13,
1480 0x7f, 0xd6, 0xf7, 0x4e, 0x92, 0xf0, 0x14, 0x16,
1481 0x29, 0x95, 0xb5, 0x89, 0x6a, 0x00, 0xc2, 0x04,
1482 0x4d, 0x00, 0xdf, 0x32, 0xa0, 0x55, 0x0f, 0x90,
1483 0xc1, 0xd9, 0x9e, 0x9b, 0xd7, 0x11, 0xc8, 0x96,
1484 0x87, 0x1e, 0x5e, 0x87, 0x9a, 0x32, 0xc7, 0xba,
1485 0x90, 0x42, 0xa6, 0x29, 0x4f, 0x3c, 0x79, 0x24,
1486 0x13, 0xf8, 0x81, 0x61, 0x69, 0x3c, 0x37, 0x3c,
1487 0x82, 0x34, 0x80, 0xf9, 0x5b, 0x06, 0xb4, 0x4d,
1488 0x00, 0xaf, 0xad, 0x1f, 0x14, 0x04, 0xc4, 0xc0,
1489 0x70, 0xef, 0xd9, 0x35, 0x7c, 0xf9, 0x6b, 0x7f,
1490 0x09, 0xbb, 0x7b, 0xfd, 0xa0, 0x3b, 0x19, 0x7a,
1491 0x9b, 0x63, 0x3c, 0x09, 0x64, 0x3a, 0x02, 0x8b,
1492 0xf1, 0xa0, 0x33, 0x9c, 0x5e, 0xe4, 0x31, 0xb2,
1493 0xec, 0xcf, 0x92, 0x1d, 0x25, 0xcb, 0xfe, 0x2c,
1494 0xf3, 0xef, 0x23, 0x73, 0xc9, 0x2d, 0x96, 0x43,
1495 0xee, 0x4c, 0xd0, 0x12, 0x9f, 0x24, 0x12, 0xdc,
1496 0x7d, 0xa6, 0x9a, 0x7a, 0x7f, 0xaf, 0xa6, 0xec,
1497 0xbc, 0xcc, 0x80, 0x3e, 0x1a, 0xf3, 0x63, 0x02,
1498 0x38, 0x2f, 0x4a, 0x51, 0x94, 0x00, 0xb5, 0x27,
1499 0xf8, 0x41, 0x6d, 0x6c, 0x56, 0xb0, 0xb1, 0x59,
1500 0x89, 0x3d, 0x80, 0x58, 0x7c, 0x64, 0x65, 0x1b,
1501 0x2c, 0x59, 0xf6, 0x67, 0xd3, 0x01, 0x6f, 0x1e,
1502 0xe0, 0x67, 0x99, 0xc1, 0xcf, 0xf2, 0x03, 0x3f,
1503 0xcb, 0x17, 0xb8, 0x89, 0x8f, 0x31, 0xe1, 0xfd,
1504 0x79, 0x29, 0xc1, 0x9a, 0xaa, 0xce, 0xad, 0x0f,
1505 0xa0, 0x1a, 0x5a, 0x0b, 0xc0, 0xa9, 0xf6, 0xe4,
1506 0x04, 0xde, 0x45, 0x01, 0x7f, 0x56, 0xcd, 0x21,
1507 0x0f, 0xcd, 0x83, 0x7b, 0x9c, 0x2c, 0xb3, 0x76,
1508 0xd6, 0x99, 0x7b, 0xc1, 0xc1, 0xcf, 0x9b, 0x0c,
1509 0x01, 0x40, 0xd5, 0xb4, 0xf9, 0x34, 0x01, 0xc0,
1510 0x59, 0x05, 0x70, 0x12, 0x00, 0xf3, 0x5c, 0xf4,
1511 0xc2, 0x83, 0xbf, 0x98, 0xf5, 0xf7, 0x4f, 0xe5,
1512 0x9f, 0x03, 0xf0, 0x03, 0xde, 0x88, 0x58, 0xbb,
1513 0x8f, 0x86, 0x32, 0x9f, 0x1a, 0x80, 0xd3, 0x4e,
1514 0xb1, 0x41, 0x2e, 0xcb, 0x32, 0x77, 0x19, 0x30,
1515 0x0b, 0xf0, 0xf2, 0x00, 0x7e, 0x1e, 0x33, 0xf7,
1516 0xac, 0x82, 0xff, 0x1f, 0xfe, 0xea, 0x3f, 0xc2,
1517 0x1d, 0xa7, 0xee, 0xc0, 0x91, 0x23, 0x87, 0xf1,
1518 0xe0, 0xc3, 0x0f, 0xe0, 0x6b, 0x5f, 0xfe, 0x8f,
1519 0x90, 0x24, 0x09, 0xe7, 0xce, 0xdf, 0x07, 0x49,
1520 0x92, 0xf0, 0xc7, 0xcf, 0x7d, 0x1d, 0x3f, 0xf7,
1521 0xa9, 0x9f, 0xc5, 0xbf, 0xf9, 0x57, 0xff, 0x16,
1522 0x27, 0x4f, 0x9e, 0xc0, 0x72, 0x75, 0x19, 0xf5,
1523 0x5a, 0x1d, 0x6b, 0xeb, 0x6b, 0x78, 0xfc, 0xc9,
1524 0x0f, 0x1f, 0x58, 0xf0, 0xef, 0x87, 0xe6, 0xe1,
1525 0x5b, 0x05, 0x80, 0xb7, 0x91, 0x4e, 0xfe, 0x04,
1526 0x30, 0xb1, 0x55, 0x00, 0xdb, 0x04, 0x08, 0xaf,
1527 0x07, 0xc8, 0x42, 0x7b, 0x02, 0x4c, 0x6b, 0xd6,
1528 0xcf, 0x02, 0xfe, 0xc8, 0xfd, 0xf7, 0x79, 0xe6,
1529 0x17, 0x44, 0x11, 0x77, 0x9f, 0x39, 0x8d, 0x0f,
1530 0x3e, 0xb8, 0x8a, 0x3f, 0xfb, 0xd6, 0xb7, 0xf1,
1531 0xf8, 0x93, 0x8f, 0xe1, 0xc7, 0xff, 0xfa, 0x5f,
1532 0xc5, 0x1f, 0x3f, 0xf7, 0x75, 0x00, 0x40, 0xa9,
1533 0xa4, 0xe1, 0x3b, 0xdf, 0xfe, 0x2e, 0x00, 0xe0,
1534 0x87, 0xfe, 0xc2, 0x27, 0xf0, 0xe2, 0x0b, 0x2f,
1535 0xe1, 0xfa, 0xf5, 0x1b, 0x78, 0xec, 0x89, 0x47,
1536 0xf7, 0xdf, 0xde, 0xcf, 0x6a, 0x32, 0x64, 0x01,
1537 0xef, 0x3e, 0xec, 0xcf, 0x33, 0x01, 0x7c, 0x8e,
1538 0xf3, 0x39, 0x31, 0x01, 0x08, 0x63, 0xcc, 0x55,
1539 0x0e, 0x8c, 0x10, 0x32, 0xce, 0x6c, 0x62, 0xce,
1540 0xae, 0x40, 0x6c, 0x5f, 0xc1, 0xbf, 0xe8, 0x2a,
1541 0xbf, 0x28, 0x08, 0x38, 0x76, 0x6c, 0x13, 0x8f,
1542 0xfc, 0xc0, 0xc3, 0xf8, 0xe6, 0x37, 0xbe, 0x85,
1543 0x9b, 0x37, 0x6f, 0xa2, 0x54, 0xd2, 0xb0, 0xb2,
1544 0x62, 0x8d, 0xa1, 0xfb, 0xce, 0x9d, 0xc5, 0x9b,
1545 0x57, 0xde, 0xb2, 0x06, 0x83, 0x2c, 0xe1, 0xcc,
1546 0x3d, 0x77, 0x63, 0x65, 0x75, 0x05, 0x04, 0x24,
1547 0xdb, 0x39, 0x14, 0xf6, 0x7e, 0x1a, 0xad, 0xd9,
1548 0x77, 0xfe, 0x01, 0x04, 0xb0, 0x34, 0xd3, 0x1a,
1549 0xc0, 0xaf, 0xfc, 0xca, 0xaf, 0x94, 0x01, 0x88,
1550 0xce, 0x0b, 0x13, 0x04, 0xc1, 0xca, 0x04, 0xf4,
1551 0x17, 0x39, 0x0c, 0x1e, 0xc0, 0x2c, 0x23, 0x70,
1552 0xb3, 0x3a, 0xeb, 0x16, 0xc0, 0xde, 0xff, 0xe8,
1553 0xc7, 0x3e, 0x82, 0xd3, 0x77, 0xdf, 0x85, 0x4a,
1554 0xa5, 0x82, 0x4f, 0xfc, 0xd0, 0x53, 0x10, 0x45,
1555 0x11, 0xaf, 0xbf, 0xfe, 0x06, 0x7e, 0xe2, 0x27,
1556 0x9f, 0xc6, 0xc6, 0xc6, 0xed, 0x38, 0x79, 0xc7,
1557 0x09, 0xfc, 0xf0, 0x8f, 0xfc, 0x77, 0x78, 0xf0,
1558 0xa1, 0x0b, 0x00, 0x80, 0x53, 0x77, 0xde, 0x81,
1559 0x8d, 0x8d, 0xa3, 0x53, 0x9f, 0xf5, 0xb3, 0x80,
1560 0x37, 0xeb, 0xfe, 0xb3, 0x00, 0x7e, 0x60, 0xb8,
1561 0x24, 0xce, 0xdc, 0xa1, 0x00, 0x92, 0xe4, 0x4f,
1562 0x09, 0x06, 0x20, 0xfd, 0xe8, 0x8f, 0xfe, 0x68,
1563 0x79, 0x66, 0x35, 0x00, 0x67, 0xa4, 0x92, 0x0d,
1564 0x70, 0x51, 0x14, 0x21, 0x04, 0x94, 0x03, 0xf3,
1565 0x11, 0x42, 0x61, 0xef, 0xe7, 0xb6, 0xff, 0x53,
1566 0x9f, 0xf8, 0x98, 0xeb, 0x19, 0x7c, 0xe2, 0x93,
1567 0x4f, 0x8d, 0xf5, 0xc8, 0xd5, 0xb1, 0x26, 0x79,
1568 0xfc, 0xc4, 0x31, 0x30, 0xc6, 0x70, 0xfa, 0xf4,
1569 0x5d, 0xe1, 0xc4, 0x5c, 0xd8, 0xfb, 0xb9, 0xef,
1570 0x3f, 0x2a, 0x9c, 0xc3, 0xb9, 0xa3, 0xb2, 0x2c,
1571 0x73, 0x73, 0x23, 0x86, 0x18, 0xeb, 0xcc, 0xaa,
1572 0x09, 0xe0, 0x8b, 0x01, 0xa0, 0x94, 0x0e, 0x6b,
1573 0x01, 0xf8, 0xef, 0x13, 0xa5, 0x14, 0xed, 0x56,
1574 0x1b, 0xba, 0x61, 0x00, 0x01, 0x26, 0xc1, 0xd4,
1575 0x54, 0xfe, 0x09, 0x12, 0x47, 0x1e, 0xe4, 0x31,
1576 0xb1, 0x25, 0xbe, 0xc4, 0xfb, 0x23, 0x3f, 0xf0,
1577 0xcf, 0xb1, 0xca, 0x8f, 0xcc, 0xfb, 0x03, 0xa2,
1578 0x24, 0xa2, 0x52, 0xa9, 0x40, 0x96, 0xfd, 0xea,
1579 0xbe, 0x24, 0x89, 0x5c, 0x32, 0xee, 0xf7, 0xfb,
1580 0xcb, 0x00, 0x6e, 0xce, 0x24, 0x01, 0x50, 0x4a,
1581 0xab, 0x4e, 0xd6, 0x62, 0x8c, 0x8d, 0x08, 0x80,
1582 0x79, 0x9e, 0x98, 0x20, 0x88, 0xa8, 0xed, 0xd5,
1583 0xd0, 0xef, 0xf7, 0xb3, 0x8f, 0xeb, 0x05, 0xb7,
1584 0xf7, 0xb1, 0x20, 0x4b, 0x7c, 0xb9, 0x92, 0x71,
1585 0x26, 0xf0, 0xef, 0x37, 0x79, 0x0c, 0x65, 0x00,
1586 0xf4, 0x7b, 0x7d, 0x1c, 0x3f, 0x71, 0xc2, 0x77,
1587 0x43, 0x45, 0x49, 0x82, 0x69, 0x72, 0x73, 0x60,
1588 0x72, 0x71, 0x04, 0x4e, 0xca, 0x04, 0x90, 0xbc,
1589 0x1a, 0x80, 0x61, 0x18, 0xc3, 0x0b, 0xf1, 0x04,
1590 0x07, 0x49, 0x32, 0x5a, 0xad, 0x16, 0x18, 0x9b,
1591 0x0c, 0x70, 0xf3, 0x99, 0xb9, 0x17, 0x65, 0x7d,
1592 0x1f, 0xf9, 0x80, 0x6e, 0xce, 0x55, 0x7e, 0xcc,
1593 0x80, 0xe6, 0xe1, 0x15, 0x1d, 0xb0, 0x1c, 0xaf,
1594 0xde, 0x6a, 0x59, 0xd4, 0x0c, 0x32, 0xc7, 0xa4,
1595 0x99, 0x25, 0x00, 0xc6, 0x58, 0x93, 0xf7, 0x79,
1596 0xaf, 0xd7, 0x45, 0xa9, 0xe4, 0x8e, 0x6c, 0x52,
1597 0x55, 0x0d, 0x84, 0x10, 0xf4, 0x7a, 0xbd, 0xb4,
1598 0xc8, 0x98, 0xe0, 0xac, 0x9f, 0x0f, 0xa2, 0x66,
1599 0x21, 0x9e, 0x3f, 0x3b, 0x78, 0xf3, 0x00, 0x3f,
1600 0xf6, 0x1d, 0x78, 0xb9, 0x3c, 0x8b, 0x09, 0x64,
1601 0xa5, 0x4b, 0xa2, 0x84, 0x52, 0xa9, 0xec, 0xc1,
1602 0x11, 0xd0, 0x69, 0x77, 0x83, 0x26, 0xd9, 0xfa,
1603 0xcc, 0x12, 0x80, 0x69, 0x9a, 0x7b, 0xa2, 0x28,
1604 0xba, 0x4c, 0x00, 0x00, 0xb8, 0x79, 0xf3, 0x26,
1605 0xd6, 0xd6, 0xd6, 0x5c, 0x23, 0x42, 0x14, 0x44,
1606 0xdc, 0x7d, 0xfa, 0x1e, 0xbc, 0xf8, 0xe2, 0x0b,
1607 0x30, 0x4d, 0x63, 0x3e, 0x54, 0xfe, 0x3c, 0x06,
1608 0x1b, 0xcb, 0x7c, 0x81, 0xe9, 0xa1, 0xbb, 0x9f,
1609 0x21, 0xbd, 0xfb, 0xa8, 0xf2, 0x23, 0xb3, 0x97,
1610 0x1f, 0x13, 0x01, 0xbf, 0x20, 0x0a, 0x38, 0x7b,
1611 0xef, 0x59, 0x08, 0x02, 0xf1, 0x69, 0xc2, 0xef,
1612 0xbf, 0xff, 0x5e, 0x90, 0x99, 0xbd, 0x97, 0x8b,
1613 0xb6, 0x8e, 0xc9, 0x08, 0xf9, 0xe5, 0x5f, 0xfe,
1614 0xe5, 0xab, 0x00, 0x36, 0x9c, 0xea, 0xcb, 0xe9,
1615 0xbb, 0xef, 0xc2, 0x5f, 0xfb, 0xf1, 0xa7, 0x2d,
1616 0xaf, 0x26, 0xf3, 0x6b, 0x07, 0xbb, 0xb5, 0x5d,
1617 0xf4, 0xfa, 0xdd, 0xc2, 0xde, 0xc7, 0x22, 0x85,
1618 0xf4, 0xe6, 0x48, 0x1c, 0x73, 0xbc, 0xc4, 0x17,
1619 0x30, 0x8b, 0x43, 0x55, 0x55, 0xac, 0xae, 0xac,
1620 0x42, 0x92, 0xf8, 0x4d, 0x73, 0xff, 0xd9, 0x3f,
1621 0xfd, 0x1d, 0xbc, 0xf6, 0xea, 0xeb, 0xde, 0xaf,
1622 0x3e, 0xf8, 0xea, 0x57, 0xbf, 0x7a, 0x62, 0x66,
1623 0x35, 0x00, 0x6b, 0xd2, 0x67, 0x5f, 0x01, 0xf0,
1624 0x73, 0xce, 0x0f, 0xdf, 0xbc, 0xf2, 0x16, 0xae,
1625 0x5f, 0xbb, 0x8e, 0xcd, 0xcd, 0x4d, 0xdf, 0x0e,
1626 0xaa, 0xa6, 0x61, 0xe3, 0xe8, 0xe6, 0xc8, 0x61,
1627 0x18, 0x38, 0x8c, 0x22, 0xc7, 0x03, 0xcb, 0xa8,
1628 0x7e, 0x86, 0xc0, 0x7f, 0x62, 0xe0, 0x65, 0x11,
1629 0x33, 0x0d, 0x4b, 0x41, 0x62, 0x9c, 0x0d, 0x12,
1630 0x4c, 0xa2, 0x79, 0x98, 0x0c, 0x2c, 0x83, 0xbd,
1631 0xcd, 0x12, 0x4c, 0xb7, 0x2c, 0x46, 0x5a, 0x38,
1632 0x4b, 0xc9, 0x44, 0x2c, 0xd3, 0xf9, 0x87, 0xed,
1633 0x48, 0x86, 0xf5, 0x03, 0x48, 0xe0, 0x2f, 0xbf,
1634 0xf9, 0xe6, 0x5b, 0x78, 0xfd, 0xb5, 0x37, 0x78,
1635 0xc4, 0xf1, 0xe5, 0xdc, 0x4c, 0x8f, 0x09, 0x11,
1636 0x00, 0x08, 0x21, 0x5f, 0x62, 0x8c, 0xfd, 0x9c,
1637 0xd7, 0x0c, 0xf8, 0xf7, 0xff, 0xee, 0x0f, 0xf0,
1638 0x73, 0x9f, 0xfa, 0x5b, 0x28, 0x39, 0x0a, 0x1d,
1639 0x38, 0x07, 0x1b, 0x21, 0x04, 0xa2, 0x28, 0xc6,
1640 0x1c, 0xf3, 0x2c, 0x8a, 0x85, 0x92, 0x30, 0x56,
1641 0x26, 0x7f, 0x52, 0x1e, 0xda, 0x43, 0xbc, 0x7d,
1642 0x59, 0x8c, 0xc3, 0xb1, 0x4c, 0xb3, 0x6f, 0xa2,
1643 0x59, 0x97, 0x73, 0xdf, 0x58, 0x0c, 0x9f, 0x01,
1644 0xcb, 0x15, 0x78, 0x2c, 0xc6, 0xa9, 0xa5, 0x39,
1645 0x9f, 0xf1, 0xac, 0xcf, 0x48, 0xfa, 0xf3, 0x88,
1646 0x47, 0x54, 0xee, 0xfd, 0x1b, 0xcd, 0x06, 0xbe,
1647 0xf8, 0x7b, 0xbf, 0xcf, 0x1d, 0x97, 0x94, 0xd2,
1648 0x3f, 0xc8, 0x0b, 0xa7, 0x13, 0x2b, 0xb7, 0xf3,
1649 0xfc, 0xf3, 0xcf, 0xbf, 0xf9, 0xc4, 0x13, 0x4f,
1650 0xfc, 0x08, 0x63, 0xec, 0xb8, 0x5b, 0xd5, 0xef,
1651 0xe1, 0xed, 0xb7, 0xdf, 0xc1, 0x3d, 0xf7, 0x9c,
1652 0x81, 0xac, 0x28, 0xb1, 0x46, 0xc5, 0xa4, 0x40,
1653 0x3f, 0x1e, 0x63, 0x2c, 0x13, 0xe8, 0xb3, 0xa8,
1654 0xec, 0xf1, 0x56, 0x28, 0x58, 0xdc, 0xab, 0xcf,
1655 0xa4, 0x72, 0xc7, 0x06, 0x5d, 0x20, 0xe8, 0xd3,
1656 0x68, 0x6c, 0x69, 0xcf, 0x83, 0x45, 0x3c, 0xd3,
1657 0xac, 0x24, 0xc4, 0xc0, 0xd8, 0x74, 0x41, 0x6f,
1658 0xcb, 0xf6, 0xf6, 0x36, 0xfe, 0xf9, 0x3f, 0xfd,
1659 0xbf, 0xb0, 0xb3, 0xb3, 0xcb, 0xdb, 0xe1, 0xcf,
1660 0xbe, 0xf6, 0xb5, 0xaf, 0xfd, 0xfd, 0x99, 0x27,
1661 0x00, 0x00, 0x78, 0xfc, 0xf1, 0xc7, 0xaf, 0x00,
1662 0xf8, 0x19, 0x5b, 0xcf, 0xb1, 0xc1, 0xd9, 0x6a,
1663 0xb5, 0x70, 0xe9, 0xd2, 0xcb, 0x58, 0x5b, 0x5b,
1664 0xc3, 0xf2, 0xf2, 0x32, 0x24, 0x51, 0x9c, 0x3a,
1665 0xe8, 0x13, 0x3b, 0xa7, 0xd2, 0xf8, 0x0c, 0x32,
1666 0x45, 0x34, 0xb2, 0x74, 0x2a, 0x7b, 0xd6, 0x38,
1667 0xf4, 0xd4, 0xa0, 0xe7, 0xa3, 0x8b, 0xa5, 0x21,
1668 0xa0, 0xc0, 0x1d, 0xa3, 0xef, 0x73, 0x98, 0xe9,
1669 0x13, 0xef, 0x7c, 0x58, 0x0c, 0x67, 0x5f, 0xfe,
1670 0xa0, 0x07, 0x80, 0x76, 0xab, 0x8d, 0x3f, 0xfd,
1671 0xc6, 0xf3, 0xf8, 0xbd, 0xff, 0xe7, 0x8b, 0xa8,
1672 0xd7, 0x1b, 0xbc, 0x4d, 0x28, 0x80, 0x9f, 0xbc,
1673 0x72, 0xe5, 0xca, 0x7b, 0xb9, 0x69, 0xea, 0x98,
1674 0xb0, 0x3c, 0xf3, 0xcc, 0x33, 0xbf, 0xc6, 0x18,
1675 0xfb, 0x5f, 0x83, 0x06, 0xdc, 0xd1, 0xa3, 0x47,
1676 0x71, 0xfe, 0xfc, 0xfd, 0x38, 0x72, 0xe4, 0xc8,
1677 0x28, 0x52, 0x30, 0x8e, 0x0d, 0xca, 0xb8, 0xb6,
1678 0x1d, 0xc7, 0xe6, 0xf3, 0x56, 0x59, 0x61, 0x9c,
1679 0xd9, 0x34, 0x68, 0x70, 0x33, 0xe6, 0x7b, 0x1f,
1680 0xa6, 0xea, 0xb2, 0xd8, 0x79, 0x0e, 0xcc, 0xf5,
1681 0x44, 0x9d, 0x9f, 0x8f, 0xbe, 0xa1, 0x21, 0xf0,
1682 0xf2, 0x5c, 0x13, 0xf7, 0x77, 0x22, 0xae, 0xd3,
1683 0x7d, 0x7d, 0x2c, 0x84, 0x83, 0x78, 0x95, 0x6b,
1684 0xc3, 0x87, 0xb4, 0x2f, 0xc1, 0x2b, 0xe4, 0x19,
1685 0x44, 0xdd, 0x6f, 0x16, 0xa5, 0xde, 0x3b, 0x8f,
1686 0xcd, 0x28, 0x1f, 0x62, 0x8c, 0x05, 0xfe, 0x96,
1687 0x75, 0xab, 0x59, 0x34, 0x78, 0x63, 0xdc, 0xab,
1688 0xb0, 0xb1, 0x1b, 0x66, 0x8e, 0xf4, 0xfb, 0x7d,
1689 0x5c, 0xbd, 0x7a, 0x0d, 0x97, 0x5e, 0xba, 0x84,
1690 0x76, 0xbb, 0x1d, 0x06, 0xa7, 0xbf, 0xf7, 0xd5,
1691 0xaf, 0x7e, 0xf5, 0xb3, 0x79, 0xe2, 0x53, 0x9a,
1692 0x34, 0x01, 0xac, 0xac, 0xac, 0xfc, 0x6a, 0xbd,
1693 0x5e, 0x3f, 0xcd, 0x18, 0x7b, 0x9a, 0x37, 0x60,
1694 0x6f, 0xdc, 0xb8, 0x81, 0xeb, 0xd7, 0xaf, 0x43,
1695 0x51, 0x14, 0xac, 0xae, 0xae, 0x42, 0xd3, 0x34,
1696 0x5e, 0xf2, 0x03, 0x77, 0x90, 0x33, 0x96, 0x0c,
1697 0x7c, 0x61, 0xdb, 0x07, 0x6d, 0x13, 0x36, 0x33,
1698 0x06, 0x1d, 0x2f, 0xea, 0xb7, 0xe3, 0x9e, 0x73,
1699 0x9a, 0x6b, 0x8a, 0x9a, 0xc9, 0x83, 0xb6, 0x09,
1700 0xfb, 0x2c, 0xce, 0x71, 0x79, 0xc7, 0xa1, 0x94,
1701 0xc6, 0xda, 0x3e, 0xcd, 0x75, 0x7b, 0x8f, 0x9d,
1702 0xe6, 0x9a, 0x92, 0x3c, 0xd3, 0xbc, 0x7d, 0x48,
1703 0x8c, 0x31, 0x0c, 0x06, 0x03, 0xf4, 0xfb, 0x7d,
1704 0x34, 0x1a, 0x8d, 0x38, 0xfb, 0x7f, 0x21, 0x6f,
1705 0xf0, 0x4f, 0x45, 0x03, 0x00, 0x80, 0xa7, 0x9f,
1706 0x7e, 0x5a, 0xdc, 0xdc, 0xdc, 0xfc, 0x3f, 0x00,
1707 0xfc, 0x72, 0x56, 0x10, 0xe4, 0x05, 0xf6, 0x49,
1708 0xec, 0x93, 0x17, 0xd0, 0x8b, 0x6b, 0x9a, 0x8d,
1709 0x6b, 0x9a, 0x21, 0xf9, 0xec, 0xd2, 0xd2, 0xd2,
1710 0xdf, 0xff, 0xd2, 0x97, 0xbe, 0x64, 0xce, 0x25,
1711 0x01, 0xd8, 0xf2, 0x99, 0xcf, 0x7c, 0xe6, 0xaf,
1712 0x11, 0x42, 0xfe, 0x4f, 0x00, 0x27, 0xa6, 0xf5,
1713 0xf0, 0x67, 0x79, 0xf0, 0x4e, 0x8a, 0xf0, 0x8a,
1714 0x6b, 0xca, 0x7e, 0x4d, 0x33, 0x22, 0xef, 0x11,
1715 0x42, 0xfe, 0x97, 0xaf, 0x7c, 0xe5, 0x2b, 0xff,
1716 0x6e, 0x52, 0x3f, 0x40, 0xa6, 0x7d, 0x45, 0x3f,
1717 0xfb, 0xb3, 0x3f, 0xab, 0xad, 0xac, 0xac, 0x7c,
1718 0x9a, 0x52, 0xfa, 0x3f, 0x13, 0x42, 0xee, 0x9e,
1719 0xd4, 0xc3, 0x9f, 0xb5, 0xc1, 0x3b, 0x4b, 0xb3,
1720 0x5d, 0x71, 0x4d, 0x33, 0x0f, 0xfe, 0x37, 0x18,
1721 0x63, 0xbf, 0xd3, 0xeb, 0xf5, 0x7e, 0xe7, 0xb9,
1722 0xe7, 0x9e, 0xeb, 0x4d, 0xf2, 0x87, 0xc8, 0x7e,
1723 0x5e, 0xe5, 0xa7, 0x3f, 0xfd, 0xe9, 0x7b, 0x08,
1724 0x21, 0xff, 0x3d, 0x21, 0xe4, 0x2e, 0x00, 0x47,
1725 0x08, 0x21, 0x12, 0xcf, 0x6e, 0xe4, 0x3c, 0x48,
1726 0xe2, 0xf9, 0x3b, 0x7a, 0x0f, 0x80, 0x38, 0x8e,
1727 0xe1, 0xda, 0xce, 0xf3, 0xde, 0xb5, 0xdd, 0xf0,
1728 0x3d, 0x77, 0x3b, 0xe7, 0x67, 0xce, 0xdf, 0x1a,
1729 0x9e, 0x17, 0x6f, 0x1f, 0xd7, 0x6f, 0x3b, 0xec,
1730 0x4e, 0xe2, 0xb9, 0x1e, 0xdf, 0xbe, 0x84, 0x90,
1731 0x2a, 0x11, 0xc8, 0x3a, 0x18, 0x5b, 0x25, 0x82,
1732 0x50, 0xc5, 0xb0, 0x68, 0x8b, 0xaa, 0xaa, 0x28,
1733 0x95, 0x4a, 0x89, 0x6c, 0xd1, 0x34, 0x76, 0x7b,
1734 0x9a, 0x7d, 0xe2, 0xec, 0x67, 0x18, 0x3a, 0x1a,
1735 0x8d, 0xe6, 0xd0, 0x7c, 0xa7, 0x75, 0xca, 0x68,
1736 0xdd, 0xd4, 0xcd, 0x5d, 0x4a, 0x69, 0x93, 0x10,
1737 0xc2, 0x78, 0xde, 0x31, 0xfb, 0x73, 0x4a, 0x29,
1738 0xf7, 0x3d, 0x67, 0x1f, 0x66, 0xef, 0x67, 0x3f,
1739 0x5b, 0xef, 0x7b, 0xcf, 0x3e, 0xcc, 0xfb, 0x5b,
1740 0xde, 0xe3, 0x70, 0x7e, 0x87, 0xb7, 0x4f, 0xe0,
1741 0x67, 0x9e, 0x63, 0x04, 0xde, 0x1e, 0x00, 0x5b,
1742 0x94, 0xd2, 0x37, 0x25, 0x49, 0xfa, 0xea, 0x1f,
1743 0xfe, 0xe1, 0x1f, 0xbe, 0x31, 0x2d, 0x0c, 0x12,
1744 0xcc, 0x97, 0x10, 0xc7, 0x4b, 0xc8, 0xf8, 0x7f,
1745 0x9c, 0xcf, 0x78, 0xdf, 0xc7, 0xf9, 0x2e, 0xf6,
1746 0x4b, 0x92, 0x24, 0xf1, 0x9e, 0xb3, 0xf7, 0x3c,
1747 0x70, 0xf8, 0xc8, 0xe1, 0x8f, 0x56, 0xca, 0xa5,
1748 0x8f, 0x0b, 0x82, 0x78, 0x3b, 0xef, 0xc2, 0x37,
1749 0x37, 0x37, 0x70, 0xec, 0xd8, 0x31, 0xcc, 0xab,
1750 0x34, 0x1a, 0x0d, 0xbc, 0xf6, 0xda, 0xeb, 0x7e,
1751 0x67, 0x9e, 0x49, 0x6f, 0xb4, 0xdb, 0x9d, 0xaf,
1752 0x6f, 0x6f, 0x6d, 0x7f, 0xe3, 0xf5, 0xd7, 0x5f,
1753 0xbf, 0x64, 0x18, 0xc6, 0xb0, 0x4f, 0x76, 0xac,
1754 0x17, 0xcd, 0xb8, 0x1d, 0x8d, 0xd8, 0x26, 0xce,
1755 0x67, 0x49, 0xfe, 0x9f, 0x49, 0x40, 0x1d, 0x04,
1756 0xf0, 0x27, 0xdd, 0x46, 0x48, 0x08, 0xfa, 0xc4,
1757 0x64, 0x70, 0xec, 0xe4, 0xb1, 0x8d, 0x3b, 0x4f,
1758 0xdd, 0xf9, 0x97, 0x97, 0x97, 0x97, 0xfe, 0x92,
1759 0x20, 0x08, 0x87, 0xa3, 0x2e, 0xfe, 0xd8, 0xb1,
1760 0x0d, 0x1c, 0x3f, 0x7e, 0x7c, 0xe2, 0x37, 0x79,
1761 0x52, 0x1a, 0x71, 0xa3, 0xd1, 0xc0, 0xab, 0xaf,
1762 0xbe, 0x16, 0xba, 0x8d, 0x69, 0xd2, 0xad, 0x76,
1763 0xab, 0xf9, 0x95, 0x37, 0xaf, 0xbc, 0xfd, 0xd5,
1764 0x6b, 0xd7, 0xae, 0xdd, 0x48, 0x09, 0xf6, 0xa8,
1765 0x6d, 0x69, 0x42, 0x22, 0xc8, 0x4a, 0x02, 0xde,
1766 0xef, 0x0a, 0x02, 0x48, 0x29, 0x42, 0x82, 0x99,
1767 0x3a, 0xcb, 0xff, 0x69, 0x34, 0x85, 0xd8, 0xdf,
1768 0x5d, 0x78, 0xf0, 0xc2, 0xa3, 0x47, 0x6f, 0xbf,
1769 0xed, 0xc7, 0x65, 0x45, 0x79, 0x94, 0x24, 0xe8,
1770 0x83, 0x7d, 0xec, 0xd8, 0x26, 0x4e, 0x9c, 0x38,
1771 0x8e, 0x79, 0x12, 0x27, 0x99, 0xd4, 0x1b, 0x0d,
1772 0xbc, 0xfa, 0xfd, 0x57, 0xe3, 0x9a, 0x17, 0x4c,
1773 0x1f, 0x0c, 0xbe, 0x7d, 0xe3, 0xe6, 0xad, 0x7f,
1774 0x7d, 0xe9, 0xc5, 0x4b, 0xff, 0x35, 0xc7, 0x59,
1775 0x3e, 0x2d, 0x68, 0x69, 0x8e, 0x04, 0x30, 0x53,
1776 0x24, 0x20, 0xcd, 0xc9, 0x58, 0x22, 0x53, 0x7a,
1777 0xe5, 0x61, 0x36, 0xf8, 0xbe, 0x93, 0x24, 0x49,
1778 0x7c, 0xe8, 0x43, 0x0f, 0xfd, 0x85, 0x43, 0x87,
1779 0xd6, 0x7f, 0x42, 0x92, 0xa4, 0xd3, 0x49, 0x2f,
1780 0x5e, 0x56, 0x64, 0xac, 0xae, 0xac, 0x82, 0x10,
1781 0x61, 0xae, 0x08, 0xc0, 0x49, 0x6f, 0xa2, 0x20,
1782 0x24, 0xd8, 0x8f, 0x10, 0x45, 0x55, 0x3f, 0x7c,
1783 0xf2, 0xe4, 0x89, 0x0f, 0x6f, 0x6e, 0x6e, 0x5c,
1784 0xd9, 0xde, 0xde, 0xf9, 0x57, 0xdf, 0xf9, 0xf6,
1785 0x77, 0xfe, 0x7f, 0x0e, 0xb0, 0xbc, 0x13, 0x04,
1786 0xef, 0x3b, 0x21, 0x64, 0x7b, 0x1a, 0xf0, 0x3f,
1787 0x89, 0x98, 0x28, 0x93, 0xfc, 0xef, 0xfd, 0x8e,
1788 0xcd, 0x1a, 0xb0, 0xe6, 0x55, 0xf5, 0xcf, 0x4b,
1789 0x23, 0x10, 0x72, 0x36, 0x23, 0x5c, 0x9f, 0x9f,
1790 0x7f, 0xe0, 0xfc, 0x23, 0xc7, 0x8e, 0x6d, 0x7e,
1791 0x5a, 0x92, 0xa4, 0x33, 0x09, 0x00, 0x80, 0x23,
1792 0x47, 0x0e, 0xe3, 0xc4, 0xc9, 0x13, 0xd8, 0xd8,
1793 0xd8, 0xc0, 0xe1, 0xc3, 0x87, 0x50, 0xdb, 0xdd,
1794 0xc3, 0xd6, 0xd6, 0x76, 0x7e, 0xb3, 0xf3, 0x94,
1795 0x1f, 0x62, 0xa5, 0x5c, 0x86, 0x5a, 0xd2, 0x70,
1796 0xfd, 0xda, 0x75, 0xbc, 0xf7, 0xde, 0xfb, 0xd8,
1797 0xde, 0xde, 0x4e, 0xe4, 0x81, 0x37, 0x74, 0xe3,
1798 0xb5, 0xab, 0x1f, 0x7c, 0xf0, 0xcf, 0x5f, 0x7e,
1799 0xf9, 0xf2, 0xf7, 0x72, 0x9a, 0xe5, 0xa3, 0xb6,
1800 0x49, 0xab, 0x11, 0xc4, 0xfd, 0xae, 0x20, 0x80,
1801 0x14, 0xaa, 0xbf, 0x30, 0x01, 0x42, 0x10, 0x30,
1802 0x01, 0xa7, 0xe2, 0xb1, 0x93, 0xc7, 0x36, 0xce,
1803 0x9d, 0x3d, 0xfb, 0x8c, 0xa2, 0xaa, 0x4f, 0xc6,
1804 0xb9, 0x48, 0x51, 0x14, 0xb1, 0xb1, 0x71, 0x14,
1805 0x27, 0xef, 0x38, 0x89, 0x93, 0x27, 0x4f, 0xa2,
1806 0x5c, 0x76, 0x7b, 0xfc, 0x77, 0x77, 0x76, 0xb1,
1807 0xbd, 0xbd, 0x3d, 0x93, 0x0f, 0x28, 0x0e, 0x8e,
1808 0xcb, 0x95, 0xb2, 0xcb, 0x84, 0xe9, 0xb4, 0x3b,
1809 0x78, 0xef, 0xfd, 0xf7, 0xf0, 0xce, 0x3b, 0xef,
1810 0xe3, 0xc6, 0xf5, 0xeb, 0xb1, 0xa2, 0x06, 0x01,
1811 0xa0, 0xdf, 0xeb, 0xfd, 0xe9, 0xf7, 0x2f, 0xbf,
1812 0xf6, 0x9b, 0x57, 0xaf, 0x5e, 0xbd, 0x3e, 0x61,
1813 0xa7, 0x1d, 0xcd, 0x19, 0xf0, 0x33, 0x69, 0x0a,
1814 0xcc, 0x3a, 0x01, 0x64, 0x01, 0x7a, 0x52, 0xd0,
1815 0xe7, 0xe6, 0x47, 0x78, 0xec, 0x89, 0x47, 0xff,
1816 0xca, 0xa1, 0x43, 0x87, 0x7f, 0x91, 0x10, 0x52,
1817 0x89, 0xba, 0xc0, 0xc3, 0x87, 0x0f, 0xe3, 0xcc,
1818 0x99, 0xd3, 0xb8, 0xeb, 0xf4, 0x5d, 0x41, 0x6d,
1819 0xa0, 0x00, 0x00, 0x7b, 0xbb, 0xbb, 0xd8, 0xde,
1820 0xde, 0x99, 0xdb, 0x55, 0x80, 0x72, 0xb9, 0x8c,
1821 0x63, 0xc7, 0xf9, 0xab, 0x18, 0xfd, 0x7e, 0x1f,
1822 0x6f, 0xbe, 0xf9, 0x16, 0xae, 0xbc, 0x71, 0x25,
1823 0xd6, 0x35, 0x32, 0xca, 0xda, 0xdb, 0x5b, 0x5b,
1824 0xbf, 0xf9, 0xe7, 0x7f, 0xfe, 0x5f, 0xbf, 0x96,
1825 0xb3, 0xbd, 0x1e, 0x87, 0x00, 0xd2, 0x00, 0x3e,
1826 0x68, 0x9f, 0x82, 0x00, 0x52, 0xce, 0xfe, 0x69,
1827 0x48, 0x80, 0xb7, 0x4f, 0xae, 0x1a, 0xc5, 0xca,
1828 0x4a, 0xa5, 0xfc, 0xe8, 0x87, 0x1f, 0xfb, 0xdf,
1829 0x54, 0x4d, 0x7b, 0x2a, 0x4a, 0xc5, 0xbf, 0xf3,
1830 0xce, 0x53, 0xb8, 0xf0, 0xc0, 0x05, 0x1c, 0x3a,
1831 0xb4, 0x1e, 0xeb, 0x46, 0xec, 0xed, 0xee, 0x05,
1832 0xa5, 0x87, 0xce, 0x85, 0x94, 0xca, 0x25, 0x1c,
1833 0x3b, 0xb6, 0x19, 0xb9, 0xdd, 0xce, 0xf6, 0x2e,
1834 0x5e, 0x7a, 0xe9, 0x25, 0xbc, 0xfd, 0xf6, 0x3b,
1835 0x91, 0xdb, 0xf6, 0xba, 0xbd, 0x3f, 0xfa, 0xd6,
1836 0xf3, 0x7f, 0xf6, 0x6b, 0xed, 0x76, 0xbb, 0x93,
1837 0x93, 0x43, 0x8f, 0xf7, 0x5d, 0x56, 0xc0, 0x47,
1838 0xfd, 0x7e, 0x41, 0x00, 0x29, 0x67, 0xff, 0xac,
1839 0x24, 0x20, 0x20, 0x47, 0x33, 0x62, 0x73, 0x73,
1840 0xf3, 0xb6, 0x0b, 0x0f, 0x9d, 0xff, 0xac, 0x24,
1841 0x06, 0xdb, 0xfa, 0x82, 0x20, 0xe0, 0xcc, 0x99,
1842 0xbb, 0xf1, 0xc0, 0x03, 0xe7, 0xb1, 0x5c, 0x4d,
1843 0x56, 0xd5, 0xb9, 0xb6, 0x57, 0xc3, 0xee, 0xee,
1844 0xfe, 0x13, 0x40, 0xda, 0x65, 0xc2, 0x52, 0xb9,
1845 0x84, 0xcd, 0xcd, 0x8d, 0xd8, 0xdb, 0xd7, 0xeb,
1846 0x0d, 0x5c, 0x7a, 0xe9, 0x12, 0xae, 0x5c, 0x79,
1847 0x33, 0xd4, 0x3c, 0x30, 0x74, 0xe3, 0xb5, 0x17,
1848 0x5e, 0x7a, 0xf1, 0xef, 0xdd, 0xbc, 0x76, 0x73,
1849 0x3b, 0xe3, 0x8c, 0xcd, 0xfb, 0x2e, 0x4f, 0xf0,
1850 0xcf, 0xa4, 0x2f, 0x60, 0xd6, 0x09, 0x40, 0xc8,
1851 0x01, 0xe0, 0x49, 0x81, 0x9f, 0x98, 0x10, 0x4e,
1852 0x9d, 0x3a, 0x75, 0xf2, 0xbe, 0xfb, 0xcf, 0xfe,
1853 0xb6, 0x20, 0x08, 0x47, 0x82, 0x2e, 0xe6, 0xd8,
1854 0xb1, 0x4d, 0x3c, 0xf6, 0xf8, 0x87, 0xb1, 0xba,
1855 0xba, 0x9a, 0xea, 0x66, 0xd4, 0xf7, 0x6a, 0xd8,
1856 0xdd, 0xdb, 0xc3, 0xbc, 0x4a, 0xa9, 0xa4, 0xe1,
1857 0xe8, 0xc6, 0x46, 0xe2, 0xfd, 0x76, 0xf7, 0xf6,
1858 0xf0, 0xe7, 0xdf, 0xfa, 0x73, 0x5c, 0xbb, 0x76,
1859 0x3d, 0x70, 0x1b, 0xd3, 0xa4, 0xb7, 0x5e, 0xb9,
1860 0xfc, 0xca, 0x67, 0xde, 0x7f, 0xe7, 0xfd, 0x0f,
1861 0x32, 0xd8, 0xe4, 0x51, 0xdb, 0xd1, 0x09, 0x11,
1862 0xc1, 0xbe, 0x8a, 0x38, 0xc3, 0xe0, 0x27, 0x33,
1863 0x48, 0x02, 0x3e, 0x42, 0x38, 0x72, 0xe4, 0xc8,
1864 0xda, 0x03, 0x0f, 0x3d, 0xf0, 0xdb, 0xa2, 0x28,
1865 0x70, 0x47, 0xb7, 0xaa, 0x2a, 0xf8, 0xd8, 0xc7,
1866 0x3f, 0x8a, 0x47, 0x1f, 0xfd, 0x01, 0x68, 0x9a,
1867 0x96, 0xfa, 0x86, 0xf4, 0xfb, 0x7d, 0xf4, 0x7a,
1868 0x7d, 0x10, 0x42, 0x22, 0x5e, 0x88, 0xb1, 0xcd,
1869 0xf4, 0x5f, 0x92, 0x2c, 0x63, 0x69, 0x69, 0x29,
1870 0x05, 0x71, 0x94, 0x70, 0xf7, 0x99, 0xbb, 0xb1,
1871 0x5c, 0x5d, 0xc6, 0xf5, 0x6b, 0x37, 0x60, 0x52,
1872 0x93, 0xa3, 0x59, 0x91, 0xca, 0xe1, 0xc3, 0x87,
1873 0x1f, 0xab, 0xed, 0xd5, 0xff, 0x73, 0xa7, 0xd3,
1874 0xe9, 0x05, 0x2c, 0x76, 0xb0, 0x98, 0x8b, 0x22,
1875 0xde, 0xf7, 0x2c, 0xe6, 0x76, 0x69, 0xdf, 0x17,
1876 0x04, 0x90, 0x51, 0xfd, 0x4f, 0xf3, 0x3e, 0x33,
1877 0xf0, 0x01, 0x10, 0x4d, 0xd3, 0x94, 0xc7, 0x3f,
1878 0xf2, 0xd8, 0xb3, 0x92, 0x24, 0xdd, 0xed, 0xb5,
1879 0xf1, 0x09, 0x21, 0xd8, 0xdc, 0xdc, 0xc0, 0x5f,
1880 0xfc, 0x8b, 0x3f, 0x8c, 0xdb, 0x6e, 0x3b, 0x32,
1881 0xfa, 0x9c, 0x31, 0x86, 0x04, 0xf1, 0x3f, 0x0e,
1882 0x02, 0xb0, 0x72, 0xc7, 0xa7, 0x0a, 0x5c, 0xe4,
1883 0x47, 0x26, 0x72, 0x0a, 0x02, 0xb0, 0xef, 0x15,
1884 0x63, 0x0c, 0xeb, 0xeb, 0x6b, 0x38, 0x7d, 0xfa,
1885 0x34, 0x76, 0x76, 0x77, 0xd1, 0x6e, 0xb7, 0x7d,
1886 0xf7, 0x50, 0x10, 0x84, 0x95, 0xdb, 0x8f, 0xde,
1887 0x7e, 0xfe, 0xea, 0x07, 0x57, 0xff, 0x93, 0x23,
1888 0x9c, 0x38, 0x4f, 0x80, 0x2e, 0x24, 0x11, 0xcc,
1889 0x32, 0x01, 0xcc, 0x22, 0xf8, 0x5d, 0xef, 0x9f,
1890 0xfc, 0xe8, 0x13, 0x9f, 0x2a, 0x95, 0x4a, 0x3f,
1891 0xec, 0x04, 0xbe, 0x28, 0x88, 0x20, 0x84, 0xe0,
1892 0xc1, 0x87, 0x1f, 0xc0, 0x13, 0x4f, 0x3c, 0x0e,
1893 0x59, 0x96, 0x5d, 0xeb, 0xdd, 0x69, 0xc0, 0x0f,
1894 0x00, 0x83, 0x7e, 0x1f, 0x83, 0x69, 0x13, 0x40,
1895 0x9e, 0x1a, 0x80, 0x24, 0xa1, 0xb2, 0x54, 0x49,
1896 0x36, 0x08, 0x86, 0xe0, 0x67, 0xd4, 0x2a, 0x1a,
1897 0x22, 0xcb, 0x12, 0x4e, 0x9f, 0xbe, 0x0b, 0x82,
1898 0x20, 0xe0, 0xd6, 0xcd, 0x2d, 0x08, 0x44, 0x70,
1899 0x41, 0x48, 0x14, 0x85, 0xdb, 0x0f, 0x1d, 0x3e,
1900 0x44, 0xdf, 0x7b, 0xf7, 0xbd, 0xef, 0xe5, 0x0c,
1901 0x50, 0xb6, 0xa8, 0x24, 0x20, 0xcc, 0x30, 0x01,
1902 0x4c, 0xf2, 0x7d, 0x96, 0xfd, 0x09, 0x00, 0x72,
1903 0xc7, 0x1d, 0x77, 0x6c, 0x2e, 0x2d, 0x2d, 0xfd,
1904 0x84, 0xf3, 0x80, 0x92, 0x24, 0x42, 0x10, 0x09,
1905 0xee, 0x3f, 0x7f, 0x1f, 0xce, 0x9f, 0xbf, 0x7f,
1906 0x54, 0xe2, 0x9c, 0x31, 0xcb, 0x01, 0x98, 0x16,
1907 0xfc, 0x63, 0xad, 0x42, 0x70, 0xbc, 0xe6, 0x8c,
1908 0x04, 0x04, 0x92, 0xfa, 0xba, 0xed, 0xae, 0xd2,
1909 0xd6, 0xbd, 0x64, 0x38, 0x7f, 0xfe, 0x7e, 0x9c,
1910 0xbb, 0xff, 0x5e, 0x08, 0x22, 0x81, 0x24, 0xbb,
1911 0xe7, 0xb0, 0x6a, 0x75, 0xf9, 0xaf, 0x1f, 0x3f,
1912 0x7e, 0xfc, 0xe8, 0x8c, 0x8d, 0x99, 0x99, 0xf5,
1913 0xb7, 0xcd, 0x57, 0x6c, 0xe9, 0x6c, 0x80, 0x1f,
1914 0x00, 0x70, 0xd7, 0x99, 0xbb, 0xfe, 0x26, 0x21,
1915 0x44, 0x75, 0x7a, 0xf8, 0x05, 0x41, 0xc4, 0xc9,
1916 0x3b, 0xee, 0xc0, 0x85, 0x0b, 0x17, 0x40, 0x4d,
1917 0x0a, 0x6a, 0x5a, 0xfd, 0xde, 0x45, 0x31, 0x9f,
1918 0xdb, 0xec, 0x06, 0x95, 0x90, 0xe3, 0x6b, 0x3a,
1919 0x24, 0x90, 0x69, 0xa0, 0x0a, 0xd6, 0x6c, 0x6f,
1920 0xdf, 0xd7, 0x07, 0x1e, 0x78, 0x10, 0x27, 0x4e,
1921 0x9c, 0x84, 0x20, 0x88, 0x10, 0x04, 0xd1, 0x79,
1922 0x8f, 0xb4, 0x33, 0x67, 0xcf, 0xfc, 0x4c, 0xce,
1923 0x13, 0x47, 0xde, 0x60, 0x9f, 0x19, 0x62, 0x90,
1924 0xe6, 0x14, 0xdc, 0x79, 0x1d, 0x23, 0xd5, 0xc3,
1925 0x5c, 0x5a, 0x5a, 0x2a, 0x95, 0xb4, 0xd2, 0x27,
1926 0xdd, 0xb3, 0xbf, 0x84, 0xa5, 0xa5, 0x25, 0x7c,
1927 0xe8, 0x91, 0x87, 0x61, 0x3a, 0x8a, 0x53, 0xca,
1928 0x92, 0x9c, 0x79, 0xf0, 0x8f, 0xc0, 0x2f, 0x90,
1929 0x29, 0xdc, 0xf2, 0x8c, 0x12, 0xb0, 0x4e, 0x48,
1930 0x32, 0xfe, 0x86, 0xdd, 0x2f, 0x42, 0x1f, 0xb6,
1931 0x8f, 0x03, 0x80, 0x47, 0x1e, 0x7d, 0x18, 0xb5,
1932 0x5a, 0x0d, 0xed, 0x56, 0x1b, 0xfd, 0xc1, 0xd8,
1933 0x39, 0x58, 0xd2, 0xb4, 0x1f, 0x5a, 0x5a, 0x5a,
1934 0xfa, 0xcd, 0x56, 0xab, 0xd5, 0x75, 0xa8, 0xd8,
1935 0x24, 0xe1, 0x7b, 0xde, 0x4d, 0x62, 0x29, 0x6f,
1936 0x2e, 0xcb, 0x78, 0x8c, 0x42, 0x03, 0xc8, 0x71,
1937 0x14, 0x93, 0xac, 0xc7, 0xbf, 0xef, 0xfe, 0xfb,
1938 0x3e, 0x46, 0x08, 0x5c, 0xb1, 0xba, 0xa2, 0x24,
1939 0xe2, 0xdc, 0xfd, 0xf7, 0x81, 0x80, 0xb8, 0x66,
1940 0x7f, 0x41, 0xc8, 0x6b, 0xf6, 0x07, 0x04, 0x42,
1941 0x66, 0xff, 0x25, 0x08, 0xdc, 0x57, 0x1e, 0xe4,
1942 0x35, 0x32, 0x05, 0x86, 0xf7, 0x97, 0x40, 0xc0,
1943 0x7d, 0xe7, 0xee, 0x1b, 0x7d, 0xee, 0x20, 0x8b,
1944 0xca, 0xbd, 0xf7, 0xdd, 0xfb, 0x64, 0x5e, 0xcf,
1945 0x7b, 0x42, 0x33, 0xf8, 0x4c, 0x98, 0x04, 0xd2,
1946 0x01, 0x01, 0x7d, 0xae, 0xc7, 0x2f, 0x97, 0xcb,
1947 0x67, 0x7d, 0x9f, 0x95, 0x34, 0xdc, 0x76, 0xdb,
1948 0x11, 0x30, 0x66, 0x8e, 0x66, 0x2c, 0x45, 0x51,
1949 0x21, 0x89, 0x92, 0xaf, 0x4c, 0x34, 0xbf, 0xfd,
1950 0x59, 0xc4, 0x83, 0x92, 0x64, 0x68, 0x5a, 0x29,
1951 0x87, 0x4b, 0xda, 0x9f, 0x09, 0x88, 0x57, 0xe9,
1952 0x39, 0xed, 0x03, 0xb1, 0xef, 0x31, 0x00, 0xdc,
1953 0x7e, 0xf4, 0x08, 0x4a, 0x65, 0x0d, 0xdd, 0x6e,
1954 0xd7, 0xa3, 0xa5, 0x55, 0xee, 0x03, 0xf0, 0x9f,
1955 0x73, 0x1c, 0x07, 0x0c, 0x0b, 0x28, 0xf3, 0x4e,
1956 0x00, 0x6c, 0xc2, 0x24, 0xe0, 0x3c, 0xfe, 0xe8,
1957 0xbd, 0x24, 0xf9, 0xab, 0xf6, 0xac, 0xae, 0xae,
1958 0x83, 0x31, 0xc0, 0x34, 0x99, 0x6b, 0x73, 0x59,
1959 0x91, 0xb9, 0x7d, 0x2a, 0x4c, 0xd3, 0x84, 0x61,
1960 0xe8, 0xb1, 0x33, 0xe2, 0x54, 0x4d, 0x85, 0xaa,
1961 0xa9, 0x58, 0x74, 0x21, 0x84, 0x58, 0xde, 0x7d,
1962 0xd7, 0xfd, 0x72, 0x96, 0x1a, 0x67, 0x8e, 0x7b,
1963 0x6c, 0x61, 0x73, 0x75, 0x75, 0x0d, 0xbb, 0x3b,
1964 0x7b, 0x5e, 0xc2, 0x39, 0x9a, 0x23, 0xe3, 0xb1,
1965 0x94, 0xdf, 0x15, 0x04, 0x30, 0x45, 0x50, 0x73,
1966 0xc1, 0x9a, 0x61, 0xbb, 0x40, 0x11, 0x05, 0xd1,
1967 0x17, 0xc0, 0xaf, 0xaa, 0x32, 0xa8, 0x27, 0x48,
1968 0xa5, 0xd5, 0x6a, 0x61, 0x65, 0x65, 0x05, 0x22,
1969 0xa7, 0xf3, 0x11, 0x18, 0x03, 0x63, 0x2a, 0xba,
1970 0xbd, 0x2e, 0x0c, 0xc3, 0xc0, 0x41, 0x17, 0x3b,
1971 0x56, 0x60, 0xec, 0xd0, 0x63, 0x3e, 0xd7, 0xc2,
1972 0x60, 0xd0, 0x87, 0xae, 0x0f, 0x7c, 0xda, 0x93,
1973 0xa2, 0x28, 0xb1, 0x9e, 0x51, 0x0c, 0x00, 0x87,
1974 0x2d, 0xcf, 0xe5, 0xb1, 0x74, 0x37, 0x73, 0xc1,
1975 0x40, 0xb3, 0xae, 0x01, 0x04, 0x81, 0x35, 0x09,
1976 0x70, 0xb3, 0x12, 0x83, 0xef, 0x3d, 0x65, 0x66,
1977 0x1d, 0x70, 0xb7, 0x73, 0xee, 0xf5, 0x07, 0x30,
1978 0x3d, 0x1d, 0x71, 0x4c, 0x6a, 0x60, 0x6f, 0x6f,
1979 0x0f, 0x47, 0x6f, 0x3f, 0x3a, 0xec, 0x04, 0xeb,
1980 0x7f, 0xfa, 0x8a, 0xaa, 0x42, 0x1f, 0x0c, 0xd0,
1981 0xe9, 0x74, 0x60, 0x98, 0xc6, 0x81, 0x04, 0xbe,
1982 0xa2, 0xa8, 0x50, 0x39, 0x20, 0x76, 0x4a, 0xb7,
1983 0xd7, 0x45, 0xa7, 0xd3, 0x81, 0x6e, 0xf8, 0x23,
1984 0x01, 0x07, 0xfd, 0xbe, 0xef, 0x33, 0x4a, 0xcd,
1985 0x3a, 0xd2, 0xaf, 0xbd, 0xa7, 0x01, 0xea, 0xcc,
1986 0x47, 0xfd, 0xcd, 0x13, 0x01, 0x24, 0x01, 0x7b,
1987 0x6c, 0xe0, 0x66, 0xd8, 0xc7, 0xf5, 0xde, 0xd0,
1988 0xe9, 0x0d, 0x6f, 0xe6, 0xee, 0xf6, 0xf6, 0xb6,
1989 0x4f, 0x03, 0x00, 0x80, 0x5a, 0xbd, 0x0e, 0x45,
1990 0x51, 0x70, 0xdb, 0x91, 0x23, 0x10, 0x45, 0xfe,
1991 0xed, 0x56, 0x64, 0x05, 0x95, 0xca, 0x12, 0x7a,
1992 0xfd, 0x1e, 0xda, 0xed, 0x16, 0x06, 0x83, 0xc1,
1993 0xc2, 0x03, 0x5f, 0x10, 0x04, 0x94, 0x4a, 0x25,
1994 0x68, 0xaa, 0x36, 0x5a, 0x25, 0xe1, 0x75, 0x79,
1995 0x63, 0x60, 0x68, 0xb5, 0x9a, 0xe8, 0x76, 0xbb,
1996 0x68, 0x36, 0x5b, 0x1c, 0x7f, 0x0a, 0xb8, 0x85,
1997 0x52, 0x0c, 0xd3, 0xbc, 0x9e, 0x10, 0x9c, 0x2c,
1998 0xe1, 0x67, 0x41, 0xe0, 0x9e, 0xab, 0x40, 0xa0,
1999 0x59, 0xd6, 0x00, 0x78, 0x00, 0xcc, 0x04, 0x5c,
2000 0xcf, 0x31, 0xd2, 0x2e, 0x0f, 0x91, 0x5e, 0xbf,
2001 0x73, 0xa5, 0xb2, 0x54, 0x76, 0x9d, 0x6c, 0xa3,
2002 0xde, 0x40, 0xbb, 0xd9, 0x44, 0xb9, 0x52, 0xf1,
2003 0x5c, 0x04, 0xc5, 0xad, 0x5b, 0x37, 0x41, 0xa9,
2004 0x89, 0x8d, 0xa3, 0x1b, 0xd0, 0xd4, 0x52, 0xa0,
2005 0x7d, 0x2b, 0xcb, 0x32, 0x96, 0x97, 0x96, 0x31,
2006 0x18, 0x0c, 0xd0, 0x6a, 0x35, 0xd1, 0xee, 0xb4,
2007 0x67, 0xb9, 0x69, 0x45, 0x2a, 0x51, 0x55, 0x15,
2008 0xe5, 0x52, 0x25, 0x56, 0x5e, 0x84, 0x69, 0x9a,
2009 0xd8, 0xab, 0xed, 0xa1, 0xdb, 0xeb, 0x60, 0x77,
2010 0x6f, 0x97, 0xeb, 0x38, 0x6d, 0x35, 0x5b, 0x68,
2011 0x36, 0x9b, 0x7e, 0x8d, 0xa1, 0xd3, 0xbb, 0x02,
2012 0x77, 0x2c, 0x7f, 0xdc, 0xf7, 0x59, 0xc0, 0x5d,
2013 0x84, 0x02, 0xe7, 0xa5, 0x19, 0xc2, 0x13, 0x79,
2014 0xe7, 0x78, 0x8f, 0x90, 0xf7, 0x24, 0xe6, 0xfb,
2015 0x24, 0xdb, 0xfa, 0xde, 0x77, 0xda, 0xdd, 0x9b,
2016 0xc7, 0x4f, 0x1e, 0xfb, 0x09, 0x02, 0xe2, 0xba,
2017 0x7f, 0xad, 0x76, 0x1b, 0xb7, 0x1f, 0xdd, 0x00,
2018 0x63, 0x70, 0xbd, 0x28, 0x65, 0xe8, 0x74, 0xbb,
2019 0xe8, 0xf7, 0x7b, 0x90, 0x65, 0x09, 0x4b, 0x95,
2020 0x25, 0x88, 0x92, 0x08, 0x51, 0x14, 0x21, 0x0a,
2021 0xc3, 0xbf, 0xc3, 0x97, 0x20, 0x8a, 0x50, 0x14,
2022 0x05, 0x4b, 0x4b, 0xcb, 0x58, 0x5d, 0x5d, 0x85,
2023 0xa2, 0xaa, 0x10, 0x08, 0x81, 0x61, 0x18, 0x73,
2024 0x49, 0x06, 0x84, 0x10, 0x68, 0x9a, 0x86, 0xea,
2025 0x72, 0x15, 0xeb, 0xeb, 0x87, 0x50, 0xad, 0xae,
2026 0x40, 0x55, 0xd5, 0xf1, 0x35, 0xfb, 0xae, 0x5f,
2027 0x80, 0x28, 0x8a, 0xe8, 0xf7, 0xfb, 0xd8, 0xd9,
2028 0xdd, 0x46, 0xbb, 0xd3, 0xc6, 0xf6, 0xf6, 0x2e,
2029 0x4c, 0x83, 0xfa, 0xee, 0x2b, 0x00, 0x7c, 0xf7,
2030 0x85, 0x17, 0xd0, 0xeb, 0xfa, 0x7a, 0x67, 0x0c,
2031 0x5e, 0x7a, 0xf1, 0xd2, 0xff, 0xde, 0xed, 0x76,
2032 0x07, 0x21, 0x60, 0x4f, 0x02, 0xd2, 0x2c, 0xe4,
2033 0x31, 0xd3, 0xa6, 0xc1, 0xbc, 0x99, 0x00, 0x71,
2034 0x66, 0xf7, 0x38, 0x33, 0x79, 0x16, 0x0d, 0x00,
2035 0xbb, 0xbb, 0xbb, 0xf5, 0x41, 0x7f, 0xf0, 0x0d,
2036 0x55, 0x55, 0x3f, 0xe1, 0x32, 0x03, 0xb6, 0x76,
2037 0x70, 0xfd, 0xfa, 0x75, 0x1c, 0x3d, 0xea, 0x2f,
2038 0xed, 0x4f, 0x0d, 0x13, 0x5b, 0x3b, 0x3b, 0xe8,
2039 0x74, 0xbb, 0x68, 0xb7, 0xdb, 0xd8, 0xd8, 0xd8,
2040 0x44, 0xa5, 0x12, 0x90, 0x1c, 0xe3, 0x00, 0xba,
2041 0xaa, 0xa8, 0x58, 0x5f, 0x5d, 0x07, 0x63, 0x0c,
2042 0x9d, 0x6e, 0x07, 0x9d, 0x4e, 0x1b, 0xed, 0x4e,
2043 0x07, 0xbd, 0x5e, 0x77, 0x66, 0x09, 0x41, 0x51,
2044 0x14, 0x94, 0xb4, 0x12, 0x4a, 0xa5, 0x32, 0xca,
2045 0xe5, 0x32, 0x44, 0x41, 0x0c, 0x9c, 0x46, 0xbd,
2046 0x9f, 0xe8, 0xba, 0x8e, 0xed, 0x9d, 0x6d, 0x34,
2047 0x9b, 0x0d, 0xd4, 0x1b, 0x0d, 0xb4, 0xda, 0x6d,
2048 0x7e, 0x70, 0x11, 0x21, 0xb8, 0xf6, 0xde, 0x55,
2049 0xec, 0xed, 0xf8, 0x53, 0xa4, 0x7b, 0xfd, 0xfe,
2050 0x9f, 0xec, 0xec, 0xec, 0x34, 0x23, 0x80, 0x1f,
2051 0x57, 0x33, 0x58, 0xe8, 0x6c, 0xc0, 0x79, 0x33,
2052 0x01, 0x90, 0x45, 0x75, 0xe7, 0xb0, 0x75, 0x9a,
2053 0xe8, 0x30, 0x02, 0x80, 0xbd, 0xff, 0xee, 0x07,
2054 0xff, 0xe2, 0xee, 0x7b, 0x4e, 0x3f, 0x05, 0x4f,
2055 0x30, 0xd5, 0xa5, 0x17, 0x2f, 0x0d, 0x67, 0xbc,
2056 0x65, 0xee, 0x45, 0x35, 0x1b, 0x4d, 0x74, 0xdb,
2057 0x1d, 0xec, 0xd5, 0x6a, 0xd8, 0xdc, 0xd8, 0xc0,
2058 0xe6, 0xc6, 0x31, 0xa8, 0xaa, 0xe6, 0x1b, 0x13,
2059 0x3c, 0x7b, 0x58, 0x51, 0x54, 0xac, 0xae, 0xac,
2060 0xd9, 0x4e, 0x2e, 0x74, 0x7b, 0x5d, 0x74, 0xbb,
2061 0x5d, 0x74, 0xbb, 0x1d, 0x74, 0x7b, 0x5d, 0xf4,
2062 0xfb, 0xfd, 0xa9, 0x93, 0x82, 0x2c, 0x2b, 0xd0,
2063 0x86, 0x5d, 0x8b, 0x34, 0xad, 0x84, 0x92, 0x56,
2064 0x82, 0x24, 0x49, 0xd1, 0x23, 0x9c, 0x79, 0x1d,
2065 0xa6, 0x14, 0x3b, 0x3b, 0xdb, 0xd8, 0xd9, 0xdd,
2066 0x46, 0xb3, 0xd5, 0x42, 0x6d, 0xaf, 0x06, 0xd3,
2067 0x0c, 0xee, 0x85, 0xd9, 0xa8, 0x37, 0xf0, 0xca,
2068 0x2b, 0x97, 0x79, 0xa3, 0xc6, 0x78, 0xef, 0xed,
2069 0xb7, 0xbf, 0x10, 0x01, 0xe8, 0xa4, 0xb3, 0x3a,
2070 0x9b, 0xf0, 0xfb, 0x7d, 0x55, 0xb5, 0x67, 0x56,
2071 0x7b, 0xc4, 0x64, 0xab, 0x02, 0x65, 0x3d, 0x26,
2072 0xf9, 0xc4, 0x27, 0x9f, 0x7a, 0xa6, 0x5c, 0xa9,
2073 0xfc, 0x24, 0xef, 0xe4, 0x2f, 0x5c, 0xb8, 0x1f,
2074 0x87, 0x8e, 0x1c, 0x0e, 0x0d, 0x03, 0x96, 0x64,
2075 0x19, 0x6b, 0x2b, 0x2b, 0x38, 0x7e, 0xec, 0x84,
2076 0xa5, 0x11, 0x94, 0x2b, 0x21, 0x6c, 0xc8, 0x10,
2077 0x31, 0x8d, 0x82, 0x81, 0x61, 0xd0, 0x1f, 0x60,
2078 0xa0, 0xf7, 0x31, 0x18, 0xe8, 0xd0, 0xf5, 0x01,
2079 0x06, 0x83, 0x01, 0x06, 0xfa, 0x00, 0x86, 0x61,
2080 0xc0, 0x34, 0x4d, 0x98, 0xa6, 0xf5, 0x37, 0x2c,
2081 0x10, 0xc9, 0x0e, 0xbb, 0xb5, 0x5e, 0x12, 0x24,
2082 0x51, 0x84, 0x24, 0xcb, 0x50, 0x14, 0x05, 0x8a,
2083 0xac, 0x40, 0x96, 0x64, 0xc8, 0xb2, 0x0c, 0x55,
2084 0xd5, 0x46, 0xab, 0x1b, 0xd1, 0xbc, 0xc3, 0x27,
2085 0x38, 0xc3, 0x30, 0xb0, 0xbd, 0x7d, 0x0b, 0x5b,
2086 0xdb, 0x5b, 0x68, 0x34, 0x9a, 0xa8, 0xd5, 0xf6,
2087 0xa0, 0x87, 0x2c, 0x8b, 0x32, 0xc6, 0xb0, 0xbd,
2088 0xb5, 0x85, 0x97, 0x2f, 0x5d, 0xe6, 0x7e, 0xdf,
2089 0x6a, 0x35, 0xff, 0xe5, 0x1f, 0xff, 0xd1, 0xd7,
2090 0xff, 0x19, 0xf2, 0xa9, 0x0c, 0x94, 0x57, 0xe1,
2091 0x8f, 0xa2, 0x22, 0x50, 0x86, 0xf3, 0x9b, 0x74,
2092 0x5d, 0xc0, 0xd4, 0x04, 0xb0, 0x72, 0x68, 0xa5,
2093 0xfa, 0xc4, 0x63, 0x8f, 0x7f, 0x51, 0x14, 0xc5,
2094 0x13, 0xbc, 0x93, 0xbf, 0xf7, 0xbe, 0xb3, 0x38,
2095 0x7a, 0xf4, 0xb6, 0xc8, 0xc7, 0x2c, 0x8a, 0x22,
2096 0xaa, 0xd5, 0x65, 0x6c, 0x6e, 0x6c, 0x62, 0x73,
2097 0xf3, 0x18, 0x0e, 0x1f, 0x3a, 0xc2, 0x8d, 0x20,
2098 0x8c, 0x9e, 0x54, 0xe7, 0x63, 0x7b, 0xc6, 0x18,
2099 0xea, 0x8d, 0x3a, 0xb6, 0x77, 0xb6, 0xb0, 0xb3,
2100 0xbd, 0x8d, 0xbd, 0x7a, 0x0d, 0x8d, 0x46, 0xc3,
2101 0x0a, 0x9f, 0x8e, 0x18, 0x0d, 0xd7, 0xaf, 0xdd,
2102 0xc0, 0xeb, 0x9c, 0x16, 0x63, 0x43, 0xa7, 0xe1,
2103 0xbb, 0xdf, 0xfa, 0xe6, 0x9f, 0xfd, 0xcd, 0x5a,
2104 0xad, 0xd6, 0x46, 0x3e, 0xd5, 0x7c, 0xf3, 0xa8,
2105 0xfe, 0x3b, 0xb3, 0xd5, 0x80, 0xe6, 0x85, 0x00,
2106 0xa6, 0x59, 0x19, 0x38, 0xf1, 0xff, 0x77, 0xdd,
2107 0x75, 0xc7, 0xc9, 0xb3, 0xe7, 0xce, 0xfd, 0x0b,
2108 0x42, 0x08, 0xb7, 0xd6, 0xd7, 0xda, 0xda, 0x3a,
2109 0xce, 0x5f, 0xb8, 0x2f, 0x16, 0x94, 0x09, 0x2c,
2110 0x87, 0xd9, 0xca, 0xca, 0x0a, 0x4e, 0xdd, 0x71,
2111 0x0a, 0xb7, 0xdf, 0x76, 0x3b, 0xd6, 0xd7, 0x0e,
2112 0x8d, 0xc2, 0x68, 0x59, 0xc4, 0xac, 0x1a, 0xad,
2113 0x24, 0xb0, 0x24, 0x5a, 0x79, 0xae, 0xdb, 0xdb,
2114 0xa0, 0xdf, 0xdd, 0xdd, 0xc1, 0xcd, 0x5b, 0x37,
2115 0xb0, 0xbb, 0xbb, 0x8b, 0x46, 0xb3, 0x89, 0x7e,
2116 0xaf, 0x1f, 0x8b, 0xe8, 0x08, 0x08, 0x5e, 0x7a,
2117 0xe9, 0x12, 0xea, 0xb5, 0x3a, 0xff, 0xf8, 0x94,
2118 0xed, 0xbd, 0xf2, 0xf2, 0xe5, 0xbf, 0xfd, 0xee,
2119 0xbb, 0xef, 0x7e, 0x80, 0xfc, 0xaa, 0x03, 0x4f,
2120 0xa2, 0x1c, 0xf8, 0x4c, 0xf5, 0x06, 0x98, 0x97,
2121 0xc6, 0x20, 0x79, 0x00, 0x7e, 0x62, 0xfd, 0x00,
2122 0xce, 0x9d, 0x3f, 0xf7, 0xc0, 0xa9, 0x53, 0x77,
2123 0xfc, 0x36, 0x21, 0xa4, 0x1c, 0xa4, 0x52, 0x9f,
2124 0x3b, 0x77, 0x1f, 0x56, 0xd7, 0xd7, 0x12, 0xcd,
2125 0xa2, 0xaa, 0xa6, 0x62, 0x79, 0x69, 0x09, 0x77,
2126 0x9c, 0x38, 0x89, 0xcd, 0xcd, 0x63, 0x58, 0x5b,
2127 0x5d, 0xc7, 0xf2, 0x72, 0x35, 0x32, 0x28, 0x22,
2128 0x02, 0xa5, 0xc9, 0x48, 0x82, 0xa5, 0xdf, 0xbe,
2129 0xdb, 0xeb, 0xa2, 0x56, 0xdb, 0xc3, 0x5e, 0x6d,
2130 0x0f, 0x1f, 0x5c, 0xfd, 0x00, 0x7b, 0xb5, 0x1a,
2131 0xda, 0xed, 0x36, 0xfa, 0x9c, 0xc0, 0x9d, 0x30,
2132 0x73, 0x64, 0x77, 0x67, 0x17, 0xdf, 0xbf, 0xfc,
2133 0xfd, 0x30, 0x26, 0x6a, 0xbd, 0xfd, 0xd6, 0xbb,
2134 0x9f, 0xb9, 0x7c, 0xf9, 0xf2, 0x2b, 0xc8, 0xbf,
2135 0x9f, 0x5f, 0xde, 0xfd, 0x01, 0x66, 0x66, 0xf6,
2136 0x9f, 0x17, 0x02, 0x00, 0xa6, 0xd7, 0x1c, 0x24,
2137 0x75, 0x47, 0xa0, 0xb3, 0x67, 0xcf, 0xde, 0x73,
2138 0xe7, 0xdd, 0xa7, 0x9e, 0x15, 0x88, 0x70, 0x5b,
2139 0x18, 0xa0, 0xcf, 0x9f, 0xbf, 0x1f, 0xaa, 0xaa,
2140 0x82, 0x26, 0x54, 0xa7, 0x05, 0x22, 0x40, 0x2b,
2141 0x6b, 0x58, 0xa9, 0xae, 0xe0, 0xc4, 0xf1, 0xe3,
2142 0xb8, 0xed, 0xf0, 0x6d, 0x58, 0x5b, 0x5f, 0xc7,
2143 0x6a, 0x75, 0x15, 0x8a, 0xa2, 0xc6, 0xb2, 0xb7,
2144 0xe3, 0x7e, 0x90, 0x66, 0x7b, 0x6a, 0x9a, 0x68,
2145 0x34, 0x1b, 0x68, 0x34, 0xea, 0xd8, 0xd9, 0xdb,
2146 0xc1, 0xf5, 0x1b, 0xd7, 0xb1, 0xbb, 0xbb, 0x87,
2147 0x6e, 0xa7, 0x83, 0x6e, 0xb7, 0x9b, 0xfc, 0x7a,
2148 0x05, 0x01, 0xbd, 0x6e, 0x17, 0xaf, 0x5c, 0xba,
2149 0x8c, 0xfe, 0x20, 0x98, 0x30, 0xa8, 0x49, 0xaf,
2150 0x5f, 0x79, 0xe3, 0xcd, 0x5f, 0x79, 0xe3, 0x8d,
2151 0x37, 0xae, 0x64, 0x00, 0x7f, 0x90, 0xda, 0x3f,
2152 0xa9, 0x0e, 0x41, 0x45, 0x67, 0xa0, 0x29, 0x98,
2153 0x02, 0x59, 0x9a, 0x82, 0xa6, 0xea, 0x09, 0x78,
2154 0xfc, 0xf8, 0xf1, 0xdb, 0xee, 0xbf, 0x70, 0xff,
2155 0x3f, 0x91, 0x24, 0xf1, 0x5c, 0xd8, 0xc5, 0x68,
2156 0x8a, 0x86, 0x7b, 0xef, 0xbf, 0x07, 0x95, 0x4a,
2157 0x25, 0x53, 0x1e, 0x00, 0x11, 0x04, 0x68, 0x9a,
2158 0x86, 0x23, 0x87, 0x0f, 0xe3, 0xf0, 0xa1, 0xdb,
2159 0x70, 0xf8, 0xd0, 0x21, 0xac, 0xae, 0xae, 0x61,
2160 0xa9, 0x52, 0x81, 0xa6, 0x6a, 0xd0, 0x34, 0x0d,
2161 0xaa, 0x23, 0xd2, 0x2e, 0x89, 0x43, 0x91, 0xb7,
2162 0x41, 0x7f, 0x30, 0x18, 0x16, 0x27, 0xed, 0xa2,
2163 0xd7, 0xeb, 0xa1, 0xde, 0xa8, 0x63, 0x6f, 0x6f,
2164 0x0f, 0x3b, 0xbb, 0x3b, 0xd8, 0xd9, 0xde, 0x42,
2165 0xab, 0x63, 0xcd, 0xee, 0x49, 0x33, 0x1d, 0xbd,
2166 0x8e, 0xd1, 0x56, 0xb3, 0x89, 0xd7, 0x5e, 0x7d,
2167 0x1d, 0xfd, 0x5e, 0xb8, 0xa6, 0xa0, 0x1b, 0xfa,
2168 0xcb, 0x2f, 0x7d, 0xef, 0xd2, 0xdf, 0xbd, 0x71,
2169 0xe3, 0xc6, 0x36, 0xd2, 0x75, 0x02, 0x4e, 0x02,
2170 0xfe, 0x3c, 0x9b, 0x84, 0xa2, 0x20, 0x80, 0xfc,
2171 0x4d, 0x81, 0x69, 0xfc, 0x1f, 0xdd, 0x08, 0xb4,
2172 0x24, 0xc9, 0x1f, 0x79, 0xfc, 0x89, 0x4f, 0x2d,
2173 0x2d, 0x2d, 0xff, 0x34, 0x22, 0x02, 0xad, 0x44,
2174 0x49, 0xc4, 0x5d, 0x77, 0xde, 0x89, 0x43, 0x47,
2175 0x0e, 0x0d, 0x3d, 0xf3, 0xf9, 0x8d, 0x0d, 0x51,
2176 0x10, 0x20, 0xc9, 0x12, 0x24, 0x49, 0xc2, 0xa1,
2177 0xf5, 0xc3, 0xa8, 0x94, 0x44, 0x1c, 0x74, 0x60,
2178 0x00, 0x00, 0x06, 0x29, 0x49, 0x44, 0x41, 0x54,
2179 0x4b, 0xd0, 0x4a, 0xd6, 0x32, 0x9d, 0xa6, 0x69,
2180 0xbe, 0xb5, 0x79, 0xaf, 0xf4, 0xfa, 0x3d, 0xf4,
2181 0x7a, 0x7d, 0x74, 0x7b, 0xd6, 0x0c, 0x5e, 0x6f,
2182 0x34, 0xd0, 0xed, 0x76, 0x60, 0x18, 0x06, 0x0c,
2183 0xdd, 0x80, 0x49, 0xf3, 0xd3, 0x62, 0x05, 0xc1,
2184 0x5a, 0x75, 0xd8, 0xde, 0xda, 0xc1, 0xdb, 0x6f,
2185 0xbd, 0x1d, 0xba, 0xfc, 0x67, 0xfb, 0xfb, 0x5a,
2186 0xcd, 0xe6, 0x17, 0xfe, 0xf4, 0x1b, 0xcf, 0xff,
2187 0x9e, 0x61, 0x31, 0x68, 0x1e, 0x5d, 0x82, 0xf3,
2188 0x6c, 0x2b, 0x16, 0x46, 0x00, 0x28, 0x08, 0x20,
2189 0x1f, 0x53, 0x20, 0x4f, 0x00, 0x0b, 0x29, 0x41,
2190 0x1f, 0x48, 0x06, 0xe7, 0x2e, 0x9c, 0xbb, 0x70,
2191 0xf2, 0xf8, 0x89, 0x5f, 0x15, 0x25, 0x31, 0x56,
2192 0x37, 0xe0, 0xa5, 0xa5, 0x0a, 0x4e, 0x9d, 0x3a,
2193 0x85, 0xa5, 0xea, 0x32, 0x0c, 0xd3, 0x04, 0x8d,
2194 0x06, 0xc1, 0x5c, 0x8b, 0x28, 0x8a, 0x90, 0x44,
2195 0x11, 0x8d, 0x46, 0x03, 0xef, 0xbe, 0xfd, 0x1e,
2196 0x5a, 0xed, 0x56, 0xac, 0xfd, 0x0c, 0xd3, 0x78,
2197 0xe3, 0xfd, 0x77, 0x3e, 0xf8, 0xb5, 0xcb, 0x97,
2198 0x2f, 0xbf, 0x8c, 0xf4, 0x2d, 0xc3, 0xe3, 0xf4,
2199 0xed, 0xcb, 0xd2, 0x58, 0x74, 0x2e, 0x5a, 0x83,
2200 0xcf, 0x23, 0x01, 0xec, 0x27, 0x09, 0xc4, 0xf9,
2201 0xce, 0xb5, 0x9d, 0x2c, 0xcb, 0xe2, 0x23, 0x8f,
2202 0x3e, 0xf2, 0x63, 0xeb, 0x6b, 0x6b, 0x3f, 0x4f,
2203 0x04, 0x72, 0x38, 0xb6, 0xf3, 0x4f, 0x51, 0x71,
2204 0xc7, 0xa9, 0x93, 0x58, 0x5b, 0x5f, 0x03, 0x08,
2205 0xc1, 0x60, 0x30, 0x98, 0xfb, 0x9c, 0x00, 0x42,
2206 0x08, 0x14, 0x55, 0x05, 0x28, 0xc3, 0xee, 0xee,
2207 0x2e, 0xde, 0x79, 0xe7, 0x1d, 0xe8, 0x03, 0x3d,
2208 0xf6, 0xfe, 0x94, 0xd2, 0xad, 0xbd, 0x9d, 0xbd,
2209 0xff, 0xfb, 0x3b, 0xdf, 0xf9, 0xee, 0x97, 0x75,
2210 0x5d, 0x37, 0x13, 0x82, 0x3d, 0x6f, 0xa0, 0x2f,
2211 0x04, 0xf8, 0xe7, 0x95, 0x00, 0x48, 0x0e, 0x00,
2212 0x4f, 0x32, 0xb3, 0xc7, 0x06, 0x7c, 0xd0, 0x77,
2213 0xab, 0xab, 0x4b, 0x95, 0x0b, 0x0f, 0x3e, 0xfc,
2214 0x3f, 0x2d, 0x2f, 0x2f, 0x3d, 0x1d, 0xb4, 0x5c,
2215 0x18, 0x26, 0x2b, 0xd5, 0x2a, 0x8e, 0x6e, 0x6e,
2216 0xa0, 0x5a, 0xad, 0x42, 0x96, 0x65, 0x98, 0xa6,
2217 0x81, 0x81, 0xae, 0xcf, 0x2c, 0x29, 0x10, 0x62,
2218 0x15, 0x42, 0x11, 0x05, 0x09, 0xa6, 0xa1, 0xa3,
2219 0x5e, 0x6b, 0xe0, 0xfa, 0xb5, 0xeb, 0x68, 0x34,
2220 0x1b, 0x89, 0x8f, 0xc5, 0x28, 0xdb, 0x6b, 0x34,
2221 0x9b, 0xff, 0xe6, 0x85, 0xef, 0xbe, 0xf0, 0xff,
2222 0x3a, 0x6a, 0xfc, 0x31, 0x64, 0x9b, 0xfd, 0xb3,
2223 0x00, 0x3f, 0xed, 0xbe, 0x28, 0x08, 0x60, 0x36,
2224 0x49, 0x20, 0xed, 0x8c, 0x1f, 0x97, 0x18, 0x46,
2225 0xaf, 0xe5, 0xe5, 0x65, 0xed, 0xfc, 0x03, 0xe7,
2226 0xff, 0xf2, 0xea, 0xca, 0xca, 0x4f, 0x0a, 0xa2,
2227 0x70, 0x47, 0x7a, 0x9b, 0x59, 0xc0, 0xe1, 0xc3,
2228 0x87, 0xb0, 0xbe, 0xbe, 0x8e, 0x4a, 0xa5, 0x02,
2229 0x49, 0x55, 0x20, 0x0e, 0x6b, 0xe8, 0xf7, 0xa6,
2230 0x18, 0x0e, 0x2c, 0x08, 0x02, 0x54, 0x45, 0x01,
2231 0x11, 0xac, 0x3a, 0x88, 0x83, 0x81, 0x8e, 0x4e,
2232 0xa7, 0x63, 0x85, 0xf4, 0x6e, 0xed, 0x82, 0xb2,
2233 0xf4, 0x7e, 0x02, 0xd3, 0x34, 0xdf, 0xad, 0xd7,
2234 0x1b, 0xff, 0xdf, 0x0b, 0xdf, 0x7d, 0xe1, 0xcb,
2235 0xdd, 0x6e, 0xb7, 0x9f, 0x00, 0xf8, 0x59, 0x9c,
2236 0x81, 0x69, 0xfc, 0x08, 0x73, 0x0b, 0xfe, 0x79,
2237 0x26, 0x00, 0x24, 0x00, 0xe5, 0xbe, 0x82, 0x3e,
2238 0xe8, 0xf5, 0xe0, 0x83, 0x0f, 0x3e, 0x72, 0xf8,
2239 0xf6, 0xc3, 0xff, 0x83, 0xa6, 0xaa, 0x9f, 0x04,
2240 0xa0, 0xe4, 0x75, 0x53, 0x4a, 0xe5, 0x12, 0xaa,
2241 0xcb, 0x55, 0x54, 0x2a, 0x56, 0x22, 0x8e, 0xa2,
2242 0x2a, 0x90, 0x24, 0x09, 0xa2, 0x24, 0x0e, 0x7b,
2243 0x13, 0x08, 0x20, 0x64, 0x18, 0xa5, 0xc7, 0xe0,
2244 0xf3, 0xd8, 0x0b, 0x82, 0x00, 0x10, 0xbb, 0x29,
2245 0x07, 0xc0, 0x18, 0x05, 0xa5, 0x14, 0xa6, 0x61,
2246 0xc2, 0x30, 0x0c, 0x0c, 0xfa, 0x03, 0xb4, 0x3b,
2247 0x6d, 0x74, 0xda, 0x1d, 0x34, 0x9a, 0x4d, 0x74,
2248 0x3b, 0xdd, 0xdc, 0x1e, 0x28, 0x63, 0xac, 0xdf,
2249 0xef, 0xf7, 0xff, 0xcb, 0xad, 0x5b, 0x5b, 0xff,
2250 0xe1, 0xd2, 0x8b, 0x97, 0x5e, 0x88, 0xa9, 0xd6,
2251 0xcf, 0x3a, 0x19, 0xa0, 0x20, 0x80, 0xe9, 0x92,
2252 0x40, 0xde, 0xa0, 0xcf, 0x9b, 0x00, 0x5c, 0xe7,
2253 0x7d, 0xe8, 0xd0, 0xa1, 0xea, 0xe9, 0x33, 0xa7,
2254 0x3f, 0x56, 0x5d, 0x5e, 0xfa, 0x98, 0xa2, 0xaa,
2255 0x4f, 0x04, 0x05, 0x13, 0x2d, 0xaa, 0x30, 0xc6,
2256 0xda, 0x83, 0x7e, 0xff, 0x5b, 0xcd, 0x46, 0xf3,
2257 0x4f, 0xae, 0x5c, 0x79, 0xeb, 0x4f, 0x77, 0x76,
2258 0x76, 0x1a, 0x08, 0x4e, 0xd6, 0xc9, 0x1b, 0xf8,
2259 0x59, 0x9d, 0x87, 0x73, 0x0d, 0xfe, 0x45, 0x20,
2260 0x80, 0x20, 0xc7, 0x60, 0x5c, 0xc0, 0x26, 0x05,
2261 0xb4, 0x90, 0x27, 0xf8, 0xbd, 0x9f, 0x97, 0x4a,
2262 0x25, 0xf5, 0xbe, 0xfb, 0xee, 0x7d, 0x74, 0x6d,
2263 0x7d, 0xed, 0x07, 0x15, 0x45, 0xfd, 0xb0, 0x10,
2264 0xd0, 0x70, 0x74, 0xde, 0x85, 0x52, 0x7a, 0xb5,
2265 0xdf, 0xeb, 0x7d, 0x7b, 0xb7, 0x56, 0x7b, 0xee,
2266 0xb5, 0xcb, 0xaf, 0x7d, 0xc7, 0xa1, 0xe2, 0x07,
2267 0x81, 0x3d, 0x2f, 0x12, 0x48, 0x43, 0x08, 0x34,
2268 0xe5, 0x77, 0x28, 0x08, 0x60, 0x7f, 0xb4, 0x01,
2269 0x21, 0x27, 0x00, 0xe7, 0xa6, 0xee, 0xc7, 0x01,
2270 0x3f, 0xef, 0xff, 0x53, 0xa7, 0x4e, 0x6d, 0x1e,
2271 0xdd, 0x3c, 0xfa, 0x68, 0xa5, 0x5c, 0x7a, 0x48,
2272 0x56, 0xd4, 0xfb, 0x44, 0x51, 0x38, 0x85, 0xf9,
2273 0xeb, 0xe5, 0x40, 0x4d, 0xd3, 0x78, 0x67, 0x30,
2274 0x30, 0x2e, 0x77, 0x3a, 0xad, 0x17, 0xaf, 0x5e,
2275 0xbb, 0xfe, 0xed, 0xf7, 0xdf, 0x79, 0xff, 0x9a,
2276 0x07, 0xd4, 0x88, 0x01, 0xf8, 0x49, 0x90, 0xc0,
2277 0x24, 0x08, 0x61, 0xee, 0x40, 0x83, 0x05, 0x24,
2278 0x81, 0x54, 0xcb, 0x76, 0x39, 0x03, 0x3e, 0x35,
2279 0xf0, 0x11, 0x50, 0x91, 0x68, 0x75, 0x75, 0xb5,
2280 0x7c, 0xf2, 0xce, 0x93, 0xe7, 0xaa, 0xcb, 0xd5,
2281 0xfb, 0x15, 0x55, 0xb9, 0x53, 0x96, 0xe4, 0x53,
2282 0xa2, 0x28, 0x9c, 0x9a, 0x15, 0xb3, 0x81, 0x31,
2283 0xd6, 0x36, 0x4c, 0xf3, 0x3d, 0xc3, 0x30, 0xde,
2284 0x1e, 0xf4, 0xfb, 0x6f, 0x37, 0xeb, 0xad, 0x97,
2285 0xdf, 0x7d, 0xf7, 0xdd, 0x57, 0x87, 0xd9, 0x79,
2286 0x40, 0xf2, 0x22, 0x1c, 0xd3, 0x26, 0x81, 0xac,
2287 0xcb, 0x8a, 0x28, 0x08, 0x60, 0x76, 0xfd, 0x02,
2288 0xd3, 0x02, 0x7c, 0x56, 0xf0, 0x47, 0xbd, 0xf7,
2289 0xfd, 0x3d, 0x79, 0x72, 0xf3, 0xe8, 0xfa, 0xfa,
2290 0xa1, 0x93, 0x6a, 0xa9, 0x7c, 0x9b, 0xa2, 0x28,
2291 0x1b, 0xb2, 0x24, 0x1e, 0x11, 0x45, 0xe9, 0x88,
2292 0x20, 0x8a, 0xb7, 0x13, 0x01, 0x65, 0x81, 0x08,
2293 0xcb, 0x43, 0x92, 0x48, 0x5b, 0x02, 0xce, 0x64,
2294 0x8c, 0x75, 0x18, 0x63, 0x0d, 0xca, 0x68, 0x87,
2295 0x1a, 0xf4, 0x96, 0x69, 0x1a, 0xb7, 0x0c, 0xc3,
2296 0xd8, 0xea, 0x0f, 0xf4, 0x9b, 0xdd, 0x6e, 0xf7,
2297 0xc6, 0xce, 0xd6, 0xce, 0x7b, 0x57, 0xaf, 0x5e,
2298 0xbd, 0x85, 0xe0, 0x8e, 0xba, 0x2c, 0x27, 0x12,
2299 0x98, 0x36, 0x11, 0xc4, 0x25, 0x03, 0x14, 0x04,
2300 0x30, 0xdb, 0x44, 0x20, 0x4c, 0x11, 0xec, 0x42,
2301 0xc0, 0x39, 0x44, 0x7d, 0x16, 0x06, 0xf8, 0x50,
2302 0x12, 0x88, 0x78, 0x0f, 0x58, 0xcb, 0x90, 0x6a,
2303 0x65, 0xa5, 0xb2, 0xbc, 0xb6, 0xbc, 0x16, 0x2b,
2304 0x28, 0x69, 0xaf, 0xb9, 0xb7, 0xdd, 0xae, 0xb7,
2305 0x9b, 0xcd, 0x66, 0xb3, 0xef, 0x01, 0x2f, 0x38,
2306 0xff, 0xc7, 0x69, 0xab, 0x9d, 0xa6, 0x62, 0x4e,
2307 0x94, 0x36, 0x40, 0xf7, 0x59, 0x3b, 0x98, 0x7b,
2308 0x90, 0xe0, 0x00, 0x91, 0xc0, 0xb4, 0x67, 0xfa,
2309 0x4c, 0x2a, 0x7f, 0x0c, 0x12, 0x88, 0x43, 0x04,
2310 0x61, 0xcf, 0x39, 0x51, 0x66, 0x71, 0x02, 0x12,
2311 0x88, 0x22, 0x83, 0x3c, 0xb5, 0x81, 0xfd, 0xd4,
2312 0x0c, 0x50, 0x10, 0xc0, 0xc1, 0x26, 0x02, 0xe4,
2313 0xf0, 0x5d, 0x62, 0x95, 0x3f, 0x81, 0x16, 0x10,
2314 0xf4, 0x8c, 0x93, 0x3c, 0x77, 0x96, 0x91, 0x04,
2315 0xc2, 0x8a, 0x71, 0x02, 0xf9, 0x9b, 0x01, 0x28,
2316 0x80, 0x5f, 0x10, 0xc0, 0x34, 0x88, 0x20, 0x09,
2317 0xf8, 0x79, 0xff, 0x0b, 0x19, 0x55, 0xfe, 0x28,
2318 0x2d, 0x20, 0x0f, 0xf0, 0xe7, 0x4d, 0x02, 0x59,
2319 0xfc, 0x01, 0xb3, 0xe0, 0x23, 0x58, 0x48, 0x40,
2320 0x1c, 0x44, 0x99, 0x96, 0x73, 0x2f, 0x89, 0xc3,
2321 0x2f, 0x2b, 0xf8, 0xa3, 0x34, 0x81, 0x3c, 0x9e,
2322 0x37, 0x8b, 0xf9, 0x7f, 0x56, 0x7f, 0x40, 0x56,
2323 0x62, 0x48, 0x4b, 0x04, 0x38, 0x48, 0xe0, 0x3f,
2324 0xc8, 0x04, 0x90, 0x85, 0x08, 0xd2, 0x82, 0x3f,
2325 0x08, 0xec, 0x51, 0x5a, 0x40, 0x1a, 0xbb, 0x9f,
2326 0x4c, 0xf0, 0x59, 0xa7, 0x75, 0x04, 0x86, 0x81,
2327 0x3f, 0x0f, 0x9f, 0x40, 0x1e, 0x24, 0x80, 0x83,
2328 0x02, 0xfc, 0x82, 0x00, 0xd2, 0x11, 0x41, 0x5c,
2329 0xf0, 0xc7, 0x9d, 0xf5, 0xd3, 0xd8, 0xfc, 0x89,
2330 0xbd, 0xff, 0x09, 0xc7, 0x01, 0x9b, 0x10, 0x09,
2331 0xa4, 0xf5, 0x05, 0x24, 0xf5, 0x0f, 0x20, 0x03,
2332 0x09, 0xe0, 0xa0, 0x00, 0xbf, 0x20, 0x80, 0x64,
2333 0x44, 0x30, 0x09, 0x95, 0x1f, 0xc8, 0xe6, 0xf8,
2334 0xe3, 0xbd, 0x4f, 0x02, 0x7e, 0x92, 0x02, 0xe8,
2335 0x51, 0x24, 0x90, 0x65, 0x59, 0x30, 0x89, 0x06,
2336 0x30, 0x29, 0x6d, 0xe0, 0x40, 0x0e, 0xf8, 0x42,
2337 0xc2, 0x89, 0x20, 0x8f, 0x59, 0x3f, 0x49, 0x5f,
2338 0xc2, 0x34, 0x0e, 0xbf, 0x69, 0xa9, 0xff, 0x71,
2339 0x1c, 0x82, 0x79, 0x90, 0xc0, 0xb4, 0x4d, 0x82,
2340 0x03, 0x3d, 0xd0, 0x0b, 0x49, 0xae, 0x15, 0x4c,
2341 0x52, 0xe5, 0x8f, 0x03, 0xfa, 0x24, 0x2a, 0x3f,
2342 0x49, 0x31, 0x06, 0xd8, 0x04, 0x48, 0x20, 0x2e,
2343 0x19, 0x24, 0xf9, 0x2c, 0xad, 0x83, 0x10, 0x07,
2344 0x1d, 0xf8, 0x05, 0x01, 0xa4, 0xbf, 0x57, 0x69,
2345 0x1c, 0x7d, 0x79, 0xa8, 0xfc, 0x69, 0x96, 0xfd,
2346 0x48, 0x0e, 0xcf, 0x3d, 0x4d, 0x40, 0x50, 0x5c,
2347 0xc0, 0xc7, 0x01, 0x7a, 0xde, 0x26, 0x41, 0x21,
2348 0x05, 0x01, 0x4c, 0x84, 0x0c, 0x80, 0xe9, 0x07,
2349 0xfa, 0x90, 0x09, 0x83, 0x3f, 0x2f, 0x12, 0xc8,
2350 0xd3, 0x1f, 0x90, 0x86, 0x04, 0x0a, 0x29, 0x08,
2351 0x60, 0x6a, 0x64, 0x10, 0x17, 0xf0, 0x93, 0xb4,
2352 0xfb, 0x27, 0xe5, 0x07, 0x48, 0x1b, 0x10, 0x94,
2353 0x37, 0x09, 0xc4, 0xed, 0xea, 0x5b, 0x48, 0x41,
2354 0x00, 0xfb, 0xe6, 0x33, 0x40, 0x06, 0x12, 0x48,
2355 0xab, 0x05, 0x4c, 0x12, 0xfc, 0x79, 0x92, 0x40,
2356 0x96, 0x40, 0x21, 0x14, 0xb3, 0x7c, 0x41, 0x00,
2357 0x8b, 0x40, 0x08, 0x79, 0xd8, 0xfd, 0xd3, 0x06,
2358 0xff, 0x24, 0x48, 0x20, 0x8b, 0x3f, 0xa0, 0x90,
2359 0x82, 0x00, 0xe6, 0xda, 0x64, 0xc8, 0xd3, 0xee,
2360 0x4f, 0x03, 0x7e, 0x92, 0x02, 0xe8, 0x69, 0x7c,
2361 0x00, 0x79, 0xf9, 0x03, 0x0a, 0x29, 0x08, 0xe0,
2362 0x40, 0x90, 0x42, 0x16, 0x22, 0x88, 0x7a, 0xb6,
2363 0x79, 0x3a, 0x01, 0xb3, 0xfa, 0x00, 0x0a, 0xb0,
2364 0x17, 0x04, 0x50, 0x48, 0xcc, 0xe7, 0xb3, 0x5f,
2365 0xe0, 0x8f, 0x43, 0x04, 0x59, 0x49, 0xa0, 0x90,
2366 0x82, 0x00, 0x0a, 0xc9, 0xe9, 0xf9, 0xed, 0x87,
2367 0x13, 0x30, 0x8e, 0x39, 0x50, 0x48, 0x21, 0x85,
2368 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
2369 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
2370 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21,
2371 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52,
2372 0x48, 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85,
2373 0x14, 0x52, 0x48, 0x21, 0x85, 0x14, 0x52, 0x48,
2374 0x21, 0x85, 0x14, 0x52, 0x48, 0x21, 0x85, 0x14,
2375 0x52, 0x48, 0x46, 0xf9, 0x6f, 0xc0, 0x8f, 0xef,
2376 0xbb, 0xae, 0xa8, 0xc2, 0x7f, 0x00, 0x00, 0x00,
2377 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
2378 0x82, 0x00, 0x00, 0x28, 0x75, 0x75, 0x61, 0x79,
2379 0x29, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
2380 0x65, 0x77, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67,
2381 0x3c, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2382 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
2383 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
2384 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20,
2385 0x08, 0x06, 0x00, 0x00, 0x00, 0x73, 0x7a, 0x7a,
2386 0xf4, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49,
2387 0x54, 0x08, 0x08, 0x08, 0x08, 0x7c, 0x08, 0x64,
2388 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59,
2389 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d,
2390 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00,
2391 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f,
2392 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77,
2393 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63,
2394 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b,
2395 0xee, 0x3c, 0x1a, 0x00, 0x00, 0x05, 0xb9, 0x49,
2396 0x44, 0x41, 0x54, 0x58, 0x85, 0xc5, 0x57, 0x4b,
2397 0x8f, 0x63, 0x47, 0x15, 0xfe, 0xaa, 0xea, 0x56,
2398 0xd5, 0x75, 0x8f, 0xed, 0xee, 0x76, 0x37, 0x19,
2399 0x26, 0x2d, 0x02, 0xd3, 0xf3, 0x20, 0xc9, 0x74,
2400 0xc3, 0x82, 0x24, 0x68, 0x44, 0x88, 0x82, 0x82,
2401 0xb0, 0x66, 0x11, 0x14, 0x65, 0x01, 0xac, 0x58,
2402 0xe7, 0x2f, 0x64, 0x11, 0xb1, 0x43, 0x48, 0x48,
2403 0xd9, 0x05, 0x89, 0x05, 0x0a, 0x6c, 0x10, 0x3f,
2404 0x21, 0xde, 0x21, 0xc4, 0x23, 0x44, 0x4c, 0x93,
2405 0x99, 0x46, 0x30, 0x51, 0x80, 0x69, 0xd2, 0x78,
2406 0xda, 0x49, 0x3f, 0xfc, 0x6a, 0xbf, 0x6e, 0x55,
2407 0x9d, 0xc3, 0xc2, 0xf7, 0x3a, 0xbe, 0xb6, 0xd3,
2408 0x43, 0x46, 0x23, 0xe5, 0x93, 0x8e, 0xeb, 0xd4,
2409 0xad, 0xf2, 0x39, 0xdf, 0x3d, 0xe7, 0xd4, 0xe3,
2410 0x8a, 0x6a, 0xb5, 0x8a, 0xcf, 0x12, 0xf2, 0x33,
2411 0xf5, 0x0e, 0x20, 0xca, 0x94, 0x1b, 0x37, 0x6e,
2412 0x3c, 0xad, 0xb5, 0x7e, 0x93, 0x99, 0xbf, 0x70,
2413 0xbf, 0x3f, 0x31, 0x33, 0x88, 0x08, 0x44, 0x34,
2414 0xd1, 0x99, 0x09, 0x21, 0xd0, 0xfc, 0x18, 0x13,
2415 0x98, 0xc6, 0xcf, 0x84, 0x10, 0x7d, 0xe7, 0xdc,
2416 0x4f, 0x77, 0x76, 0x76, 0x5e, 0x9f, 0x23, 0xa0,
2417 0xb5, 0x7e, 0x6d, 0x6b, 0xfb, 0xda, 0xb5, 0xcd,
2418 0xcd, 0x2f, 0x9d, 0xed, 0x7c, 0xea, 0x37, 0x53,
2419 0x39, 0x37, 0xca, 0xe3, 0x3e, 0xcf, 0x8f, 0x0d,
2420 0x06, 0xc3, 0xf2, 0x9b, 0xbf, 0xf8, 0xd5, 0x8f,
2421 0xb7, 0xb7, 0xb7, 0x7f, 0xbe, 0xbb, 0xbb, 0xdb,
2422 0xcb, 0x11, 0x00, 0xb0, 0xb1, 0xb6, 0x5e, 0xc1,
2423 0x6f, 0x7f, 0xb7, 0x8f, 0x5f, 0xfe, 0xfa, 0x26,
2424 0xac, 0x95, 0x10, 0x10, 0x00, 0x00, 0x21, 0x04,
2425 0xc0, 0x0c, 0xa4, 0xad, 0x10, 0x62, 0xa2, 0x33,
2426 0x0b, 0xe0, 0xe3, 0xee, 0x78, 0x2c, 0x75, 0x28,
2427 0x00, 0xf8, 0x40, 0xf8, 0xce, 0xb7, 0xae, 0xe2,
2428 0xfb, 0xdf, 0xbb, 0x86, 0xa5, 0xa5, 0x73, 0x88,
2429 0xa2, 0x28, 0xb4, 0xdb, 0xed, 0x0a, 0x80, 0x39,
2430 0x02, 0x45, 0x1d, 0x69, 0xfc, 0xfd, 0x1f, 0x1f,
2431 0xe1, 0xb1, 0xab, 0x11, 0x4c, 0x2c, 0x90, 0x87,
2432 0x98, 0x69, 0x67, 0xf5, 0x7c, 0x8c, 0x32, 0xb4,
2433 0x3a, 0x03, 0xfc, 0xe5, 0x66, 0x1d, 0xd7, 0x9e,
2434 0x10, 0xd8, 0xda, 0xde, 0x82, 0xd6, 0xda, 0x2b,
2435 0xa5, 0x4a, 0xd9, 0xf8, 0x84, 0x00, 0x33, 0x17,
2436 0x75, 0x14, 0xe1, 0xe4, 0xa4, 0x8f, 0x60, 0x3c,
2437 0x86, 0xa3, 0x05, 0xb6, 0x1f, 0x00, 0x21, 0x10,
2438 0xc2, 0x30, 0xc1, 0x13, 0x4f, 0x5e, 0x85, 0x10,
2439 0x04, 0x63, 0x0d, 0x7b, 0xef, 0xcb, 0x0b, 0x08,
2440 0xd0, 0x52, 0xa4, 0x23, 0x34, 0x5b, 0x23, 0xa8,
2441 0x75, 0x06, 0xe8, 0xe1, 0x10, 0x20, 0x16, 0x70,
2442 0x49, 0xc0, 0x7b, 0x77, 0xde, 0xc7, 0xe6, 0xe6,
2443 0x25, 0x58, 0x63, 0x04, 0x11, 0xcd, 0x47, 0x80,
2444 0x88, 0x0b, 0x2a, 0x8a, 0xe0, 0x7c, 0x00, 0x13,
2445 0x2f, 0xb6, 0xf6, 0x29, 0xd0, 0xeb, 0x8f, 0x70,
2446 0xdc, 0xea, 0xe2, 0xa8, 0xd9, 0xc5, 0xe6, 0xb9,
2447 0xcb, 0xb8, 0x74, 0x65, 0x13, 0x5a, 0x47, 0xb0,
2448 0x85, 0x58, 0x38, 0xe7, 0xf2, 0x11, 0xb8, 0x7e,
2449 0xfd, 0xba, 0x14, 0x42, 0x18, 0xa5, 0x24, 0x9c,
2450 0x27, 0x30, 0x2d, 0xca, 0xed, 0xfd, 0xd1, 0xed,
2451 0x0d, 0xd1, 0xec, 0xf4, 0xd1, 0xea, 0xf4, 0x90,
2452 0x38, 0x9f, 0x3e, 0x15, 0x18, 0xb9, 0x80, 0x7b,
2453 0xf5, 0x7b, 0x58, 0x59, 0xae, 0x60, 0xa9, 0x10,
2454 0x4b, 0x66, 0xce, 0x13, 0xa8, 0x54, 0x2a, 0x45,
2455 0x21, 0x84, 0x63, 0x86, 0xf1, 0x81, 0x01, 0xfa,
2456 0x74, 0xfb, 0x53, 0xb7, 0x37, 0xc0, 0xc1, 0x61,
2457 0x1b, 0xa3, 0x24, 0x73, 0xaa, 0xa0, 0x22, 0x35,
2458 0x19, 0x77, 0x8e, 0x71, 0xfe, 0xf3, 0xe7, 0x61,
2459 0xb4, 0x41, 0x1c, 0x17, 0xf4, 0x5c, 0x0a, 0x06,
2460 0x83, 0x41, 0xb9, 0x54, 0x2a, 0x06, 0x66, 0x86,
2461 0x0f, 0x0c, 0xfe, 0x3f, 0xf3, 0x3f, 0x4a, 0x02,
2462 0x8e, 0x5a, 0x5d, 0xf4, 0x07, 0x09, 0x00, 0x09,
2463 0xa5, 0xcd, 0xc2, 0x79, 0xc9, 0x80, 0x71, 0x50,
2464 0x3f, 0xc0, 0xea, 0xea, 0x1a, 0xe2, 0x42, 0x1c,
2465 0x11, 0xd1, 0x5c, 0x11, 0x96, 0xb4, 0x31, 0x1e,
2466 0xcc, 0x70, 0x81, 0xc0, 0xa4, 0x16, 0x1a, 0xca,
2467 0x40, 0x4c, 0x68, 0x75, 0x06, 0x38, 0x1d, 0x8c,
2468 0x00, 0x08, 0x28, 0x6d, 0xcf, 0x9c, 0xef, 0x4e,
2469 0x19, 0x8f, 0x9c, 0xff, 0x1c, 0x8c, 0xb1, 0x28,
2470 0xc4, 0xb1, 0x14, 0x42, 0xac, 0xe6, 0x08, 0x84,
2471 0x10, 0xca, 0x3a, 0xd2, 0x4c, 0x60, 0x24, 0x01,
2472 0x10, 0xfc, 0xc9, 0x29, 0xe8, 0x0d, 0x13, 0xf4,
2473 0xfa, 0x09, 0x88, 0x01, 0x15, 0x9d, 0xed, 0x78,
2474 0x42, 0x80, 0x19, 0xce, 0x07, 0x44, 0x11, 0xc1,
2475 0xc6, 0x31, 0x20, 0xb1, 0x96, 0x23, 0xc0, 0xcc,
2476 0x65, 0x63, 0x0d, 0x40, 0x0c, 0x97, 0x10, 0x14,
2477 0xeb, 0x39, 0x23, 0x9e, 0x08, 0xfd, 0xa1, 0x43,
2478 0x08, 0x0c, 0x11, 0x69, 0x9c, 0x1d, 0xa3, 0x3c,
2479 0x48, 0x06, 0x74, 0x3b, 0x09, 0xac, 0x31, 0x88,
2480 0x6d, 0x0c, 0x0e, 0x5c, 0xc9, 0x11, 0x20, 0xa2,
2481 0x92, 0x31, 0x46, 0x12, 0x13, 0x1c, 0x01, 0x99,
2482 0x79, 0x66, 0x20, 0x30, 0xc3, 0x07, 0x42, 0x08,
2483 0x00, 0xa4, 0x86, 0x7a, 0x80, 0xf3, 0x93, 0x74,
2484 0x82, 0x76, 0x7b, 0x88, 0xca, 0x5a, 0x01, 0x71,
2485 0x6c, 0xc1, 0xcc, 0xcb, 0x39, 0x02, 0x21, 0x84,
2486 0xb2, 0xb5, 0x46, 0xf5, 0xfb, 0x01, 0x24, 0x05,
2487 0x1c, 0x47, 0xe9, 0x49, 0x96, 0xee, 0x07, 0x52,
2488 0x3d, 0x90, 0xe3, 0x0c, 0x23, 0x1d, 0xd0, 0x6e,
2489 0x27, 0xa0, 0xc0, 0xb0, 0xd6, 0x22, 0x04, 0x9f,
2490 0x27, 0xe0, 0xbd, 0x2f, 0x59, 0x63, 0x55, 0xbf,
2491 0x37, 0x02, 0x45, 0x0a, 0x2c, 0xc7, 0xb5, 0xf9,
2492 0xb0, 0x2e, 0x0b, 0x1c, 0x39, 0xb4, 0x5a, 0x43,
2493 0x04, 0x0a, 0xb0, 0xb1, 0x45, 0x08, 0x54, 0xcc,
2494 0x11, 0x20, 0xa2, 0xb2, 0x8d, 0xad, 0xee, 0xf5,
2495 0x1c, 0xa0, 0xe4, 0xd4, 0x89, 0xf6, 0x70, 0x10,
2496 0xd9, 0x08, 0x87, 0xc7, 0x43, 0x84, 0x10, 0x50,
2497 0x5c, 0x8a, 0xe1, 0x9c, 0xcb, 0x13, 0x10, 0x42,
2498 0x54, 0xac, 0xb1, 0xc2, 0xc6, 0x0a, 0x57, 0x57,
2499 0x34, 0x70, 0xba, 0xe8, 0x24, 0x7a, 0xf0, 0xed,
2500 0x99, 0x0d, 0x70, 0xf9, 0x72, 0x09, 0x44, 0x01,
2501 0xd6, 0x1a, 0x84, 0x10, 0x96, 0x72, 0x04, 0x00,
2502 0xae, 0xa8, 0x48, 0xa1, 0x58, 0xd2, 0x78, 0xed,
2503 0xd5, 0xaf, 0xdc, 0xd7, 0x20, 0x05, 0xc2, 0x68,
2504 0xe0, 0x20, 0x84, 0x84, 0x90, 0x02, 0x26, 0x9e,
2505 0x3e, 0xd5, 0x3f, 0x99, 0x28, 0x13, 0x43, 0x29,
2506 0x05, 0x66, 0x8e, 0x73, 0x04, 0x92, 0xc4, 0x1d,
2507 0xed, 0xef, 0xef, 0xbb, 0x47, 0x1f, 0xfd, 0xba,
2508 0x56, 0x72, 0x7e, 0x09, 0x2e, 0xc4, 0xea, 0xfd,
2509 0xa7, 0xcc, 0x42, 0x29, 0x89, 0xc6, 0x41, 0x03,
2510 0x42, 0x88, 0x5e, 0x8e, 0x00, 0x33, 0xff, 0xec,
2511 0x0f, 0xbf, 0xff, 0xe3, 0xcb, 0x6f, 0xff, 0xe9,
2512 0xed, 0x0d, 0x6b, 0x63, 0x66, 0x30, 0x98, 0x08,
2513 0x44, 0x3c, 0x73, 0xef, 0x63, 0x10, 0x93, 0x62,
2514 0x22, 0x3d, 0x3b, 0x46, 0x4c, 0x0c, 0xe6, 0xd1,
2515 0xb8, 0x9f, 0xbf, 0x17, 0x66, 0x70, 0xce, 0xa1,
2516 0xdb, 0xed, 0x92, 0x10, 0xe2, 0xd5, 0x1c, 0x81,
2517 0xdd, 0xdd, 0xdd, 0xbb, 0x00, 0x2e, 0x5d, 0xbc,
2518 0x78, 0xf1, 0x11, 0x29, 0x7b, 0x12, 0x00, 0xbc,
2519 0xf7, 0xa2, 0xd3, 0xe9, 0x88, 0x24, 0x49, 0xa4,
2520 0x52, 0x4a, 0x0e, 0x46, 0x83, 0x1f, 0x5a, 0x6b,
2521 0x7e, 0x00, 0xe0, 0x8a, 0x8e, 0xa6, 0x43, 0x3e,
2522 0x06, 0x83, 0xc5, 0x68, 0x98, 0x1c, 0x7a, 0x0a,
2523 0xef, 0x9c, 0xb6, 0x4f, 0x7f, 0x42, 0x44, 0x1f,
2524 0x4a, 0x29, 0x59, 0x4a, 0xc9, 0x4a, 0xa9, 0x49,
2525 0xcb, 0xcc, 0x4d, 0x22, 0x9a, 0x14, 0x99, 0x98,
2526 0xfd, 0x2e, 0xa8, 0xd5, 0x6a, 0x12, 0xe3, 0x15,
2527 0xa8, 0x33, 0xf9, 0xee, 0x4b, 0x2f, 0xbe, 0xb5,
2528 0xbc, 0x5c, 0x7e, 0xf2, 0xa9, 0xa7, 0x9f, 0x5a,
2529 0xea, 0xf7, 0x7b, 0xb8, 0xf5, 0xd7, 0xdb, 0x73,
2530 0x04, 0xb4, 0xd6, 0x78, 0xf6, 0xb9, 0x6f, 0xe0,
2531 0x9f, 0xef, 0xff, 0x2b, 0xb9, 0x73, 0xe7, 0x3d,
2532 0x5f, 0x3f, 0xb8, 0xf7, 0xe2, 0xce, 0x3b, 0x3b,
2533 0x7f, 0x03, 0xe0, 0xa6, 0xc4, 0x03, 0xa0, 0x6a,
2534 0xb5, 0x3a, 0x09, 0xcb, 0xe4, 0x55, 0x6a, 0xb5,
2535 0x9a, 0x00, 0xa0, 0x00, 0x98, 0x54, 0x2c, 0x80,
2536 0xf8, 0x99, 0x67, 0xbe, 0xf6, 0x7c, 0xb1, 0x54,
2537 0xda, 0x7a, 0xe1, 0xdb, 0x2f, 0xc4, 0xa5, 0x52,
2538 0x11, 0xcd, 0x66, 0x13, 0x8f, 0x3f, 0xfe, 0xe5,
2539 0x05, 0xf9, 0x55, 0x58, 0x5f, 0x5f, 0x47, 0xa9,
2540 0x5c, 0x36, 0xb6, 0x60, 0x75, 0xe2, 0xdc, 0x8f,
2541 0x00, 0xbc, 0x02, 0x60, 0x34, 0x23, 0x49, 0xad,
2542 0x56, 0x73, 0xd5, 0x6a, 0x95, 0x72, 0x04, 0xd2,
2543 0xb7, 0x36, 0x00, 0xe2, 0x69, 0xa9, 0xd7, 0x1b,
2544 0xc7, 0x17, 0x36, 0x36, 0x64, 0xe3, 0xc3, 0x06,
2545 0xac, 0xfd, 0x22, 0xb6, 0xb7, 0xbe, 0x8a, 0xe7,
2546 0xbe, 0xf9, 0x3c, 0x56, 0x96, 0x57, 0x10, 0xc7,
2547 0x05, 0x78, 0xef, 0xd1, 0x6e, 0xb7, 0xd0, 0x6c,
2548 0x35, 0xd1, 0x68, 0x1c, 0xe0, 0xdf, 0x77, 0xf7,
2549 0xf0, 0x51, 0xe3, 0x28, 0x34, 0x8f, 0x9b, 0x75,
2550 0x00, 0x6b, 0x00, 0x3a, 0x69, 0x24, 0x55, 0xea,
2551 0x43, 0x00, 0xa0, 0x5a, 0xad, 0xc6, 0xd5, 0x6a,
2552 0x95, 0x67, 0x93, 0x29, 0x52, 0xc9, 0xd2, 0x20,
2553 0xeb, 0xf5, 0xfa, 0xd1, 0xfa, 0xdd, 0xf5, 0x37,
2554 0x88, 0xe8, 0x95, 0xfd, 0xc7, 0x3e, 0x50, 0xb7,
2555 0x77, 0x77, 0xb5, 0xb5, 0x56, 0x08, 0x88, 0xf4,
2556 0x0b, 0x80, 0x21, 0x85, 0x84, 0xf3, 0x1e, 0xbd,
2557 0xd3, 0x9e, 0xff, 0xcf, 0xde, 0x07, 0x7c, 0x74,
2558 0x78, 0xf8, 0xee, 0xed, 0x5b, 0xb7, 0xdf, 0xc2,
2559 0xf8, 0x66, 0xa9, 0xa6, 0xec, 0xcd, 0xed, 0x70,
2560 0xd3, 0x04, 0x28, 0xcd, 0x53, 0x36, 0x39, 0x23,
2561 0x84, 0x5b, 0xef, 0xde, 0xfa, 0xcd, 0xde, 0xdd,
2562 0xbd, 0x3f, 0x5f, 0xd8, 0xb8, 0xf0, 0xec, 0xb9,
2563 0x73, 0x4b, 0x57, 0x56, 0x57, 0x57, 0x2e, 0xc5,
2564 0x71, 0xe1, 0x3c, 0x33, 0x17, 0x85, 0x10, 0xce,
2565 0x3b, 0x7f, 0xd2, 0x6e, 0xb7, 0xfe, 0xdb, 0x6e,
2566 0x77, 0xf7, 0x4e, 0x8e, 0x4f, 0x76, 0x1b, 0x8d,
2567 0xc6, 0x4d, 0x00, 0xc7, 0x00, 0x86, 0x0b, 0x64,
2568 0x04, 0x20, 0x64, 0x75, 0x90, 0x2b, 0xc2, 0xb4,
2569 0x0e, 0xb2, 0x02, 0xcc, 0xea, 0xc0, 0xe0, 0xe3,
2570 0x82, 0x34, 0x00, 0x0a, 0x59, 0x7a, 0x94, 0x52,
2571 0x85, 0x10, 0x82, 0x4f, 0x89, 0x8f, 0x00, 0xf4,
2572 0xd3, 0xd6, 0x03, 0x48, 0xd2, 0xe7, 0x49, 0xea,
2573 0x38, 0xeb, 0x87, 0xe9, 0x22, 0x9c, 0x5b, 0x05,
2574 0x53, 0x44, 0x32, 0x32, 0x59, 0x08, 0xa3, 0x29,
2575 0x7d, 0x3a, 0xac, 0x59, 0xf4, 0x32, 0x09, 0x69,
2576 0xeb, 0x53, 0x3d, 0x60, 0xbc, 0x3d, 0xe6, 0xaa,
2577 0xff, 0x4c, 0x02, 0x67, 0x10, 0xc2, 0x82, 0x36,
2578 0x03, 0xcf, 0xb6, 0x8b, 0x1c, 0xce, 0xe2, 0x7f,
2579 0x16, 0x4f, 0x0f, 0x53, 0x97, 0x54, 0x4d, 0x69,
2580 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
2581 0xae, 0x42, 0x60, 0x82, 0x00, 0x00, 0x28, 0x75,
2582 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72, 0x74,
2583 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d,
2584 0x61, 0x75, 0x74, 0x68, 0x2e, 0x75, 0x69, 0x00,
2585 0x05, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2586 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
2587 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
2588 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
2589 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
2590 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
2591 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
2592 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
2593 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
2594 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71, 0x75,
2595 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74, 0x6b,
2596 0x2b, 0x20, 0x32, 0x2e, 0x31, 0x32, 0x20, 0x2d,
2597 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62,
2598 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
2599 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x44,
2600 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x20, 0x69,
2601 0x64, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x22,
2602 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2603 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2604 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
2605 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
2606 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
2607 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2608 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2609 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2610 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f,
2611 0x72, 0x64, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64,
2612 0x74, 0x68, 0x22, 0x3e, 0x35, 0x3c, 0x2f, 0x70,
2613 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2614 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
2615 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
2616 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x69, 0x74,
2617 0x6c, 0x65, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
2618 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
2619 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41,
2620 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63,
2621 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x72, 0x65,
2622 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x3c, 0x2f,
2623 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2624 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2625 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2626 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6d, 0x6f,
2627 0x64, 0x61, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
2628 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2629 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2630 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2631 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2632 0x22, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f,
2633 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
2634 0x22, 0x3e, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
2635 0x2d, 0x6f, 0x6e, 0x2d, 0x70, 0x61, 0x72, 0x65,
2636 0x6e, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2637 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2638 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2639 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2640 0x3d, 0x22, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f,
2641 0x79, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x70,
2642 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x54,
2643 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2644 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2645 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2646 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2647 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65, 0x5f,
2648 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64, 0x69,
2649 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70, 0x72,
2650 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2651 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2652 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2653 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70,
2654 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x62, 0x61, 0x72,
2655 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x54,
2656 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2657 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2658 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2659 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2660 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70, 0x5f,
2661 0x70, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x68, 0x69,
2662 0x6e, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
2663 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2664 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2665 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20, 0x69,
2666 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d,
2667 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3d, 0x22, 0x76,
2668 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2669 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
2670 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
2671 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x6f,
2672 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64,
2673 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x2d, 0x76, 0x62,
2674 0x6f, 0x78, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2675 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2676 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2677 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
2678 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
2679 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2680 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2681 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2682 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2683 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
2684 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
2685 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
2686 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2687 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2688 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2689 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2690 0x65, 0x3d, 0x22, 0x6f, 0x72, 0x69, 0x65, 0x6e,
2691 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
2692 0x76, 0x65, 0x72, 0x74, 0x69, 0x63, 0x61, 0x6c,
2693 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2694 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2695 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2696 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2697 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x70, 0x61, 0x63,
2698 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x32, 0x3c, 0x2f,
2699 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2700 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2701 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
2702 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
2703 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3d,
2704 0x22, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
2705 0x61, 0x72, 0x65, 0x61, 0x22, 0x3e, 0x0a, 0x20,
2706 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2707 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
2708 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
2709 0x47, 0x74, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f,
2710 0x6e, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69, 0x64,
2711 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67,
2712 0x2d, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
2713 0x61, 0x72, 0x65, 0x61, 0x31, 0x22, 0x3e, 0x0a,
2714 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2715 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2716 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2717 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
2718 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
2719 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2720 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2721 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2722 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2723 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2724 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
2725 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
2726 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2727 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2728 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2729 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2730 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2731 0x22, 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f,
2732 0x73, 0x74, 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65,
2733 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2734 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2735 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2736 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
2737 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2738 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2739 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
2740 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
2741 0x74, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
2742 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75,
2743 0x74, 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x61, 0x6e,
2744 0x63, 0x65, 0x6c, 0x22, 0x3e, 0x0a, 0x20, 0x20,
2745 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2746 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2747 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2748 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
2749 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
2750 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
2751 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
2752 0x5f, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x3c,
2753 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2754 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2755 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2756 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2757 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2758 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
2759 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
2760 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2761 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2762 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2763 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
2764 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
2765 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
2766 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54,
2767 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2768 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2769 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2770 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2771 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2772 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72,
2773 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x73, 0x5f,
2774 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22,
2775 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
2776 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2777 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2778 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2779 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2780 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2781 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
2782 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
2783 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
2784 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2785 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2786 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2787 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2788 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2789 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2790 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64,
2791 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e,
2792 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
2793 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2794 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2795 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
2796 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
2797 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2798 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2799 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
2800 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2801 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2802 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2803 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2804 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e,
2805 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2806 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2807 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2808 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2809 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2810 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2811 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x46,
2812 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
2813 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2814 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2815 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2816 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2817 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2818 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
2819 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
2820 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
2821 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2822 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
2823 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
2824 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2825 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
2826 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2827 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2828 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
2829 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2830 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2831 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
2832 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
2833 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
2834 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74,
2835 0x74, 0x6f, 0x6e, 0x2d, 0x6f, 0x6b, 0x22, 0x3e,
2836 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2837 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2838 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2839 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2840 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
2841 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
2842 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
2843 0x73, 0x22, 0x3e, 0x5f, 0x4f, 0x4b, 0x3c, 0x2f,
2844 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2845 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2846 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2847 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2848 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2849 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
2850 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
2851 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2852 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2853 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2854 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2855 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2856 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
2857 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72,
2858 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2859 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2860 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2861 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2862 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2863 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
2864 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
2865 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
2866 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2867 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2868 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2869 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
2870 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
2871 0x65, 0x3d, 0x22, 0x68, 0x61, 0x73, 0x5f, 0x64,
2872 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22, 0x3e,
2873 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
2874 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2875 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2876 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2877 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2878 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
2879 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x73,
2880 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
2881 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
2882 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2883 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2884 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2885 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2886 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2887 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63,
2888 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70,
2889 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22,
2890 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
2891 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2892 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2893 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2894 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2895 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2896 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
2897 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
2898 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
2899 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2900 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2901 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2902 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
2903 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2904 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2905 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
2906 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2907 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2908 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2909 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2910 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
2911 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
2912 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2913 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2914 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2915 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2916 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2917 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
2918 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
2919 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
2920 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2921 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2922 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2923 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2924 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
2925 0x6e, 0x22, 0x3e, 0x33, 0x3c, 0x2f, 0x70, 0x72,
2926 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
2927 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2928 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
2929 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
2930 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2931 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
2932 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
2933 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2934 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
2935 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2936 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
2937 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
2938 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2939 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
2940 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
2941 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
2942 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
2943 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2944 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2945 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2946 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2947 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
2948 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
2949 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
2950 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2951 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2952 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2953 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2954 0x22, 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74, 0x79,
2955 0x70, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c,
2956 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2957 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2958 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2959 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2960 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
2961 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
2962 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
2963 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
2964 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2965 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
2966 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2967 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
2968 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2969 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
2970 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
2971 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
2972 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
2973 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
2974 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
2975 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61,
2976 0x67, 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
2977 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2978 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
2979 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
2980 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
2981 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
2982 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2983 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2984 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2985 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2986 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
2987 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
2988 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
2989 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2990 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
2991 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
2992 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
2993 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61,
2994 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
2995 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
2996 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
2997 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
2998 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
2999 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x79,
3000 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30,
3001 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3002 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3003 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3004 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3005 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3006 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
3007 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
3008 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
3009 0x22, 0x3e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3c,
3010 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3011 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3012 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3013 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3014 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
3015 0x73, 0x65, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x75,
3016 0x70, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
3017 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3018 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3019 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
3020 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
3021 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3022 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
3023 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3024 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3025 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3026 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
3027 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
3028 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3029 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3030 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3031 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3032 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3033 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
3034 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3035 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3036 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3037 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3038 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3039 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
3040 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
3041 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3042 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3043 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3044 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
3045 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3046 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
3047 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3048 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
3049 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3050 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
3051 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
3052 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x54,
3053 0x61, 0x62, 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64,
3054 0x3d, 0x22, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x31,
3055 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3056 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3057 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3058 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
3059 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
3060 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3061 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3062 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3063 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3064 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3065 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
3066 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
3067 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3068 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3069 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3070 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3071 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3072 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x5f, 0x72, 0x6f,
3073 0x77, 0x73, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70,
3074 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3075 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3076 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3077 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3078 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x5f, 0x63,
3079 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x22, 0x3e,
3080 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3081 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3082 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3083 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3084 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3085 0x22, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x5f,
3086 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
3087 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3088 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3089 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3090 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3091 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3092 0x3d, 0x22, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x70,
3093 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36,
3094 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3095 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3097 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
3098 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3099 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
3100 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
3101 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
3102 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
3103 0x64, 0x3d, 0x22, 0x70, 0x72, 0x6f, 0x6d, 0x70,
3104 0x74, 0x2d, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
3105 0x72, 0x64, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3106 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3107 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3108 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3109 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
3110 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
3111 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3112 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3113 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3114 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3115 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3116 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
3117 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
3118 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
3119 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3120 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3121 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3122 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3123 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3124 0x3d, 0x22, 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e,
3125 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3126 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3127 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3128 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3129 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3130 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
3131 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
3132 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
3133 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
3134 0x3e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
3135 0x64, 0x3a, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3136 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3137 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3138 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
3139 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
3140 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3141 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
3142 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
3143 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3144 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3145 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3146 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x6f,
3147 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
3148 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3149 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3150 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3151 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3152 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3153 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
3154 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74,
3155 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
3156 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3157 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3158 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3159 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
3160 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3161 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3162 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3163 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3164 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
3165 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3166 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3167 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
3168 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
3169 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62,
3170 0x65, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
3171 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x2d, 0x75,
3172 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22,
3173 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3174 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3175 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3176 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3177 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
3178 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
3179 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3180 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3181 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3182 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3183 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3184 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
3185 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
3186 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3187 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3188 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3189 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3190 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3191 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78,
3192 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x31,
3193 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3194 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3195 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3196 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3197 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3198 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
3199 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
3200 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
3201 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x55, 0x73,
3202 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x3c,
3203 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3204 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3205 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3206 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3207 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3208 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3209 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
3210 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3211 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
3212 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3213 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3214 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3215 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
3216 0x22, 0x47, 0x74, 0x6b, 0x45, 0x6e, 0x74, 0x72,
3217 0x79, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63,
3218 0x72, 0x65, 0x64, 0x2d, 0x75, 0x73, 0x65, 0x72,
3219 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x0a, 0x20,
3220 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3221 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3222 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3223 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
3224 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
3225 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
3226 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3227 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3228 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3229 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3230 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3231 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
3232 0x73, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
3233 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3234 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3235 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3236 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3237 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3238 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3239 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
3240 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3241 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3242 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3243 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3244 0x65, 0x3d, 0x22, 0x6c, 0x65, 0x66, 0x74, 0x5f,
3245 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e,
3246 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3247 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3249 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3250 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3251 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67,
3252 0x68, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
3253 0x68, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72,
3254 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3255 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3256 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
3257 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
3258 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3259 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
3260 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
3261 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3262 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
3263 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3264 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3265 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
3266 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
3267 0x74, 0x6b, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x22,
3268 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x72, 0x65,
3269 0x64, 0x2d, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
3270 0x72, 0x64, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3272 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3273 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3274 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
3275 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
3276 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3277 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3278 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3279 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3280 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3281 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
3282 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
3283 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
3284 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3285 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3286 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3287 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3288 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3289 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c,
3290 0x69, 0x74, 0x79, 0x22, 0x3e, 0x46, 0x61, 0x6c,
3291 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3292 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3293 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3294 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3295 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3296 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63,
3297 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x73, 0x5f,
3298 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22,
3299 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
3300 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3301 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3302 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3303 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
3304 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3305 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3306 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
3307 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3308 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3309 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3310 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3311 0x22, 0x6c, 0x65, 0x66, 0x74, 0x5f, 0x61, 0x74,
3312 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x31, 0x3c,
3313 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3314 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3315 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3316 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3317 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3318 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67, 0x68, 0x74,
3319 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22,
3320 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3321 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3322 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3323 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3324 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3325 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x6f,
3326 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
3327 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3328 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3329 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3330 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3331 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3332 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
3333 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74,
3334 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
3335 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3336 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3337 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3338 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
3339 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3340 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3341 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3342 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3343 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
3344 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3345 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3346 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
3347 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
3348 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x43, 0x68, 0x65,
3349 0x63, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
3350 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x68,
3351 0x6f, 0x77, 0x2d, 0x70, 0x61, 0x73, 0x73, 0x77,
3352 0x6f, 0x72, 0x64, 0x22, 0x3e, 0x0a, 0x20, 0x20,
3353 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3354 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3355 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3356 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
3357 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
3358 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3359 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3360 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3361 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3362 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3363 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
3364 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
3365 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3366 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3367 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3368 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3369 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3370 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3371 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65,
3372 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
3373 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3374 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3375 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3376 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3377 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3378 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
3379 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
3380 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
3381 0x79, 0x65, 0x73, 0x22, 0x3e, 0x53, 0x68, 0x6f,
3382 0x77, 0x20, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
3383 0x72, 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3384 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3385 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3386 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
3387 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
3388 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3389 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
3390 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
3391 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3392 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3393 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3394 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x65,
3395 0x66, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
3396 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
3397 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3398 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3399 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3400 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3401 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3402 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x61, 0x74,
3403 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
3404 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3405 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3406 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3407 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3408 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3409 0x65, 0x3d, 0x22, 0x74, 0x6f, 0x70, 0x5f, 0x61,
3410 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32,
3411 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3412 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3413 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3414 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3415 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3416 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x74, 0x74,
3417 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
3418 0x68, 0x22, 0x3e, 0x33, 0x3c, 0x2f, 0x70, 0x72,
3419 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3420 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3421 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
3422 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
3423 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3424 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
3425 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
3426 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3427 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
3428 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3429 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
3430 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
3431 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3432 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3433 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3434 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
3435 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
3436 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3437 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3438 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3439 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3440 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
3441 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
3442 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3443 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3444 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3445 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3446 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3447 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
3448 0x6e, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72,
3449 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3450 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3451 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
3452 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3453 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
3454 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
3455 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
3456 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
3457 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
3458 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
3459 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77,
3460 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x3e, 0x0a,
3461 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61,
3462 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69,
3463 0x64, 0x67, 0x65, 0x74, 0x20, 0x72, 0x65, 0x73,
3464 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3d, 0x22, 0x2d,
3465 0x36, 0x22, 0x3e, 0x62, 0x75, 0x74, 0x74, 0x6f,
3466 0x6e, 0x2d, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c,
3467 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
3468 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x3e,
3469 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3470 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77,
3471 0x69, 0x64, 0x67, 0x65, 0x74, 0x20, 0x72, 0x65,
3472 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3d, 0x22,
3473 0x2d, 0x35, 0x22, 0x3e, 0x62, 0x75, 0x74, 0x74,
3474 0x6f, 0x6e, 0x2d, 0x6f, 0x6b, 0x3c, 0x2f, 0x61,
3475 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69,
3476 0x64, 0x67, 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20,
3477 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69,
3478 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65,
3479 0x74, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f,
3480 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
3481 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
3482 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28,
3483 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72,
3484 0x74, 0x2d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
3485 0x72, 0x2f, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
3486 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65,
3487 0x77, 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00,
3488 0xc6, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3489 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
3490 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
3491 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x16,
3492 0x08, 0x06, 0x00, 0x00, 0x00, 0xc4, 0xb4, 0x6c,
3493 0x3b, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49,
3494 0x54, 0x08, 0x08, 0x08, 0x08, 0x7c, 0x08, 0x64,
3495 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59,
3496 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d,
3497 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00,
3498 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f,
3499 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77,
3500 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63,
3501 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b,
3502 0xee, 0x3c, 0x1a, 0x00, 0x00, 0x03, 0x43, 0x49,
3503 0x44, 0x41, 0x54, 0x38, 0x8d, 0xb5, 0x95, 0xc1,
3504 0x6b, 0x24, 0x45, 0x14, 0x87, 0xbf, 0xaa, 0xea,
3505 0x74, 0x4f, 0x27, 0x66, 0xb3, 0xba, 0x81, 0x8d,
3506 0x08, 0x26, 0x9b, 0x0d, 0x11, 0xf5, 0xec, 0xc5,
3507 0x9b, 0x2b, 0xd8, 0xac, 0xce, 0x45, 0x10, 0xfc,
3508 0x07, 0xbc, 0x08, 0x9e, 0x05, 0x6f, 0x82, 0x07,
3509 0x4f, 0xde, 0x05, 0xf1, 0xb6, 0xa0, 0xa2, 0x20,
3510 0xb9, 0x65, 0x8e, 0xae, 0x92, 0xa3, 0x2c, 0xac,
3511 0xac, 0xeb, 0x66, 0x10, 0x93, 0x5d, 0x4d, 0x82,
3512 0x66, 0x9c, 0x6c, 0x26, 0x55, 0xdd, 0x33, 0xfd,
3513 0xaa, 0x3c, 0x4c, 0xcf, 0x4c, 0xcf, 0x44, 0xbc,
3514 0x04, 0x1f, 0x3c, 0xba, 0xab, 0xa8, 0xfa, 0xea,
3515 0xf7, 0x5e, 0x3d, 0x5e, 0xa9, 0x2c, 0xcb, 0xf8,
3516 0x3f, 0x2c, 0x02, 0x68, 0x36, 0x9b, 0xef, 0x8b,
3517 0xc8, 0x47, 0x21, 0x84, 0xf8, 0x22, 0x30, 0xa5,
3518 0x94, 0xc4, 0x71, 0xfc, 0xe9, 0xd6, 0xd6, 0xd6,
3519 0x7b, 0x2a, 0xcb, 0x32, 0x9a, 0xcd, 0x66, 0xf7,
3520 0xe6, 0x1b, 0xaf, 0x2d, 0x2d, 0x2d, 0x2d, 0x5d,
3521 0x48, 0x65, 0xbf, 0xe8, 0xf3, 0xcd, 0xd7, 0xdf,
3522 0x0e, 0x1a, 0x8d, 0xc6, 0xe5, 0x08, 0x20, 0x84,
3523 0x90, 0xa4, 0x69, 0xca, 0x9b, 0x6f, 0x7d, 0xc9,
3524 0xfc, 0x52, 0x98, 0x5a, 0x1c, 0xa6, 0x87, 0x84,
3525 0x00, 0x8a, 0x30, 0xfe, 0xcf, 0x4f, 0x15, 0x5f,
3526 0x7d, 0xf1, 0x36, 0x71, 0xac, 0x89, 0x93, 0x18,
3527 0xa5, 0x94, 0xb7, 0xd6, 0xc6, 0xd1, 0xd4, 0xae,
3528 0xb9, 0x82, 0xab, 0xeb, 0x73, 0x28, 0xd4, 0x28,
3529 0x38, 0x94, 0x1a, 0x85, 0x39, 0x3b, 0x56, 0x10,
3530 0x60, 0xff, 0x41, 0x1f, 0xe7, 0x06, 0xb4, 0x77,
3531 0x7f, 0x65, 0x75, 0x75, 0x6d, 0x8c, 0x1a, 0x83,
3532 0x45, 0x3c, 0xa5, 0x80, 0x75, 0x25, 0x4a, 0x4d,
3533 0x00, 0xe7, 0xe0, 0x41, 0x4d, 0x1d, 0x52, 0xf4,
3534 0x05, 0x80, 0x17, 0x5e, 0x7c, 0x7e, 0x4a, 0x63,
3535 0x05, 0x0e, 0xc3, 0xb8, 0x82, 0xa2, 0x90, 0x59,
3536 0x95, 0xa1, 0x06, 0x03, 0xa5, 0x02, 0x83, 0xd2,
3537 0xd3, 0x7d, 0x7c, 0xc6, 0x71, 0xf7, 0x14, 0x39,
3538 0x5e, 0x40, 0xc4, 0xf3, 0xd3, 0xdd, 0x7b, 0xac,
3539 0xad, 0xcd, 0x28, 0x0e, 0x80, 0x27, 0x10, 0xb4,
3540 0xa6, 0x12, 0x30, 0x26, 0x4f, 0x94, 0x43, 0xd1,
3541 0x2f, 0x39, 0x3a, 0x3e, 0xc1, 0xba, 0x3e, 0x21,
3542 0x04, 0x40, 0x11, 0xeb, 0x08, 0xef, 0x85, 0xcd,
3543 0xe7, 0x36, 0x30, 0xc6, 0x4c, 0x83, 0x9d, 0x75,
3544 0x04, 0x1f, 0xf0, 0x41, 0x51, 0x08, 0xd3, 0x79,
3545 0xac, 0xec, 0x71, 0xcf, 0x71, 0xd2, 0xcb, 0x09,
3546 0x41, 0x13, 0xc5, 0x8d, 0xf1, 0xbc, 0x71, 0x11,
3547 0x22, 0xc2, 0xcf, 0xf7, 0x7e, 0x61, 0x7d, 0x7d,
3548 0x9d, 0x3c, 0xcf, 0xb1, 0xd6, 0x56, 0x60, 0xe7,
3549 0x08, 0xc1, 0x43, 0xd0, 0x0c, 0xbc, 0x22, 0xd4,
3550 0xf2, 0x2a, 0xe2, 0x39, 0xb5, 0x05, 0x22, 0x0a,
3551 0x33, 0x97, 0x32, 0x6b, 0x5a, 0x6b, 0x44, 0x84,
3552 0xeb, 0x1b, 0xd7, 0x48, 0x92, 0x04, 0xe7, 0x5c,
3553 0x4d, 0xb1, 0x73, 0x55, 0x2a, 0x0d, 0xfd, 0xa0,
3554 0xc7, 0x69, 0x2f, 0xc5, 0x33, 0x28, 0x41, 0x45,
3555 0x09, 0x51, 0x74, 0x8e, 0x39, 0x5c, 0x66, 0x3c,
3556 0x22, 0x25, 0xbb, 0x0f, 0xf6, 0xb9, 0xbe, 0xb1,
3557 0x81, 0xb5, 0x67, 0x14, 0x45, 0x7f, 0x08, 0xb6,
3558 0xd6, 0x0e, 0x2b, 0x53, 0x1b, 0x06, 0x4c, 0xf2,
3559 0x84, 0x81, 0xc8, 0xfc, 0x3b, 0x70, 0x64, 0xa5,
3560 0x29, 0x10, 0xf1, 0xac, 0x5e, 0x7b, 0x96, 0x46,
3561 0x23, 0xc1, 0xb9, 0x1c, 0xad, 0xf5, 0x10, 0x9c,
3562 0xe7, 0xf9, 0x90, 0x63, 0x34, 0x21, 0x9e, 0xff,
3563 0x6f, 0xd2, 0xac, 0x62, 0x5d, 0xe2, 0xbd, 0x20,
3564 0x52, 0x02, 0x0a, 0xeb, 0x2c, 0xe5, 0xa0, 0x9c,
3565 0x28, 0x06, 0xc5, 0xa5, 0x39, 0xc3, 0xdf, 0xfb,
3566 0xbd, 0x73, 0x9b, 0x1b, 0x0d, 0x43, 0x23, 0x31,
3567 0xe4, 0xb9, 0x90, 0x17, 0x93, 0xb2, 0x51, 0x40,
3568 0x2a, 0x81, 0x38, 0x01, 0x11, 0x41, 0x29, 0xc8,
3569 0x5d, 0x4e, 0xaf, 0xd7, 0x9b, 0x28, 0x56, 0x0a,
3570 0x3e, 0xf9, 0xf8, 0x25, 0xbc, 0x97, 0x19, 0xac,
3571 0x22, 0x5d, 0x98, 0x47, 0x1b, 0x4d, 0xf0, 0x1e,
3572 0x77, 0x66, 0x6b, 0xd8, 0xc9, 0xc7, 0xfb, 0x80,
3573 0x42, 0x55, 0x22, 0xab, 0xcb, 0x2b, 0xa5, 0x2c,
3574 0x3a, 0xc7, 0x9d, 0x46, 0x9a, 0xa6, 0x18, 0x7d,
3575 0xfe, 0x96, 0xca, 0xbe, 0x00, 0xc3, 0x03, 0xa3,
3576 0x28, 0x99, 0x52, 0x5c, 0xb7, 0x4e, 0xa7, 0x43,
3577 0x51, 0x14, 0x5a, 0x6b, 0xdd, 0x57, 0x59, 0x96,
3578 0x91, 0xa6, 0xe9, 0x07, 0x65, 0x59, 0x7e, 0x28,
3579 0x22, 0x17, 0x6e, 0x9b, 0x49, 0x92, 0x7c, 0x66,
3580 0xad, 0x7d, 0x57, 0x8d, 0x1a, 0x7d, 0xab, 0xd5,
3581 0x52, 0xc0, 0x1c, 0x90, 0xa6, 0x69, 0x7a, 0xe9,
3582 0xf5, 0xe6, 0xcd, 0xf6, 0x8d, 0x1b, 0xaf, 0xc4,
3583 0x9b, 0x9b, 0x9b, 0x18, 0x63, 0x08, 0x04, 0x08,
3584 0xc3, 0xba, 0xf5, 0xc1, 0xb3, 0xf7, 0xdb, 0x1e,
3585 0xdb, 0xdb, 0xdb, 0xf2, 0xe3, 0x9d, 0x3b, 0xaf,
3586 0xb6, 0xef, 0xb7, 0xdb, 0x80, 0x03, 0x2c, 0x50,
3587 0x64, 0x59, 0x16, 0xea, 0x71, 0x37, 0x80, 0x05,
3588 0x60, 0xc1, 0x39, 0xf7, 0xc4, 0xc1, 0xc1, 0xe1,
3589 0xe7, 0xdf, 0xdd, 0xbe, 0xfd, 0xce, 0xde, 0xc3,
3590 0x3d, 0xb3, 0xb2, 0xf2, 0xb4, 0x5e, 0xb9, 0xba,
3591 0x82, 0xd1, 0x86, 0xc3, 0xa3, 0x43, 0xfe, 0x38,
3592 0x38, 0x08, 0x8f, 0x1e, 0x3e, 0x92, 0xc3, 0x83,
3593 0xa3, 0x9d, 0xf6, 0xfd, 0xb6, 0x01, 0x96, 0x81,
3594 0x5e, 0x25, 0xac, 0x07, 0x9c, 0xd5, 0xc1, 0x53,
3595 0x9d, 0x77, 0xe7, 0x87, 0x9d, 0x5b, 0xcb, 0xcb,
3596 0xcb, 0xbb, 0x57, 0x96, 0xaf, 0xbc, 0xbc, 0xb8,
3597 0xb8, 0xb8, 0xf1, 0xe4, 0x53, 0x97, 0x9f, 0x31,
3598 0xda, 0x44, 0x9d, 0x4e, 0xe7, 0xaf, 0x93, 0x6e,
3599 0xf7, 0xf7, 0x6e, 0xb7, 0x7b, 0xf7, 0xe8, 0xe8,
3600 0xcf, 0xef, 0x81, 0xa2, 0xb6, 0x37, 0x00, 0x03,
3601 0x00, 0x55, 0x7f, 0xf3, 0x5a, 0xad, 0x56, 0x54,
3602 0x57, 0x0e, 0x24, 0x33, 0xe3, 0x08, 0xc8, 0x47,
3603 0x21, 0x57, 0xee, 0x80, 0xd3, 0x6a, 0x2e, 0xcf,
3604 0xb2, 0x4c, 0xce, 0x81, 0x6b, 0xb9, 0xae, 0xbb,
3605 0x01, 0x74, 0xe5, 0x0a, 0xf0, 0x8c, 0x1a, 0xe2,
3606 0xb0, 0x54, 0x02, 0xe0, 0xb3, 0x2c, 0x9b, 0x8a,
3607 0xf8, 0x1f, 0xe6, 0xf9, 0x95, 0x73, 0xdb, 0x78,
3608 0xbd, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
3609 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00,
3610 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69,
3611 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
3612 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00, 0x00,
3613 0x9d, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3614 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
3615 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
3616 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
3617 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
3618 0xf8, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
3619 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
3620 0xbd, 0xa7, 0x93, 0x00, 0x00, 0x00, 0x09, 0x70,
3621 0x48, 0x59, 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00,
3622 0x00, 0x0d, 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78,
3623 0x00, 0x00, 0x03, 0xb6, 0x49, 0x44, 0x41, 0x54,
3624 0x48, 0xc7, 0xdd, 0xd5, 0xdb, 0x4f, 0xdb, 0x65,
3625 0x1c, 0xc7, 0x71, 0x74, 0xc6, 0x8d, 0xcd, 0x44,
3626 0x63, 0x98, 0x5c, 0x18, 0x5d, 0xe2, 0x58, 0x0a,
3627 0x23, 0xd9, 0xd4, 0xb5, 0x63, 0x94, 0x6e, 0x1c,
3628 0x5a, 0xe8, 0x0a, 0x6d, 0x29, 0x1d, 0x74, 0x1b,
3629 0xe3, 0xd0, 0xb1, 0xe2, 0x36, 0xed, 0x08, 0x32,
3630 0x56, 0xe2, 0x74, 0x01, 0x2e, 0x66, 0x4a, 0xd7,
3631 0x33, 0xac, 0x58, 0xb3, 0x18, 0x63, 0xa2, 0x71,
3632 0xd9, 0x3f, 0xa0, 0x76, 0x5d, 0xc1, 0x3b, 0xdd,
3633 0x3a, 0xb0, 0x60, 0x49, 0x47, 0x69, 0xcb, 0xa1,
3634 0x40, 0x66, 0x34, 0xbb, 0x6b, 0x41, 0xf4, 0xe3,
3635 0xb7, 0xed, 0x4f, 0xb6, 0xdf, 0x28, 0xd3, 0x85,
3636 0x78, 0xe3, 0x93, 0xbc, 0xd2, 0xd3, 0xd3, 0xe7,
3637 0xfd, 0x7b, 0x9e, 0x5f, 0xd2, 0x66, 0x64, 0xfc,
3638 0x6f, 0x46, 0x7f, 0x7f, 0xbf, 0xce, 0x6a, 0xb5,
3639 0x2e, 0x59, 0x2c, 0x16, 0x6c, 0x04, 0xad, 0xb1,
3640 0xe2, 0x70, 0x38, 0x06, 0xd2, 0x05, 0x1e, 0x04,
3641 0x43, 0x01, 0xfc, 0xf2, 0xeb, 0xe2, 0x86, 0x44,
3642 0xe7, 0x67, 0x60, 0xb3, 0xd9, 0x96, 0x9d, 0x4e,
3643 0xe7, 0x56, 0x56, 0xc0, 0x6e, 0xb7, 0xc7, 0xa2,
3644 0x0b, 0x33, 0x10, 0x94, 0x5a, 0x51, 0xa1, 0xb0,
3645 0xb0, 0x94, 0x57, 0xb3, 0x89, 0xe4, 0xf4, 0x28,
3646 0x37, 0x27, 0x89, 0x64, 0x66, 0x08, 0x4a, 0x2c,
3647 0x88, 0x2e, 0xcc, 0xaf, 0x46, 0x68, 0xad, 0x38,
3648 0xed, 0xe6, 0xa5, 0xf4, 0x81, 0x8a, 0x3e, 0x34,
3649 0x76, 0x98, 0xd1, 0xd4, 0x61, 0x61, 0x58, 0xd1,
3650 0x7c, 0x3e, 0x45, 0xdd, 0x99, 0x60, 0xc3, 0xc9,
3651 0x0b, 0x29, 0x2d, 0x3a, 0x3b, 0x5a, 0x2e, 0xd8,
3652 0x21, 0xaa, 0x36, 0x22, 0x18, 0x9a, 0xc6, 0xf0,
3653 0xf7, 0x1e, 0x44, 0xa6, 0xc3, 0xeb, 0x07, 0x66,
3654 0xe6, 0x22, 0x38, 0x20, 0xec, 0xc3, 0x91, 0xb3,
3655 0x06, 0xd4, 0xbe, 0x7b, 0x05, 0x75, 0xef, 0xfd,
3656 0xcd, 0x08, 0x95, 0x36, 0xe5, 0xe8, 0x39, 0xa2,
3657 0x35, 0xe1, 0xd8, 0xb9, 0x04, 0x33, 0x8e, 0xb7,
3658 0x99, 0x71, 0x50, 0xd2, 0x97, 0x0c, 0xfc, 0xc3,
3659 0x0e, 0x6c, 0xb1, 0x99, 0xd9, 0x30, 0x0e, 0x94,
3660 0x19, 0x20, 0x7d, 0xe7, 0x0a, 0x64, 0xa7, 0x53,
3661 0xe4, 0x67, 0x18, 0xa7, 0x8d, 0xa8, 0x3e, 0x93,
3662 0xa2, 0x38, 0x6b, 0x44, 0x55, 0xab, 0x01, 0x45,
3663 0x47, 0xbb, 0x91, 0x2b, 0xee, 0xc0, 0x2e, 0xee,
3664 0x25, 0x04, 0x26, 0xc3, 0xf0, 0x0c, 0xdd, 0x42,
3665 0x38, 0x12, 0x4a, 0x1f, 0xb0, 0x51, 0x20, 0x32,
3666 0x1b, 0x42, 0x81, 0xc8, 0x88, 0x8a, 0x53, 0x8f,
3667 0xd0, 0x98, 0x20, 0x6e, 0x7d, 0xa8, 0xa4, 0xb9,
3668 0x0f, 0x79, 0xd2, 0x8b, 0xd8, 0x21, 0xec, 0xc4,
3669 0xeb, 0x65, 0xe7, 0x93, 0x72, 0xf6, 0xf7, 0x62,
3670 0x22, 0x10, 0x44, 0xe2, 0x88, 0x17, 0xef, 0x47,
3671 0xd3, 0x07, 0xf4, 0x7a, 0x7d, 0x2c, 0x3c, 0x3d,
3672 0x05, 0x9e, 0xd0, 0x84, 0x62, 0x35, 0x2d, 0x74,
3673 0x32, 0xa5, 0xb4, 0xc5, 0xbc, 0x6a, 0x9f, 0xea,
3674 0x32, 0x72, 0x2a, 0x2f, 0x61, 0xa7, 0xe4, 0x23,
3675 0x16, 0x4e, 0xe1, 0x65, 0x8c, 0xfb, 0x03, 0xb8,
3676 0xe9, 0x76, 0x21, 0x14, 0x9e, 0x82, 0xc1, 0x60,
3677 0x88, 0xf7, 0xf4, 0xf4, 0xb0, 0x03, 0xdd, 0xdd,
3678 0xdd, 0xb1, 0x50, 0x64, 0x12, 0xbc, 0x32, 0x0b,
3679 0xf8, 0x4d, 0x56, 0x14, 0x36, 0xd9, 0xc0, 0x6f,
3680 0x4e, 0x29, 0x68, 0xb0, 0x60, 0xb7, 0x52, 0x0f,
3681 0x4e, 0xf5, 0xc7, 0x69, 0xe5, 0x15, 0xe9, 0xf1,
3682 0xd3, 0x98, 0x1f, 0xe1, 0xe9, 0x20, 0xe6, 0x17,
3683 0xe7, 0xd0, 0xdb, 0xdb, 0xbb, 0x36, 0xa0, 0xd3,
3684 0xe9, 0x62, 0xa1, 0xf0, 0x24, 0xb8, 0x42, 0x3b,
3685 0xb8, 0x8d, 0x03, 0xab, 0xde, 0xac, 0xb7, 0x23,
3686 0x5f, 0x65, 0x79, 0xa2, 0xdd, 0x87, 0x4c, 0xb8,
3687 0x3b, 0xea, 0xc3, 0x77, 0xae, 0x6f, 0x30, 0x15,
3688 0x0e, 0xa2, 0xab, 0x4b, 0x17, 0x6f, 0x6f, 0x6f,
3689 0x67, 0x07, 0xb4, 0x5a, 0x6d, 0x6c, 0x2a, 0x11,
3690 0x28, 0xbf, 0x8a, 0xbd, 0x8d, 0x9f, 0x3c, 0x95,
3691 0xfc, 0x52, 0x1b, 0x6e, 0x7b, 0x47, 0x11, 0x08,
3692 0xfa, 0xe9, 0x3e, 0xcc, 0xa2, 0xad, 0xad, 0x6d,
3693 0x6d, 0x40, 0xa3, 0xd1, 0x24, 0x03, 0x05, 0x87,
3694 0x07, 0xb1, 0xef, 0xd4, 0x17, 0x4f, 0x65, 0x8f,
3695 0x70, 0x00, 0x3f, 0xdc, 0xf6, 0xc2, 0x1f, 0xf0,
3696 0x51, 0x60, 0x0e, 0x9a, 0x56, 0x4d, 0x5c, 0xad,
3697 0x56, 0xb3, 0x03, 0xf5, 0xf5, 0xf5, 0xb1, 0xc4,
3698 0xf6, 0xca, 0x65, 0x9f, 0xd2, 0x2e, 0x1c, 0x6b,
3699 0x08, 0x64, 0x4e, 0x88, 0x6a, 0xaf, 0x41, 0x20,
3700 0x75, 0xb2, 0xde, 0xe7, 0x91, 0x82, 0x92, 0x7e,
3701 0x8c, 0xf8, 0xbc, 0x18, 0xf3, 0x8f, 0x24, 0xef,
3702 0x41, 0x43, 0x43, 0x43, 0x5c, 0xa1, 0x50, 0xb0,
3703 0x03, 0x4a, 0xa5, 0x92, 0x6e, 0x72, 0x10, 0xbe,
3704 0xf1, 0x11, 0x8c, 0xfa, 0xee, 0x3c, 0xc6, 0x8b,
3705 0xc0, 0xd4, 0x04, 0x26, 0x23, 0x01, 0xdc, 0x0b,
3706 0x4d, 0xd0, 0x0d, 0xf5, 0x32, 0xee, 0xa6, 0x8c,
3707 0x3f, 0xb4, 0xb0, 0x18, 0x05, 0xad, 0xb5, 0x36,
3708 0x20, 0xaf, 0x96, 0x3f, 0xb8, 0xe3, 0xfd, 0x11,
3709 0x3f, 0xfb, 0xc7, 0xd2, 0x9b, 0x18, 0x4f, 0xcb,
3710 0xff, 0x98, 0xc4, 0xdc, 0xaa, 0xaa, 0xaa, 0x65,
3711 0x99, 0x4c, 0xc6, 0xfe, 0xb1, 0xa3, 0xe2, 0x07,
3712 0x52, 0xa9, 0x74, 0x49, 0x22, 0x91, 0x60, 0x23,
3713 0x2a, 0x2b, 0x2b, 0x57, 0x6a, 0x6a, 0x6a, 0x06,
3714 0xd7, 0xfb, 0x5b, 0x78, 0x86, 0x3c, 0x4f, 0x5e,
3715 0xcc, 0xcc, 0xcc, 0x7c, 0xed, 0x48, 0x9d, 0x72,
3716 0xe9, 0xea, 0x60, 0x3f, 0x5c, 0xee, 0x6f, 0x71,
3717 0x6b, 0xe8, 0x26, 0xdc, 0x43, 0x2e, 0xb8, 0x3d,
3718 0x2e, 0x78, 0x86, 0xdd, 0xc9, 0xe7, 0x9f, 0x7d,
3719 0x7e, 0x0d, 0xaa, 0x63, 0xb5, 0x2b, 0x39, 0xb9,
3720 0x39, 0xc5, 0xf4, 0x9d, 0x57, 0xc9, 0xcb, 0x64,
3721 0x0b, 0xb3, 0x4e, 0xda, 0x91, 0x49, 0xb2, 0xc8,
3722 0x0e, 0x92, 0xcf, 0x17, 0xf0, 0x1d, 0xaa, 0xe3,
3723 0x75, 0xcb, 0xba, 0x8b, 0x9d, 0x7f, 0x98, 0xed,
3724 0x26, 0x7c, 0x75, 0xfd, 0x4b, 0x5c, 0xbf, 0xf1,
3725 0x35, 0x6c, 0x03, 0x56, 0x74, 0x7d, 0xd8, 0xf5,
3726 0xe7, 0x89, 0xa6, 0x13, 0xbf, 0x1f, 0x2a, 0x3e,
3727 0x38, 0x4c, 0x73, 0xcb, 0xc8, 0x5e, 0xb2, 0x93,
3728 0x64, 0x93, 0x6d, 0xeb, 0x05, 0xb6, 0x3c, 0x1a,
3729 0x20, 0xfc, 0xac, 0xac, 0xac, 0xf7, 0x39, 0xb9,
3730 0x9c, 0x1b, 0x5c, 0x1e, 0x77, 0xa4, 0x5c, 0x2c,
3731 0xba, 0x7f, 0x58, 0x22, 0xfe, 0x6d, 0x7f, 0x01,
3732 0xef, 0x1e, 0x87, 0xb3, 0xcb, 0x93, 0x9d, 0xbd,
3733 0xdd, 0x4e, 0x73, 0xea, 0x48, 0x11, 0xd9, 0xc3,
3734 0x04, 0x5e, 0x61, 0x4e, 0x61, 0xdd, 0xf1, 0x1c,
3735 0x79, 0x81, 0xb9, 0x92, 0x37, 0x48, 0x1e, 0x79,
3736 0x8b, 0x08, 0x88, 0x98, 0x54, 0x11, 0x21, 0x29,
3737 0x24, 0x6f, 0x33, 0x17, 0x92, 0x98, 0xb7, 0x9d,
3738 0xb9, 0xf2, 0x4d, 0x19, 0xff, 0x62, 0x24, 0xce,
3739 0xf0, 0x59, 0x66, 0x72, 0x22, 0xb8, 0x99, 0x39,
3740 0xbe, 0x6d, 0x4c, 0x7c, 0x2b, 0xf3, 0x7a, 0x33,
3741 0xf3, 0xf9, 0xa6, 0x27, 0x9d, 0xfb, 0x7f, 0x3a,
3742 0xfe, 0x02, 0x28, 0x79, 0x9c, 0x19, 0x37, 0x65,
3743 0x9c, 0x80, 0x00, 0x00, 0x00, 0x25, 0x74, 0x45,
3744 0x58, 0x74, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x63,
3745 0x72, 0x65, 0x61, 0x74, 0x65, 0x00, 0x32, 0x30,
3746 0x31, 0x31, 0x2d, 0x31, 0x32, 0x2d, 0x31, 0x31,
3747 0x54, 0x31, 0x38, 0x3a, 0x32, 0x31, 0x3a, 0x31,
3748 0x35, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30, 0xbb,
3749 0x7c, 0x93, 0xb7, 0x00, 0x00, 0x00, 0x25, 0x74,
3750 0x45, 0x58, 0x74, 0x64, 0x61, 0x74, 0x65, 0x3a,
3751 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x00, 0x32,
3752 0x30, 0x30, 0x38, 0x2d, 0x30, 0x31, 0x2d, 0x30,
3753 0x33, 0x54, 0x31, 0x37, 0x3a, 0x30, 0x38, 0x3a,
3754 0x32, 0x30, 0x2b, 0x30, 0x30, 0x3a, 0x30, 0x30,
3755 0x66, 0xb0, 0xbf, 0xaa, 0x00, 0x00, 0x00, 0x19,
3756 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f, 0x66, 0x74,
3757 0x77, 0x61, 0x72, 0x65, 0x00, 0x77, 0x77, 0x77,
3758 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63, 0x61, 0x70,
3759 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b, 0xee, 0x3c,
3760 0x1a, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e,
3761 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00, 0x28,
3762 0x75, 0x75, 0x61, 0x79, 0x29, 0x72, 0x65, 0x6d,
3763 0x6f, 0x74, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77,
3764 0x65, 0x72, 0x2d, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
3765 0x63, 0x74, 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00,
3766 0x0b, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3767 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
3768 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
3769 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
3770 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
3771 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
3772 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
3773 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
3774 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
3775 0x20, 0x33, 0x2e, 0x31, 0x38, 0x2e, 0x33, 0x20,
3776 0x2d, 0x2d, 0x3e, 0x0a, 0x3c, 0x69, 0x6e, 0x74,
3777 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a,
3778 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3779 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
3780 0x22, 0x47, 0x74, 0x6b, 0x57, 0x69, 0x6e, 0x64,
3781 0x6f, 0x77, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
3782 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2d, 0x76,
3783 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d, 0x63, 0x6f,
3784 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
3785 0x2d, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x22,
3786 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3787 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3788 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
3789 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
3790 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
3791 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3792 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3793 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3794 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x69,
3795 0x74, 0x6c, 0x65, 0x22, 0x20, 0x74, 0x72, 0x61,
3796 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
3797 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
3798 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69,
3799 0x6f, 0x6e, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69,
3800 0x6c, 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3801 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3802 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3803 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3804 0x3d, 0x22, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
3805 0x2d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
3806 0x6e, 0x22, 0x3e, 0x33, 0x3c, 0x2f, 0x70, 0x72,
3807 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3808 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
3809 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3810 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
3811 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
3812 0x22, 0x47, 0x74, 0x6b, 0x56, 0x42, 0x6f, 0x78,
3813 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x61,
3814 0x69, 0x6e, 0x2d, 0x62, 0x6f, 0x78, 0x22, 0x3e,
3815 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3816 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3817 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3818 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
3819 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3820 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3821 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3822 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3823 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3824 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
3825 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
3826 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3827 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3828 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3829 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3830 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f,
3831 0x72, 0x64, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64,
3832 0x74, 0x68, 0x22, 0x3e, 0x31, 0x30, 0x3c, 0x2f,
3833 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3834 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3835 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3836 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3837 0x3d, 0x22, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e,
3838 0x67, 0x22, 0x3e, 0x32, 0x30, 0x3c, 0x2f, 0x70,
3839 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
3840 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3841 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3842 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3843 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
3844 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
3845 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x56, 0x42, 0x6f,
3846 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63,
3847 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f,
3848 0x6e, 0x2d, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
3849 0x73, 0x2d, 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x0a,
3850 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3851 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3852 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3853 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
3854 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
3855 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3856 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3857 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3858 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3859 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3860 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
3861 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
3862 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
3863 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3864 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3865 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3866 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3867 0x22, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67,
3868 0x22, 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
3869 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
3870 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3871 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
3872 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3873 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3874 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
3875 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
3876 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c,
3877 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x6f,
3878 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
3879 0x2d, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
3880 0x2d, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3e,
3881 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3882 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3883 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3884 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
3885 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
3886 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
3887 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
3888 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3889 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3890 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
3891 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
3892 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
3893 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
3894 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3895 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3896 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3897 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3898 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3899 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61,
3900 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
3901 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3902 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3903 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3904 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3905 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3906 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
3907 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
3908 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
3909 0x79, 0x65, 0x73, 0x22, 0x3e, 0x43, 0x6f, 0x6e,
3910 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20,
3911 0x5f, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
3912 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3913 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3914 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3915 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3916 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3917 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
3918 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
3919 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
3920 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3921 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3922 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3923 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3924 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3925 0x65, 0x3d, 0x22, 0x6d, 0x6e, 0x65, 0x6d, 0x6f,
3926 0x6e, 0x69, 0x63, 0x5f, 0x77, 0x69, 0x64, 0x67,
3927 0x65, 0x74, 0x22, 0x3e, 0x63, 0x6f, 0x6e, 0x6e,
3928 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x61,
3929 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x2d, 0x65,
3930 0x6e, 0x74, 0x72, 0x79, 0x3c, 0x2f, 0x70, 0x72,
3931 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
3932 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3933 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3934 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
3935 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3936 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3937 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3938 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
3939 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
3940 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0x20,
3941 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x62,
3942 0x6f, 0x6c, 0x64, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
3943 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3944 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
3945 0x2f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
3946 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3947 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3948 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
3949 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3950 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3951 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
3952 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3953 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3954 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
3955 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
3956 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
3957 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c,
3958 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
3959 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
3960 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3961 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
3962 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
3963 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69,
3964 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
3965 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3966 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3967 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3968 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
3969 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
3970 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
3971 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
3972 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
3973 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3974 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3975 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
3976 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3977 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3978 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
3979 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3980 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
3981 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
3982 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3983 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
3984 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
3985 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x45, 0x6e, 0x74,
3986 0x72, 0x79, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
3987 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69,
3988 0x6f, 0x6e, 0x2d, 0x61, 0x64, 0x64, 0x72, 0x65,
3989 0x73, 0x73, 0x2d, 0x65, 0x6e, 0x74, 0x72, 0x79,
3990 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
3991 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3992 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
3993 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
3994 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
3995 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
3996 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
3997 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
3998 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
3999 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4000 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4001 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
4002 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54,
4003 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4004 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4005 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4006 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
4007 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
4008 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4009 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
4010 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
4011 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4012 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4013 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4014 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
4015 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
4016 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4017 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4018 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4019 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4020 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4021 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4022 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
4023 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4024 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4025 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4026 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4027 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4028 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
4029 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
4030 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4031 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4032 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4033 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
4034 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
4035 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4036 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
4037 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4038 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4039 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4040 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4041 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
4042 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
4043 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4c,
4044 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69, 0x64,
4045 0x3d, 0x22, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
4046 0x65, 0x2d, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
4047 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4048 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4049 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4050 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4051 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4052 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4053 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4054 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4055 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4056 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4057 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4058 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
4059 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
4060 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4061 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4062 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4063 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4064 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4065 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78,
4066 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30,
4067 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4068 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4069 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4070 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4071 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4072 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x65, 0x6e, 0x73,
4073 0x69, 0x74, 0x69, 0x76, 0x65, 0x22, 0x3e, 0x46,
4074 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4075 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4076 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4077 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4078 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4079 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4080 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
4081 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
4082 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
4083 0x22, 0x3e, 0x46, 0x6f, 0x72, 0x20, 0x65, 0x78,
4084 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c, 0x20, 0x73,
4085 0x70, 0x69, 0x63, 0x65, 0x3a, 0x2f, 0x2f, 0x66,
4086 0x6f, 0x6f, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70,
4087 0x6c, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x3a, 0x35,
4088 0x39, 0x30, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4089 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4090 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4091 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
4092 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
4093 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4094 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
4095 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
4096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4097 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4098 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4099 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
4100 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
4101 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4102 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4103 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4104 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4105 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4106 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4107 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
4108 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4109 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4110 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4111 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4112 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4113 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
4114 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
4115 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4116 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4117 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4118 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
4119 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
4120 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4121 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
4122 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4123 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
4124 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
4125 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4126 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
4127 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4128 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4129 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4130 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
4131 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
4132 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4133 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4134 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4135 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4136 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4137 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
4138 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4139 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4140 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4141 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4142 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4143 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
4144 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
4145 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4146 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4147 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4148 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
4149 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4150 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
4151 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4152 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
4153 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4154 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
4155 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
4156 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x56,
4157 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d,
4158 0x22, 0x72, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x2d,
4159 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65, 0x72, 0x2d,
4160 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20,
4161 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4162 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4163 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4164 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4165 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4166 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4167 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4168 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4169 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4170 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4171 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4172 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4173 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4174 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4175 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4176 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4177 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
4178 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e,
4179 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4180 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4181 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4182 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
4183 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4184 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4185 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
4186 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
4187 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
4188 0x69, 0x64, 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65,
4189 0x6e, 0x74, 0x2d, 0x63, 0x68, 0x6f, 0x6f, 0x73,
4190 0x65, 0x72, 0x2d, 0x6c, 0x61, 0x62, 0x65, 0x6c,
4191 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4192 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4193 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4194 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4195 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
4196 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
4197 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4198 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4199 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4200 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4201 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4202 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
4203 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
4204 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4205 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4206 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4207 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4208 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4209 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4210 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
4211 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
4212 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
4213 0x22, 0x3e, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74,
4214 0x20, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
4215 0x69, 0x6f, 0x6e, 0x73, 0x3c, 0x2f, 0x70, 0x72,
4216 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4217 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4218 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4219 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4220 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4221 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e,
4222 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4223 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4224 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4225 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74,
4226 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73,
4227 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4228 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4229 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74,
4230 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x6e,
4231 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x77, 0x65, 0x69,
4232 0x67, 0x68, 0x74, 0x22, 0x20, 0x76, 0x61, 0x6c,
4233 0x75, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x6c, 0x64,
4234 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4235 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4236 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x74,
4237 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73,
4238 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4239 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4240 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
4241 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4242 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4243 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
4244 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4245 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4246 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4247 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4248 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
4249 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4250 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4251 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4252 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4253 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4254 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4255 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22,
4256 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
4257 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4258 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4259 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4260 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4261 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4262 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
4263 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72,
4264 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4265 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4266 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4267 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
4268 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4269 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
4270 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4272 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
4273 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4274 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4275 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
4276 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
4277 0x74, 0x6b, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74,
4278 0x43, 0x68, 0x6f, 0x6f, 0x73, 0x65, 0x72, 0x57,
4279 0x69, 0x64, 0x67, 0x65, 0x74, 0x22, 0x20, 0x69,
4280 0x64, 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x6e,
4281 0x74, 0x2d, 0x63, 0x68, 0x6f, 0x6f, 0x73, 0x65,
4282 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4283 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4284 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4285 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4286 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
4287 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
4288 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4289 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4290 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4291 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4292 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4293 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4294 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x3e, 0x32,
4295 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4296 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4297 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4298 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4299 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4300 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x6f, 0x63,
4301 0x61, 0x6c, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x22,
4302 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
4303 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4304 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4305 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4306 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4307 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4308 0x3d, 0x22, 0x73, 0x68, 0x6f, 0x77, 0x5f, 0x69,
4309 0x63, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x46, 0x61,
4310 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4311 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4312 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4313 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4314 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4315 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
4316 0x6f, 0x72, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
4317 0x22, 0x3e, 0x6d, 0x72, 0x75, 0x3c, 0x2f, 0x70,
4318 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4319 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4320 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4321 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
4322 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4323 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4324 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
4325 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4326 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4327 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4328 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4329 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
4330 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
4331 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4332 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4333 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4334 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4335 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4336 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
4337 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4338 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4339 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4340 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4341 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4342 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
4343 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
4344 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4345 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4346 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4347 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
4348 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
4349 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4350 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
4351 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4352 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4353 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
4354 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4355 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
4356 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4357 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4358 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4359 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4360 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e,
4361 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4362 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4363 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4364 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4365 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4366 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
4367 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4368 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4369 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4370 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4371 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4372 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
4373 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
4374 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4375 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4376 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4377 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
4378 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4379 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
4380 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4381 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
4382 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4383 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
4384 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
4385 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x48,
4386 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f,
4387 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62,
4388 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2d, 0x62, 0x6f,
4389 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4390 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4391 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4392 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4393 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
4394 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
4395 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4396 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4397 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4398 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4399 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
4400 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
4401 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
4402 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4403 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4404 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4405 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4406 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x65, 0x73,
4407 0x69, 0x7a, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65,
4408 0x22, 0x3e, 0x69, 0x6d, 0x6d, 0x65, 0x64, 0x69,
4409 0x61, 0x74, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4410 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4411 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4412 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4413 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4414 0x65, 0x3d, 0x22, 0x73, 0x70, 0x61, 0x63, 0x69,
4415 0x6e, 0x67, 0x22, 0x3e, 0x36, 0x3c, 0x2f, 0x70,
4416 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4417 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4418 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4419 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4420 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x79,
4421 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x74, 0x79, 0x6c,
4422 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f,
4423 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4424 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4425 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
4426 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4427 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4428 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
4429 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
4430 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x75,
4431 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64,
4432 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c,
4433 0x2d, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
4434 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4435 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4436 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4437 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4438 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
4439 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
4440 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
4441 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x43, 0x61, 0x6e,
4442 0x63, 0x65, 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4443 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4444 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4445 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4446 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4447 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
4448 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
4449 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4450 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4451 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4452 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4453 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4454 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4455 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
4456 0x73, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4457 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4458 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4459 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4460 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4461 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4462 0x65, 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69,
4463 0x76, 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61,
4464 0x75, 0x6c, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75,
4465 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
4466 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4467 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4468 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
4469 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
4470 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
4471 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69,
4472 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
4473 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4474 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4475 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4476 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
4477 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4478 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4479 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
4480 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4481 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4482 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4483 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4484 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61,
4485 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
4486 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4487 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4488 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4489 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4490 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4491 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
4492 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4493 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4494 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4495 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4496 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4497 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4498 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
4499 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
4500 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4501 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4502 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4503 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
4504 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4505 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4506 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4507 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4508 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
4509 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4510 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4511 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
4512 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
4513 0x47, 0x74, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f,
4514 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63,
4515 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x2d, 0x62,
4516 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x3e, 0x0a,
4517 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4518 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4519 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4520 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4521 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
4522 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
4523 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
4524 0x22, 0x3e, 0x43, 0x5f, 0x6f, 0x6e, 0x6e, 0x65,
4525 0x63, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4526 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4527 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4528 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4529 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4530 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
4531 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
4532 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4533 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4534 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4535 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4536 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4537 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4538 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4539 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4540 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4541 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4542 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4543 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4544 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4545 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
4546 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
4547 0x6c, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
4548 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4549 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4550 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4551 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4552 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4553 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
4554 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
4555 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4556 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4557 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4558 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4559 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
4560 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4561 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4562 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
4563 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4564 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4565 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4566 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4567 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
4568 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4569 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4570 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4571 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4572 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4573 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4574 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22,
4575 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
4576 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4577 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4578 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4579 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4580 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4581 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
4582 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
4583 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4584 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4585 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4586 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
4587 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4588 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
4589 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4590 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4591 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
4592 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4593 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
4594 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
4595 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4596 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4597 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4598 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
4599 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4600 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4601 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4602 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4603 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4604 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
4605 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x46, 0x61, 0x6c,
4606 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4607 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4608 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4609 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4610 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4611 0x3d, 0x22, 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74,
4612 0x79, 0x70, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64,
4613 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4614 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4615 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4616 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4617 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4618 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
4619 0x22, 0x3e, 0x33, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4620 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4621 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4622 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
4623 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4624 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
4625 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4626 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
4627 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4628 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
4629 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
4630 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x3c, 0x2f,
4631 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
4632 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28, 0x75, 0x75,
4633 0x61, 0x79, 0x29, 0x76, 0x69, 0x72, 0x74, 0x2d,
4634 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2e, 0x70,
4635 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4636 0x96, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4637 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
4638 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
4639 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x10,
4640 0x08, 0x06, 0x00, 0x00, 0x00, 0x1f, 0xf3, 0xff,
4641 0x61, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49,
4642 0x54, 0x08, 0x08, 0x08, 0x08, 0x7c, 0x08, 0x64,
4643 0x88, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59,
4644 0x73, 0x00, 0x00, 0x0d, 0xd7, 0x00, 0x00, 0x0d,
4645 0xd7, 0x01, 0x42, 0x28, 0x9b, 0x78, 0x00, 0x00,
4646 0x00, 0x19, 0x74, 0x45, 0x58, 0x74, 0x53, 0x6f,
4647 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x00, 0x77,
4648 0x77, 0x77, 0x2e, 0x69, 0x6e, 0x6b, 0x73, 0x63,
4649 0x61, 0x70, 0x65, 0x2e, 0x6f, 0x72, 0x67, 0x9b,
4650 0xee, 0x3c, 0x1a, 0x00, 0x00, 0x02, 0x13, 0x49,
4651 0x44, 0x41, 0x54, 0x38, 0x8d, 0xa5, 0x93, 0xcb,
4652 0x6a, 0x14, 0x41, 0x14, 0x86, 0xbf, 0x53, 0x55,
4653 0x73, 0x6d, 0x48, 0x32, 0x20, 0x06, 0x62, 0x12,
4654 0x23, 0x26, 0x0b, 0xb7, 0xde, 0x36, 0xba, 0x70,
4655 0x63, 0x06, 0x1d, 0xf0, 0x19, 0x7c, 0x04, 0x37,
4656 0x82, 0xb8, 0x51, 0x50, 0x04, 0xf1, 0x31, 0x7c,
4657 0x83, 0x6c, 0x5c, 0x08, 0x09, 0x11, 0x22, 0xe2,
4658 0xde, 0x60, 0xbc, 0x81, 0x26, 0x10, 0x83, 0x61,
4659 0x48, 0x9c, 0xe9, 0xea, 0xe9, 0x9e, 0xee, 0x3a,
4660 0x2e, 0x3a, 0x11, 0x13, 0x03, 0x41, 0x3c, 0x9b,
4661 0x2a, 0xaa, 0xea, 0xff, 0xcf, 0x77, 0xce, 0xa1,
4662 0xa4, 0xdd, 0x6e, 0xf3, 0x3f, 0xe1, 0x3a, 0x9d,
4663 0xce, 0x1d, 0x11, 0x79, 0xa8, 0xaa, 0xb5, 0x7f,
4664 0x11, 0x8a, 0x88, 0x57, 0xd5, 0xbb, 0x4e, 0x55,
4665 0x1f, 0xb7, 0x6f, 0x5c, 0x8f, 0x9a, 0x8d, 0x26,
4666 0x79, 0xae, 0xc7, 0x67, 0x74, 0x82, 0xb5, 0x86,
4667 0x6e, 0xb7, 0x5b, 0x5f, 0x5a, 0x7c, 0xf5, 0xc4,
4668 0xa9, 0x6a, 0x6d, 0x74, 0x74, 0x84, 0xf9, 0x9b,
4669 0xcf, 0x49, 0xe9, 0x03, 0xa0, 0x7a, 0x84, 0xd1,
4670 0xde, 0x51, 0x4d, 0x22, 0x5e, 0xbe, 0xb8, 0xcd,
4671 0xc8, 0xe8, 0x28, 0x40, 0xc3, 0xed, 0xdf, 0xa7,
4672 0xa1, 0xcf, 0x85, 0xab, 0x63, 0x88, 0xc8, 0x1e,
4673 0x22, 0x80, 0x94, 0xab, 0x00, 0x5a, 0xee, 0xdf,
4674 0x2c, 0x6f, 0xb3, 0xfa, 0xee, 0x3d, 0x53, 0x53,
4675 0x93, 0x25, 0x51, 0x9a, 0xa6, 0x80, 0xa0, 0xe2,
4676 0x88, 0xd3, 0x50, 0x0a, 0x14, 0x44, 0xe4, 0x80,
4677 0x49, 0x36, 0xcc, 0xd9, 0xee, 0xfe, 0x04, 0x1c,
4678 0x67, 0x67, 0x67, 0x31, 0x12, 0x4a, 0x03, 0xef,
4679 0x3d, 0x21, 0x14, 0x18, 0x63, 0x18, 0xe4, 0x52,
4680 0x66, 0x2b, 0x9b, 0x04, 0x94, 0xc2, 0xcd, 0x1f,
4681 0x3b, 0xc4, 0x3e, 0x05, 0xa0, 0x61, 0x5a, 0x7c,
4682 0x58, 0x5b, 0x63, 0x7a, 0x7a, 0x92, 0x24, 0x49,
4683 0x70, 0x49, 0x92, 0x50, 0x14, 0x01, 0x8c, 0x23,
4684 0xc9, 0xcb, 0x6c, 0x8a, 0x20, 0x40, 0x9c, 0xa4,
4685 0xec, 0xf4, 0x12, 0x54, 0x1d, 0x95, 0xfa, 0x5e,
4686 0xb5, 0x89, 0x65, 0x7a, 0xe6, 0x34, 0x15, 0x67,
4687 0xf0, 0xde, 0xe3, 0xe2, 0x38, 0x46, 0x83, 0x62,
4688 0x4c, 0x85, 0x41, 0x70, 0xfb, 0x00, 0x24, 0xe9,
4689 0x90, 0x6c, 0x68, 0x70, 0xb5, 0xe8, 0xe0, 0xf8,
4690 0xac, 0xe5, 0xf3, 0xc7, 0x4f, 0xcc, 0xcd, 0xcd,
4691 0xd2, 0xef, 0xf7, 0x4b, 0x02, 0x45, 0x11, 0x6b,
4692 0x49, 0x83, 0x03, 0x05, 0x45, 0x51, 0x6b, 0xa9,
4693 0xd8, 0x23, 0x86, 0x61, 0x87, 0x4c, 0x9c, 0x9a,
4694 0xc0, 0x18, 0xca, 0x12, 0xbc, 0xf7, 0x00, 0x18,
4695 0xe3, 0xb0, 0xd5, 0xe8, 0x6f, 0xc5, 0xa1, 0x18,
4696 0x9a, 0x3e, 0x45, 0x51, 0xa0, 0x08, 0x71, 0x1c,
4697 0xe3, 0x42, 0x28, 0xbb, 0xd9, 0x6a, 0x38, 0xb2,
4698 0xcd, 0xc1, 0xb1, 0x06, 0x51, 0xd5, 0x21, 0x46,
4699 0x31, 0x22, 0x25, 0x81, 0x73, 0xae, 0xb7, 0xfe,
4700 0x6d, 0xa3, 0xf5, 0xec, 0xd1, 0xf9, 0x63, 0xc5,
4701 0xbf, 0x29, 0xd2, 0x9c, 0xf5, 0xf5, 0x0d, 0x80,
4702 0x1d, 0xe9, 0x74, 0x3a, 0xb7, 0x6a, 0xb5, 0xda,
4703 0x03, 0x11, 0x8d, 0x40, 0x0c, 0x30, 0x53, 0xa9,
4704 0x38, 0x57, 0xa9, 0x56, 0xc5, 0x1a, 0x03, 0x40,
4705 0x11, 0x02, 0x59, 0x96, 0x69, 0x3e, 0xcc, 0x87,
4706 0xc0, 0x57, 0xd0, 0xa0, 0xca, 0xae, 0xf7, 0xc9,
4707 0x7d, 0x97, 0xe7, 0xf9, 0x42, 0x9e, 0xe7, 0x0b,
4708 0x00, 0xaa, 0x1a, 0xb5, 0x4e, 0x8c, 0xbd, 0x9d,
4709 0x6f, 0xb7, 0xcf, 0x5d, 0xba, 0x78, 0x99, 0xf1,
4710 0x93, 0xe3, 0xa8, 0x2a, 0x5b, 0x5b, 0xdf, 0x59,
4711 0x79, 0xbd, 0xa2, 0x4b, 0xcb, 0x4b, 0xab, 0x49,
4712 0x6f, 0x70, 0x25, 0xcb, 0x32, 0xbf, 0x4f, 0x23,
4713 0x87, 0xbf, 0xb3, 0x31, 0x66, 0xa4, 0xde, 0xac,
4714 0x3f, 0x6d, 0x46, 0xcd, 0x6b, 0xd6, 0x9a, 0x33,
4715 0x80, 0x16, 0xa1, 0xf8, 0x32, 0xf0, 0x83, 0xc5,
4716 0xde, 0x6e, 0xff, 0x9e, 0x88, 0xc4, 0x7f, 0xbe,
4717 0xff, 0x05, 0x77, 0x8f, 0xf2, 0x46, 0xb9, 0x93,
4718 0x0d, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
4719 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00,
4720 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x32, 0x35,
4721 0x36, 0x78, 0x32, 0x35, 0x36, 0x2f, 0x00, 0x00,
4722 0x00, 0x00, 0x00, 0x00, 0x76, 0x69, 0x72, 0x74,
4723 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d,
4724 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
4725 0x63, 0x65, 0x73, 0x2e, 0x75, 0x69, 0x00, 0x00,
4726 0xfe, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
4727 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
4728 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
4729 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
4730 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
4731 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
4732 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
4733 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
4734 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
4735 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71, 0x75,
4736 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74, 0x6b,
4737 0x2b, 0x20, 0x32, 0x2e, 0x36, 0x20, 0x2d, 0x2d,
4738 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d,
4739 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
4740 0x63, 0x65, 0x2d, 0x6e, 0x61, 0x6d, 0x69, 0x6e,
4741 0x67, 0x2d, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
4742 0x20, 0x74, 0x6f, 0x70, 0x6c, 0x65, 0x76, 0x65,
4743 0x6c, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78,
4744 0x74, 0x75, 0x61, 0x6c, 0x20, 0x2d, 0x2d, 0x3e,
4745 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
4746 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
4747 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x44, 0x69, 0x61,
4748 0x6c, 0x6f, 0x67, 0x22, 0x20, 0x69, 0x64, 0x3d,
4749 0x22, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
4750 0x6e, 0x63, 0x65, 0x73, 0x22, 0x3e, 0x0a, 0x20,
4751 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4752 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4753 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
4754 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
4755 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4756 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4757 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4758 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4759 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64, 0x65,
4760 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x22,
4761 0x3e, 0x35, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4762 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4763 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4764 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4765 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22,
4766 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
4767 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
4768 0x65, 0x73, 0x22, 0x3e, 0x50, 0x72, 0x65, 0x66,
4769 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x3c,
4770 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4771 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
4772 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4773 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74,
4774 0x79, 0x70, 0x65, 0x5f, 0x68, 0x69, 0x6e, 0x74,
4775 0x22, 0x3e, 0x6e, 0x6f, 0x72, 0x6d, 0x61, 0x6c,
4776 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4777 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4778 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20,
4779 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x65,
4780 0x6c, 0x65, 0x74, 0x65, 0x2d, 0x65, 0x76, 0x65,
4781 0x6e, 0x74, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64,
4782 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x67, 0x74, 0x6b,
4783 0x5f, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x5f,
4784 0x68, 0x69, 0x64, 0x65, 0x5f, 0x6f, 0x6e, 0x5f,
4785 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x22, 0x20,
4786 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d,
4787 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
4788 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
4789 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
4790 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c, 0x64,
4791 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78, 0x22, 0x3e,
4792 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4793 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
4794 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
4795 0x6b, 0x56, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69,
4796 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f,
4797 0x67, 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x31, 0x22,
4798 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4799 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4800 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4801 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4802 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4803 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4804 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4805 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
4806 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
4807 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
4808 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
4809 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
4810 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
4811 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4812 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e,
4813 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63,
4814 0x68, 0x69, 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63,
4815 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65,
4816 0x61, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4817 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
4818 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
4819 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
4820 0x48, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x42,
4821 0x6f, 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
4822 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x2d, 0x61,
4823 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72,
4824 0x65, 0x61, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
4825 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4826 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4827 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4828 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4829 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4830 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4831 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4832 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4833 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4834 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4835 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4836 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4837 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4838 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4839 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4840 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4841 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
4842 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x74,
4843 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64,
4844 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4845 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4846 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4847 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
4848 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4849 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4850 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
4851 0x65, 0x72, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4852 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4853 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
4854 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4855 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
4856 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4857 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4858 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x6c, 0x61,
4859 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72,
4860 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4861 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4862 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
4863 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4864 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
4865 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4866 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4867 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
4868 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4869 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4870 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4871 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61,
4872 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
4873 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4874 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4875 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4876 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4877 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4878 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
4879 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4880 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4881 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4882 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4883 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4884 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
4885 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
4886 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4887 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4888 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
4889 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
4890 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
4891 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4892 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4893 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
4894 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4895 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
4896 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
4897 0x47, 0x74, 0x6b, 0x4e, 0x6f, 0x74, 0x65, 0x62,
4898 0x6f, 0x6f, 0x6b, 0x22, 0x20, 0x69, 0x64, 0x3d,
4899 0x22, 0x6e, 0x6f, 0x74, 0x65, 0x62, 0x6f, 0x6f,
4900 0x6b, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4901 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4902 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4903 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
4904 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
4905 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
4906 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4907 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4908 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
4909 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
4910 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
4911 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
4912 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
4913 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
4914 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4915 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
4916 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
4917 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4918 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
4919 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
4920 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x56, 0x42, 0x6f,
4921 0x78, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x76,
4922 0x62, 0x6f, 0x78, 0x31, 0x22, 0x3e, 0x0a, 0x20,
4923 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4924 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4925 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4926 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
4927 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
4928 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
4929 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4930 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4931 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4932 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4933 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4934 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
4935 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
4936 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4937 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4938 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4939 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
4940 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
4941 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64,
4942 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68,
4943 0x22, 0x3e, 0x31, 0x38, 0x3c, 0x2f, 0x70, 0x72,
4944 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
4945 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4946 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4947 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4948 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4949 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
4950 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
4951 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
4952 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4953 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
4954 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
4955 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4956 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4957 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
4958 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
4959 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22,
4960 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c, 0x61, 0x62,
4961 0x65, 0x6c, 0x32, 0x22, 0x3e, 0x0a, 0x20, 0x20,
4962 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4963 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4964 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
4965 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
4966 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
4967 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
4968 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4969 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4970 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4971 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4972 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4973 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
4974 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
4975 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
4976 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4977 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
4978 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4979 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
4980 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
4981 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78,
4982 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30,
4983 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4984 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4985 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4986 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4987 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
4988 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
4989 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
4990 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
4991 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
4992 0x22, 0x3e, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
4993 0x20, 0x73, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67,
4994 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
4995 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
4996 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4997 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
4998 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
4999 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5000 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5001 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5002 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72,
5003 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x6e, 0x61,
5004 0x6d, 0x65, 0x3d, 0x22, 0x77, 0x65, 0x69, 0x67,
5005 0x68, 0x74, 0x22, 0x20, 0x76, 0x61, 0x6c, 0x75,
5006 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x6c, 0x64, 0x22,
5007 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5008 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5009 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5010 0x2f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
5011 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5012 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5013 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5014 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
5015 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5016 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5017 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
5018 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5019 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5020 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5021 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5022 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5023 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
5024 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
5025 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5026 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5027 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5028 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5029 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5030 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69,
5031 0x6c, 0x6c, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5032 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5033 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5034 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5035 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5036 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5037 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5038 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
5039 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72,
5040 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
5041 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5042 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5043 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
5044 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5045 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5046 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
5047 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
5048 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5049 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
5050 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
5051 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5052 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5053 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
5054 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
5055 0x74, 0x6b, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x22,
5056 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x61, 0x62,
5057 0x6c, 0x65, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
5058 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5059 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5060 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
5061 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
5062 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
5063 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
5064 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5065 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5066 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5067 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5068 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5069 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
5070 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
5071 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
5072 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5073 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5074 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5075 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5076 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5077 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
5078 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x77, 0x69,
5079 0x64, 0x74, 0x68, 0x22, 0x3e, 0x36, 0x3c, 0x2f,
5080 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5081 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5082 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5083 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5084 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5085 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x5f,
5086 0x72, 0x6f, 0x77, 0x73, 0x22, 0x3e, 0x32, 0x3c,
5087 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5088 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5089 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5090 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5091 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5092 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e,
5093 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73,
5094 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5095 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5097 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5098 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
5099 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
5100 0x65, 0x3d, 0x22, 0x63, 0x6f, 0x6c, 0x75, 0x6d,
5101 0x6e, 0x5f, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e,
5102 0x67, 0x22, 0x3e, 0x31, 0x32, 0x3c, 0x2f, 0x70,
5103 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5104 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5105 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5106 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5107 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5108 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x6f, 0x77,
5109 0x5f, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67,
5110 0x22, 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5111 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5112 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5113 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5114 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
5115 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5116 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5117 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5118 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
5119 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
5120 0x47, 0x74, 0x6b, 0x43, 0x68, 0x65, 0x63, 0x6b,
5121 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20,
5122 0x69, 0x64, 0x3d, 0x22, 0x63, 0x62, 0x73, 0x68,
5123 0x61, 0x72, 0x65, 0x66, 0x6f, 0x6c, 0x64, 0x65,
5124 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5125 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5126 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5127 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5128 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5129 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
5130 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
5131 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
5132 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x53, 0x68,
5133 0x61, 0x72, 0x65, 0x20, 0x66, 0x6f, 0x6c, 0x64,
5134 0x65, 0x72, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
5135 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
5136 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5137 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5138 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5139 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5140 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
5141 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
5142 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5143 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5144 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5145 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5146 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5147 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5148 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
5149 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
5150 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
5151 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5152 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5153 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5154 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5155 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
5156 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
5157 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
5158 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
5159 0x6c, 0x74, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5160 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5161 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5162 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5163 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5164 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5165 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5166 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x72, 0x61,
5167 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61,
5168 0x74, 0x6f, 0x72, 0x22, 0x3e, 0x54, 0x72, 0x75,
5169 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5170 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5171 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5172 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5173 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
5174 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5175 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5176 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5177 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
5178 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5179 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5180 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5181 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5182 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5183 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x5f, 0x6f,
5184 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x2f,
5185 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5186 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5187 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5188 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
5189 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5190 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5191 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5192 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
5193 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5194 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5195 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
5196 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5197 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5198 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5199 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
5200 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
5201 0x22, 0x47, 0x74, 0x6b, 0x43, 0x68, 0x65, 0x63,
5202 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
5203 0x20, 0x69, 0x64, 0x3d, 0x22, 0x63, 0x62, 0x73,
5204 0x68, 0x61, 0x72, 0x65, 0x66, 0x6f, 0x6c, 0x64,
5205 0x65, 0x72, 0x72, 0x6f, 0x22, 0x3e, 0x0a, 0x20,
5206 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5207 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5208 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5209 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5210 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
5211 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
5212 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
5213 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
5214 0x3e, 0x52, 0x65, 0x61, 0x64, 0x2d, 0x6f, 0x6e,
5215 0x6c, 0x79, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
5216 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
5217 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5218 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5219 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5220 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5221 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
5222 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
5223 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5224 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5225 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5226 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5227 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5228 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5229 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
5230 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
5231 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
5232 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5233 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5234 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5235 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5236 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
5237 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
5238 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
5239 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
5240 0x6c, 0x74, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5241 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5242 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5243 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5244 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5245 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5246 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5247 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x72, 0x61,
5248 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x69, 0x63, 0x61,
5249 0x74, 0x6f, 0x72, 0x22, 0x3e, 0x54, 0x72, 0x75,
5250 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5251 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5252 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5253 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5254 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
5255 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5256 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5257 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5258 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
5259 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5260 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5261 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5262 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5263 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5264 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67,
5265 0x68, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
5266 0x68, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72,
5267 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
5268 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5269 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5270 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5271 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5272 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5273 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61,
5274 0x63, 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70,
5275 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5276 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5277 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5278 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5279 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5280 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5281 0x22, 0x62, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f,
5282 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e,
5283 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5284 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5285 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5286 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5287 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
5288 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
5289 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5290 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5291 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
5292 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5293 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5294 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5295 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
5296 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5297 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5298 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
5299 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
5300 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x46,
5301 0x69, 0x6c, 0x65, 0x43, 0x68, 0x6f, 0x6f, 0x73,
5302 0x65, 0x72, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
5303 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x66, 0x63,
5304 0x73, 0x68, 0x61, 0x72, 0x65, 0x66, 0x6f, 0x6c,
5305 0x64, 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20,
5306 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5307 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5308 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5309 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5310 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
5311 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
5312 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5313 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5314 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5315 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5316 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5317 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5318 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
5319 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
5320 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
5321 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5322 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5323 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5324 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5325 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
5326 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
5327 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x6f,
5328 0x6e, 0x22, 0x3e, 0x73, 0x65, 0x6c, 0x65, 0x63,
5329 0x74, 0x2d, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72,
5330 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5331 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5332 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5333 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5334 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
5335 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5336 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5337 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5338 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
5339 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5340 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5341 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5342 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5343 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5344 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x65, 0x66, 0x74,
5345 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22,
5346 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
5347 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
5348 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5349 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5350 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5351 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5352 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x69,
5353 0x67, 0x68, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61,
5354 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c, 0x2f, 0x70,
5355 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5356 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5357 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5358 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5359 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
5360 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5361 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5362 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
5363 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
5364 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5365 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5366 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
5367 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5368 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5369 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
5370 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
5371 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5372 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5373 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
5374 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
5375 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
5376 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
5377 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5378 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5379 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5380 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5381 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5382 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5383 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x46, 0x61,
5384 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5385 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5386 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5387 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5388 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
5389 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
5390 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
5391 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f,
5392 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5393 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5394 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5395 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
5396 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
5397 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5398 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5399 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
5400 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5401 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
5402 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
5403 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5404 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
5405 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5406 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5407 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20,
5408 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x74, 0x61,
5409 0x62, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5410 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5411 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
5412 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
5413 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65,
5414 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6c,
5415 0x61, 0x62, 0x65, 0x6c, 0x31, 0x22, 0x3e, 0x0a,
5416 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5417 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5418 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5419 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5420 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
5421 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
5422 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5423 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5424 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5425 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5426 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5427 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
5428 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5429 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5430 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5431 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5432 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5433 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5434 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
5435 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
5436 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
5437 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x53,
5438 0x70, 0x69, 0x63, 0x65, 0x3c, 0x2f, 0x70, 0x72,
5439 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
5440 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5441 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
5442 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
5443 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5444 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5445 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
5446 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5447 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5448 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5449 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5450 0x74, 0x61, 0x62, 0x5f, 0x66, 0x69, 0x6c, 0x6c,
5451 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
5452 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5453 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5454 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5455 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
5456 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5457 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5458 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
5459 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5460 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
5461 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5462 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5463 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
5464 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5465 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5466 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5467 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
5468 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75,
5469 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5470 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5471 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5472 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5473 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5474 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
5475 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5476 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5477 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5478 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
5479 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
5480 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
5481 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f,
5482 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5483 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5484 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
5485 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
5486 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5487 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
5488 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
5489 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
5490 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
5491 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x3c,
5492 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
5493 0x0a, 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,
5494 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00,
5495 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69,
5496 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
5497 0x72, 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00, 0x00,
5498 0x05, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
5499 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
5500 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
5501 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
5502 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
5503 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
5504 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
5505 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
5506 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
5507 0x20, 0x33, 0x2e, 0x32, 0x30, 0x2e, 0x30, 0x20,
5508 0x2d, 0x2d, 0x3e, 0x0a, 0x3c, 0x69, 0x6e, 0x74,
5509 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a,
5510 0x20, 0x20, 0x3c, 0x72, 0x65, 0x71, 0x75, 0x69,
5511 0x72, 0x65, 0x73, 0x20, 0x6c, 0x69, 0x62, 0x3d,
5512 0x22, 0x67, 0x74, 0x6b, 0x2b, 0x22, 0x20, 0x76,
5513 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22,
5514 0x33, 0x2e, 0x30, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
5515 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
5516 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
5517 0x47, 0x74, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x6c,
5518 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x20, 0x69,
5519 0x64, 0x3d, 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c,
5520 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x2f, 0x3e,
5521 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
5522 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
5523 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x41, 0x70, 0x70,
5524 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
5525 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x22, 0x20,
5526 0x69, 0x64, 0x3d, 0x22, 0x76, 0x69, 0x65, 0x77,
5527 0x65, 0x72, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5528 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5529 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5530 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
5531 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5532 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5533 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5534 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5535 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5536 0x22, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
5537 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x22, 0x3e,
5538 0x31, 0x30, 0x32, 0x34, 0x3c, 0x2f, 0x70, 0x72,
5539 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
5540 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5541 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5542 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x65, 0x66, 0x61,
5543 0x75, 0x6c, 0x74, 0x5f, 0x68, 0x65, 0x69, 0x67,
5544 0x68, 0x74, 0x22, 0x3e, 0x37, 0x36, 0x38, 0x3c,
5545 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5546 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
5547 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e,
5548 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x65, 0x6c,
5549 0x65, 0x74, 0x65, 0x2d, 0x65, 0x76, 0x65, 0x6e,
5550 0x74, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
5551 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74,
5552 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f,
5553 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x64,
5554 0x65, 0x6c, 0x65, 0x74, 0x65, 0x22, 0x20, 0x73,
5555 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
5556 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
5557 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
5558 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5559 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
5560 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
5561 0x74, 0x6b, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61,
5562 0x79, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x76,
5563 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d, 0x6f, 0x76,
5564 0x65, 0x72, 0x6c, 0x61, 0x79, 0x22, 0x3e, 0x0a,
5565 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5566 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5567 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5568 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
5569 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
5570 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5571 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5572 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5573 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5574 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
5575 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5576 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5577 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5578 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
5579 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5580 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5581 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
5582 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
5583 0x6b, 0x56, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69,
5584 0x64, 0x3d, 0x22, 0x76, 0x69, 0x65, 0x77, 0x65,
5585 0x72, 0x2d, 0x62, 0x6f, 0x78, 0x22, 0x3e, 0x0a,
5586 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5587 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5588 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5589 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
5590 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
5591 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5592 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5593 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5594 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5595 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5596 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
5597 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5598 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5599 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5600 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5601 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
5602 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5603 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5604 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
5605 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
5606 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x42, 0x61, 0x72,
5607 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x6f,
5608 0x70, 0x2d, 0x6d, 0x65, 0x6e, 0x75, 0x22, 0x3e,
5609 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5610 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5611 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5612 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5613 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
5614 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
5615 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5616 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5617 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5618 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
5619 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
5620 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
5621 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
5622 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
5623 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
5624 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5625 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
5626 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
5627 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5628 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5629 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
5630 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
5631 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74,
5632 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
5633 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x66, 0x69, 0x6c,
5634 0x65, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5635 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5636 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5637 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5638 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5639 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
5640 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
5641 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5642 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5643 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5644 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5645 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5646 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
5647 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
5648 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
5649 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5650 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5651 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5652 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5653 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5654 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
5655 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
5656 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
5657 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5658 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5659 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5660 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5661 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5662 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5663 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5664 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
5665 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
5666 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
5667 0x73, 0x22, 0x3e, 0x5f, 0x46, 0x69, 0x6c, 0x65,
5668 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5669 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5670 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5671 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5672 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5673 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5674 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65,
5675 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54,
5676 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5677 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5678 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5679 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5680 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
5681 0x64, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22,
5682 0x73, 0x75, 0x62, 0x6d, 0x65, 0x6e, 0x75, 0x22,
5683 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5684 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5685 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5686 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
5687 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
5688 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x22, 0x20,
5689 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75,
5690 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5691 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5692 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5693 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5694 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5695 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
5696 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
5697 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5698 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5699 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5700 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5701 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5702 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5703 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
5704 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
5705 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
5706 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5707 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5708 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5709 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5710 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5711 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5712 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x67,
5713 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x61, 0x63,
5714 0x63, 0x65, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70,
5715 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5716 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5717 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5718 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5719 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
5720 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5721 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5722 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5723 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
5724 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
5725 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
5726 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d,
5727 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65,
5728 0x6e, 0x75, 0x2d, 0x66, 0x69, 0x6c, 0x65, 0x2d,
5729 0x73, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x73, 0x68,
5730 0x6f, 0x74, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5731 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5732 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5733 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5734 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5735 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5736 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
5737 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
5738 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5739 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5740 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5741 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5742 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5743 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5744 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
5745 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
5746 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
5747 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5748 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5749 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5750 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5751 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5752 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5753 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73,
5754 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
5755 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61,
5756 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c,
5757 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
5758 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
5759 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5760 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5761 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5762 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
5763 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
5764 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
5765 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
5766 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
5767 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x53, 0x63, 0x72,
5768 0x65, 0x65, 0x6e, 0x73, 0x68, 0x6f, 0x74, 0x3c,
5769 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5770 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5771 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5772 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5773 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5774 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5775 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
5776 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72,
5777 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72,
5778 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
5779 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
5780 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5781 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5782 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5783 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
5784 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5785 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
5786 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
5787 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
5788 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77,
5789 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65,
5790 0x6e, 0x75, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
5791 0x73, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x73, 0x68,
5792 0x6f, 0x74, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70,
5793 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22,
5794 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5795 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5796 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5797 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
5798 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
5799 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5800 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5801 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5802 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
5803 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5804 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5805 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5806 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
5807 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5808 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5809 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5810 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
5811 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
5812 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
5813 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
5814 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x66,
5815 0x69, 0x6c, 0x65, 0x2d, 0x75, 0x73, 0x62, 0x2d,
5816 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2d, 0x73,
5817 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
5818 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5819 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5820 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5821 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5822 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5823 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
5824 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
5825 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
5826 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
5827 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5828 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5829 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5830 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5831 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5832 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x65, 0x6e, 0x73,
5833 0x69, 0x74, 0x69, 0x76, 0x65, 0x22, 0x3e, 0x46,
5834 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
5835 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
5836 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5837 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5838 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5839 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5840 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5841 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
5842 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
5843 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
5844 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
5845 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5846 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5847 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5848 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
5849 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
5850 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
5851 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
5852 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63,
5853 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
5854 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5855 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
5856 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5857 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5858 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5859 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5860 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5861 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
5862 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
5863 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
5864 0x22, 0x3e, 0x5f, 0x55, 0x53, 0x42, 0x20, 0x64,
5865 0x65, 0x76, 0x69, 0x63, 0x65, 0x20, 0x73, 0x65,
5866 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3c,
5867 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
5868 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
5869 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5870 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5871 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5872 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5873 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
5874 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72,
5875 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72,
5876 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
5877 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
5878 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5879 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5880 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5881 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
5882 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
5883 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
5884 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
5885 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
5886 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77,
5887 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65,
5888 0x6e, 0x75, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
5889 0x75, 0x73, 0x62, 0x5f, 0x64, 0x65, 0x76, 0x69,
5890 0x63, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63,
5891 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x73, 0x77,
5892 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e,
5893 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5894 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5895 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5896 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5897 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
5898 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5899 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5900 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5901 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
5902 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5903 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5904 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5905 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
5906 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5907 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5908 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5909 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
5910 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
5911 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65,
5912 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20,
5913 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75,
5914 0x2d, 0x66, 0x69, 0x6c, 0x65, 0x2d, 0x73, 0x6d,
5915 0x61, 0x72, 0x74, 0x63, 0x61, 0x72, 0x64, 0x2d,
5916 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x22, 0x3e,
5917 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5918 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5919 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5920 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5921 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5922 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
5923 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
5924 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
5925 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
5926 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5927 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5928 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5929 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
5930 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
5931 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
5932 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
5933 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
5934 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
5935 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
5936 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5937 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5938 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5939 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5940 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
5941 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
5942 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x70,
5943 0x61, 0x74, 0x68, 0x22, 0x3e, 0x26, 0x6c, 0x74,
5944 0x3b, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
5945 0x65, 0x77, 0x65, 0x72, 0x26, 0x67, 0x74, 0x3b,
5946 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x2f, 0x73, 0x6d,
5947 0x61, 0x72, 0x74, 0x63, 0x61, 0x72, 0x64, 0x2d,
5948 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x3c, 0x2f,
5949 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5950 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5951 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5952 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5953 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
5954 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
5955 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
5956 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
5957 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
5958 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
5959 0x53, 0x6d, 0x61, 0x72, 0x74, 0x63, 0x61, 0x72,
5960 0x64, 0x20, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74,
5961 0x69, 0x6f, 0x6e, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
5962 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
5963 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5964 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5965 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5966 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
5967 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
5968 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
5969 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
5970 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
5971 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
5972 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5973 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5974 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5975 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73,
5976 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61,
5977 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
5978 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61,
5979 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76,
5980 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77,
5981 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
5982 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x66,
5983 0x69, 0x6c, 0x65, 0x5f, 0x73, 0x6d, 0x61, 0x72,
5984 0x74, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x69, 0x6e,
5985 0x73, 0x65, 0x72, 0x74, 0x22, 0x20, 0x73, 0x77,
5986 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e,
5987 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
5988 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5989 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5990 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
5991 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
5992 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5993 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5994 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5995 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
5996 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5997 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5998 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
5999 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
6000 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6001 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6002 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6003 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
6004 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
6005 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65,
6006 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20,
6007 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75,
6008 0x2d, 0x66, 0x69, 0x6c, 0x65, 0x2d, 0x73, 0x6d,
6009 0x61, 0x72, 0x74, 0x63, 0x61, 0x72, 0x64, 0x2d,
6010 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x22, 0x3e,
6011 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6012 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6013 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6014 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6015 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6016 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
6017 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
6018 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
6019 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6020 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6021 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6022 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6023 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6024 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6025 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
6026 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
6027 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
6028 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
6029 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6030 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6031 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6032 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6033 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6034 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6035 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6036 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x70,
6037 0x61, 0x74, 0x68, 0x22, 0x3e, 0x26, 0x6c, 0x74,
6038 0x3b, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
6039 0x65, 0x77, 0x65, 0x72, 0x26, 0x67, 0x74, 0x3b,
6040 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x2f, 0x73, 0x6d,
6041 0x61, 0x72, 0x74, 0x63, 0x61, 0x72, 0x64, 0x2d,
6042 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x3c, 0x2f,
6043 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6044 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6045 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6046 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6047 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
6048 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
6049 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
6050 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
6051 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
6052 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
6053 0x53, 0x6d, 0x61, 0x72, 0x74, 0x63, 0x61, 0x72,
6054 0x64, 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x61,
6055 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6056 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6057 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6058 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6059 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6060 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6061 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6062 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64,
6063 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e,
6064 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
6065 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
6066 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6067 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6068 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6069 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
6070 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
6071 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
6072 0x74, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64,
6073 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72,
6074 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
6075 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f,
6076 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x66, 0x69, 0x6c,
6077 0x65, 0x5f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x63,
6078 0x61, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x6d, 0x6f,
6079 0x76, 0x65, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70,
6080 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22,
6081 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6082 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6083 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6084 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
6085 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
6086 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6087 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6088 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6089 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
6090 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6091 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6092 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6093 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
6094 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6095 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6096 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6097 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
6098 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
6099 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
6100 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
6101 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x63,
6102 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2d, 0x63, 0x64,
6103 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6104 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6105 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6106 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6107 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6108 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
6109 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
6110 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
6111 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6112 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6113 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6114 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6115 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6116 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6117 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
6118 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
6119 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
6120 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
6121 0x3e, 0x5f, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65,
6122 0x20, 0x43, 0x44, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6123 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6124 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6125 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6126 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6127 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6128 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6129 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
6130 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
6131 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
6132 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6133 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6134 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6135 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6136 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73,
6137 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61,
6138 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
6139 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61,
6140 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76,
6141 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77,
6142 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
6143 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x63,
6144 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x63, 0x64,
6145 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74,
6146 0x65, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70,
6147 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f,
6148 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6149 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6150 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6151 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
6152 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
6153 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6154 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6155 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
6156 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
6157 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6158 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6159 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6160 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
6161 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6162 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6163 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6164 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
6165 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
6166 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49,
6167 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d,
6168 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x70, 0x72,
6169 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65,
6170 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6171 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6172 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6173 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6174 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6175 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
6176 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
6177 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
6178 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6179 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6180 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6181 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6182 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6183 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6184 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
6185 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
6186 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
6187 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6188 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6189 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6190 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6191 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6192 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6193 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
6194 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
6195 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
6196 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f,
6197 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
6198 0x63, 0x65, 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6199 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6200 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6201 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6202 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6203 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6204 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6205 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
6206 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
6207 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
6208 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6209 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6210 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6211 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6212 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73,
6213 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61,
6214 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
6215 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61,
6216 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76,
6217 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77,
6218 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
6219 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x70,
6220 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
6221 0x65, 0x73, 0x5f, 0x63, 0x62, 0x22, 0x20, 0x73,
6222 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
6223 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
6224 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6225 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6226 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6227 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
6228 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6229 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6230 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6231 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
6232 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6233 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6234 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6235 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
6236 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6237 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6238 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6239 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
6240 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
6241 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x53,
6242 0x65, 0x70, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x72,
6243 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d,
6244 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x65,
6245 0x70, 0x61, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x6d,
6246 0x65, 0x6e, 0x75, 0x69, 0x74, 0x65, 0x6d, 0x31,
6247 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6249 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6250 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6251 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6252 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
6253 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
6254 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
6255 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
6256 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6257 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6258 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6259 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
6260 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
6261 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
6262 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
6263 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
6264 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
6265 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6266 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6267 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6268 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
6269 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6270 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6272 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
6273 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6274 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6275 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6276 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
6277 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6278 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6279 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6280 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6281 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
6282 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
6283 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65,
6284 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x69,
6285 0x6d, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x75,
6286 0x69, 0x74, 0x65, 0x6d, 0x35, 0x22, 0x3e, 0x0a,
6287 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6288 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6289 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6290 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
6291 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
6292 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
6293 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
6294 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
6295 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x51,
6296 0x75, 0x69, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6297 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6298 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6299 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6300 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6301 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6302 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6303 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
6304 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
6305 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6306 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6307 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6308 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6309 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6310 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6311 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
6312 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
6313 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
6314 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6315 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6316 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6317 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6318 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6319 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6320 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
6321 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69,
6322 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61,
6323 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46,
6324 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
6325 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
6326 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6327 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6328 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6329 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
6330 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
6331 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
6332 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
6333 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
6334 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6335 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6336 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6337 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6338 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6339 0x61, 0x63, 0x63, 0x65, 0x6c, 0x65, 0x72, 0x61,
6340 0x74, 0x6f, 0x72, 0x20, 0x6b, 0x65, 0x79, 0x3d,
6341 0x22, 0x71, 0x22, 0x20, 0x73, 0x69, 0x67, 0x6e,
6342 0x61, 0x6c, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
6343 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x6d, 0x6f,
6344 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x3d,
6345 0x22, 0x47, 0x44, 0x4b, 0x5f, 0x53, 0x48, 0x49,
6346 0x46, 0x54, 0x5f, 0x4d, 0x41, 0x53, 0x4b, 0x20,
6347 0x7c, 0x20, 0x47, 0x44, 0x4b, 0x5f, 0x43, 0x4f,
6348 0x4e, 0x54, 0x52, 0x4f, 0x4c, 0x5f, 0x4d, 0x41,
6349 0x53, 0x4b, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
6350 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6351 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6352 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6353 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
6354 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
6355 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
6356 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
6357 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
6358 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77,
6359 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65,
6360 0x6e, 0x75, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f,
6361 0x71, 0x75, 0x69, 0x74, 0x22, 0x20, 0x73, 0x77,
6362 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e,
6363 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6364 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6365 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6366 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6367 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
6368 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6369 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6370 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6371 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
6372 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6373 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6374 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6375 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
6376 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6377 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6378 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
6379 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
6380 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6381 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6382 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
6383 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6384 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6385 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
6386 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6387 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6388 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
6389 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6390 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6391 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
6392 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
6393 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
6394 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d,
6395 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65,
6396 0x6e, 0x75, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x22,
6397 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6398 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6399 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
6400 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
6401 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
6402 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
6403 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6404 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6405 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6406 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6407 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6408 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6409 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
6410 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
6411 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6412 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6413 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6414 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6415 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6416 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6417 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61,
6418 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70,
6419 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65,
6420 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
6421 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6422 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6423 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6424 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6425 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6426 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
6427 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
6428 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
6429 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
6430 0x3e, 0x5f, 0x56, 0x69, 0x65, 0x77, 0x3c, 0x2f,
6431 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6432 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6433 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6434 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
6435 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
6436 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73,
6437 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c,
6438 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
6439 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6440 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6441 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6442 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6443 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x20,
6444 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x73, 0x75,
6445 0x62, 0x6d, 0x65, 0x6e, 0x75, 0x22, 0x3e, 0x0a,
6446 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6447 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6448 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
6449 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
6450 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
6451 0x4d, 0x65, 0x6e, 0x75, 0x22, 0x20, 0x69, 0x64,
6452 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x32, 0x22,
6453 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6454 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6455 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6456 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
6457 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
6458 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
6459 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
6460 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6461 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6462 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6463 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6464 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6465 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6466 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
6467 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
6468 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6469 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6470 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6471 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6472 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6473 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6474 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61,
6475 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x67, 0x72, 0x6f,
6476 0x75, 0x70, 0x22, 0x3e, 0x61, 0x63, 0x63, 0x65,
6477 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x3c, 0x2f,
6478 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6479 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6480 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6481 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6482 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
6483 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6484 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6485 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6486 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
6487 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
6488 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x43, 0x68,
6489 0x65, 0x63, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49,
6490 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d,
6491 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x76, 0x69,
6492 0x65, 0x77, 0x2d, 0x66, 0x75, 0x6c, 0x6c, 0x73,
6493 0x63, 0x72, 0x65, 0x65, 0x6e, 0x22, 0x3e, 0x0a,
6494 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6495 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6496 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6497 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
6498 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
6499 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
6500 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
6501 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6502 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6503 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6504 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6505 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6506 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6507 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6508 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
6509 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
6510 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6511 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6512 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6513 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6514 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6515 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6516 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6517 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
6518 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
6519 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
6520 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
6521 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6522 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6523 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6524 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6525 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6526 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6527 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63,
6528 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x22,
6529 0x3e, 0x26, 0x6c, 0x74, 0x3b, 0x76, 0x69, 0x72,
6530 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
6531 0x26, 0x67, 0x74, 0x3b, 0x2f, 0x76, 0x69, 0x65,
6532 0x77, 0x2f, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
6533 0x2d, 0x66, 0x75, 0x6c, 0x6c, 0x73, 0x63, 0x72,
6534 0x65, 0x65, 0x6e, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6535 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6536 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6537 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6538 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6539 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6540 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6541 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
6542 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
6543 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
6544 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x46, 0x75,
6545 0x6c, 0x6c, 0x20, 0x73, 0x63, 0x72, 0x65, 0x65,
6546 0x6e, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6547 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6548 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6549 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6550 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6551 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6552 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6553 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64,
6554 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e,
6555 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
6556 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
6557 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6558 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6559 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6560 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
6561 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
6562 0x3d, 0x22, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
6563 0x64, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
6564 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74,
6565 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f,
6566 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d,
6567 0x65, 0x6e, 0x75, 0x5f, 0x76, 0x69, 0x65, 0x77,
6568 0x5f, 0x66, 0x75, 0x6c, 0x6c, 0x73, 0x63, 0x72,
6569 0x65, 0x65, 0x6e, 0x22, 0x20, 0x73, 0x77, 0x61,
6570 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f,
6571 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6572 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6573 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6574 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
6575 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
6576 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6577 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6578 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6579 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
6580 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6581 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6582 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6583 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
6584 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6585 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6586 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6587 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
6588 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
6589 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e,
6590 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69,
6591 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d,
6592 0x76, 0x69, 0x65, 0x77, 0x2d, 0x7a, 0x6f, 0x6f,
6593 0x6d, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6594 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6595 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6596 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6597 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6598 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
6599 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
6600 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
6601 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6602 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6603 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6604 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6605 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6606 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6607 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
6608 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
6609 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
6610 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6611 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6612 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6613 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6614 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6615 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6616 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
6617 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
6618 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
6619 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
6620 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6621 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6622 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6623 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6624 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6625 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6626 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6627 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
6628 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
6629 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
6630 0x73, 0x22, 0x3e, 0x5f, 0x5a, 0x6f, 0x6f, 0x6d,
6631 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6632 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6633 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6634 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6635 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6636 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6637 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
6638 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65,
6639 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54,
6640 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6641 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6642 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6643 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6644 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6645 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
6646 0x64, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22,
6647 0x73, 0x75, 0x62, 0x6d, 0x65, 0x6e, 0x75, 0x22,
6648 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6649 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6650 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6651 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6652 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
6653 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
6654 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x22, 0x20,
6655 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75,
6656 0x34, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6657 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6658 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6659 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6660 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
6661 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
6662 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
6663 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
6664 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6665 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6666 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6667 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6668 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6669 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6670 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6671 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
6672 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
6673 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
6674 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6675 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6676 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6677 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6678 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6679 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6680 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6681 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x67,
6682 0x72, 0x6f, 0x75, 0x70, 0x22, 0x3e, 0x61, 0x63,
6683 0x63, 0x65, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70,
6684 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6685 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6686 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6687 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6688 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6689 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
6690 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6691 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6692 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6693 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6694 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
6695 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
6696 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
6697 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d,
6698 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65,
6699 0x6e, 0x75, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d,
6700 0x7a, 0x6f, 0x6f, 0x6d, 0x2d, 0x69, 0x6e, 0x22,
6701 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6702 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6703 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6704 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6705 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
6706 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
6707 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63,
6708 0x63, 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68,
6709 0x22, 0x3e, 0x26, 0x6c, 0x74, 0x3b, 0x76, 0x69,
6710 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
6711 0x72, 0x26, 0x67, 0x74, 0x3b, 0x2f, 0x76, 0x69,
6712 0x65, 0x77, 0x2f, 0x7a, 0x6f, 0x6f, 0x6d, 0x2d,
6713 0x69, 0x6e, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
6714 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
6715 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6716 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6717 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6718 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6719 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
6720 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
6721 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
6722 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
6723 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
6724 0x65, 0x73, 0x22, 0x3e, 0x5a, 0x6f, 0x6f, 0x6d,
6725 0x20, 0x5f, 0x49, 0x6e, 0x3c, 0x2f, 0x70, 0x72,
6726 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
6727 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6728 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6729 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6730 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6731 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
6732 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
6733 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
6734 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
6735 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6736 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6737 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6738 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6739 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6740 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6741 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6742 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6743 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
6744 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
6745 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
6746 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6747 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6748 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6749 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6750 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6751 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6752 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
6753 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
6754 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
6755 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
6756 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
6757 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
6758 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6759 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6760 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6761 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6762 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6763 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6764 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
6765 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69,
6766 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
6767 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
6768 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
6769 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6770 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6771 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6772 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6773 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20,
6774 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63,
6775 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x22, 0x20,
6776 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d,
6777 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69,
6778 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e,
6779 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75,
6780 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x7a, 0x6f,
6781 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x22, 0x20, 0x73,
6782 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
6783 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
6784 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6785 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6786 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6787 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6788 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
6789 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6790 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6791 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6792 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6793 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
6794 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6795 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6796 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6797 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6798 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
6799 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6800 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6801 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6802 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6803 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
6804 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
6805 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d,
6806 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22,
6807 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e,
6808 0x75, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d, 0x7a,
6809 0x6f, 0x6f, 0x6d, 0x2d, 0x6f, 0x75, 0x74, 0x22,
6810 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6811 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6812 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6813 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6814 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
6815 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
6816 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63,
6817 0x63, 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68,
6818 0x22, 0x3e, 0x26, 0x6c, 0x74, 0x3b, 0x76, 0x69,
6819 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
6820 0x72, 0x26, 0x67, 0x74, 0x3b, 0x2f, 0x76, 0x69,
6821 0x65, 0x77, 0x2f, 0x7a, 0x6f, 0x6f, 0x6d, 0x2d,
6822 0x6f, 0x75, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6823 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6824 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6825 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6826 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6827 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6828 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6829 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6830 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
6831 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
6832 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
6833 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5a, 0x6f, 0x6f,
6834 0x6d, 0x20, 0x5f, 0x4f, 0x75, 0x74, 0x3c, 0x2f,
6835 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6836 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6837 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6838 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6839 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6840 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
6841 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
6842 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
6843 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
6844 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6845 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6846 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6847 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6848 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6849 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6850 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6851 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6852 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
6853 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
6854 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
6855 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
6856 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6857 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6858 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6859 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6860 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
6861 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
6862 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61,
6863 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70,
6864 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65,
6865 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
6866 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6867 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6868 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6869 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6870 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6871 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6872 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6873 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
6874 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72,
6875 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72,
6876 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
6877 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
6878 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6879 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6880 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6881 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6882 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
6883 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
6884 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
6885 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
6886 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
6887 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77,
6888 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65,
6889 0x6e, 0x75, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f,
6890 0x7a, 0x6f, 0x6f, 0x6d, 0x5f, 0x6f, 0x75, 0x74,
6891 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65,
6892 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e,
6893 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6894 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6895 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6896 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6897 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
6898 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
6899 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6900 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6901 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6902 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
6903 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
6904 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6905 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6906 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6907 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
6908 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
6909 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6910 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6911 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6912 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6913 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
6914 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
6915 0x74, 0x6b, 0x53, 0x65, 0x70, 0x61, 0x72, 0x61,
6916 0x74, 0x6f, 0x72, 0x4d, 0x65, 0x6e, 0x75, 0x49,
6917 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d,
6918 0x22, 0x73, 0x65, 0x70, 0x61, 0x72, 0x61, 0x74,
6919 0x6f, 0x72, 0x6d, 0x65, 0x6e, 0x75, 0x69, 0x74,
6920 0x65, 0x6d, 0x34, 0x22, 0x3e, 0x0a, 0x20, 0x20,
6921 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6922 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6923 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6924 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6925 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
6926 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
6927 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
6928 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
6929 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6930 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6931 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6932 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6933 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6934 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6935 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
6936 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
6937 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
6938 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
6939 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
6940 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
6941 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6942 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6943 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6944 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
6945 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
6946 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6947 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6948 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6949 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
6950 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
6951 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6952 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6953 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6954 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6955 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
6956 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6957 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6958 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6959 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6960 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
6961 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
6962 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
6963 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
6964 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x76,
6965 0x69, 0x65, 0x77, 0x2d, 0x7a, 0x6f, 0x6f, 0x6d,
6966 0x2d, 0x72, 0x65, 0x73, 0x65, 0x74, 0x22, 0x3e,
6967 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6968 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6969 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6970 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6971 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
6972 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
6973 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x63,
6974 0x65, 0x6c, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x22,
6975 0x3e, 0x26, 0x6c, 0x74, 0x3b, 0x76, 0x69, 0x72,
6976 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
6977 0x26, 0x67, 0x74, 0x3b, 0x2f, 0x76, 0x69, 0x65,
6978 0x77, 0x2f, 0x7a, 0x6f, 0x6f, 0x6d, 0x2d, 0x72,
6979 0x65, 0x73, 0x65, 0x74, 0x3c, 0x2f, 0x70, 0x72,
6980 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
6981 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6982 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6983 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6984 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6985 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
6986 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
6987 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
6988 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
6989 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
6990 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f, 0x4e,
6991 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x20, 0x53, 0x69,
6992 0x7a, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
6993 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
6994 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6995 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6996 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6997 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
6998 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
6999 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7000 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
7001 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7002 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7003 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7004 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7005 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7006 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7007 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7008 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7009 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
7010 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
7011 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
7012 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7013 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7014 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7015 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7016 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7017 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7018 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7019 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
7020 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f,
7021 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72,
7022 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61,
7023 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7024 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7025 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7026 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7027 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7028 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7029 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7030 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7031 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
7032 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
7033 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
7034 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7035 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7036 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7037 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7038 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7039 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73,
7040 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61,
7041 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
7042 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68, 0x61,
7043 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76,
7044 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77,
7045 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
7046 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x76,
7047 0x69, 0x65, 0x77, 0x5f, 0x7a, 0x6f, 0x6f, 0x6d,
7048 0x5f, 0x72, 0x65, 0x73, 0x65, 0x74, 0x22, 0x20,
7049 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d,
7050 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
7051 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7052 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7053 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7054 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7055 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7056 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7057 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7058 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7059 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7060 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
7061 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7062 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7063 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7064 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7065 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
7066 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7067 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7068 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7069 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7070 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
7071 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7072 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7073 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7074 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
7075 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7076 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7077 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7078 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
7079 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
7080 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7081 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7082 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
7083 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
7084 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7085 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7086 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7087 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
7088 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
7089 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74,
7090 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
7091 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x64, 0x69, 0x73,
7092 0x70, 0x6c, 0x61, 0x79, 0x73, 0x22, 0x3e, 0x0a,
7093 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7094 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7095 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7096 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7097 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7098 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
7099 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
7100 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7101 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7102 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7103 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7104 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7105 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7106 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7107 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
7108 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
7109 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7110 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7111 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7112 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7113 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7114 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7115 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7116 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63, 0x74,
7117 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x65,
7118 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x3e,
7119 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
7120 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7121 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7122 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7123 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7124 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7125 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7126 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
7127 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
7128 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
7129 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f,
7130 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x73,
7131 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7132 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7133 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7134 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7135 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7136 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7137 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7138 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65,
7139 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54,
7140 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7141 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7142 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7143 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7144 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7145 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7146 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7147 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7148 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7149 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
7150 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7151 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7152 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7153 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
7154 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7155 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7156 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7157 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
7158 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
7159 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
7160 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d,
7161 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65,
7162 0x6e, 0x75, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x2d,
7163 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x2d,
7164 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x22, 0x3e,
7165 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7166 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7167 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7168 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7169 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7170 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
7171 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
7172 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
7173 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7174 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7175 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7176 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7177 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7178 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7179 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
7180 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
7181 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
7182 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
7183 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7184 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7185 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7186 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7187 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7188 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7189 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7190 0x22, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x5f, 0x70,
7191 0x61, 0x74, 0x68, 0x22, 0x3e, 0x26, 0x6c, 0x74,
7192 0x3b, 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69,
7193 0x65, 0x77, 0x65, 0x72, 0x26, 0x67, 0x74, 0x3b,
7194 0x2f, 0x76, 0x69, 0x65, 0x77, 0x2f, 0x72, 0x65,
7195 0x6c, 0x65, 0x61, 0x73, 0x65, 0x2d, 0x63, 0x75,
7196 0x72, 0x73, 0x6f, 0x72, 0x3c, 0x2f, 0x70, 0x72,
7197 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7198 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7199 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7200 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7201 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7202 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7203 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
7204 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
7205 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
7206 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x52, 0x65,
7207 0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x63, 0x75,
7208 0x72, 0x73, 0x6f, 0x72, 0x3c, 0x2f, 0x70, 0x72,
7209 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7210 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7211 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7212 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7213 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7214 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7215 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
7216 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
7217 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7218 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7219 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7220 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7221 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7222 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7223 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e,
7224 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74,
7225 0x69, 0x76, 0x61, 0x74, 0x65, 0x22, 0x20, 0x68,
7226 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22,
7227 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65,
7228 0x77, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64,
7229 0x6f, 0x77, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x5f,
7230 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x6c,
7231 0x65, 0x61, 0x73, 0x65, 0x5f, 0x63, 0x75, 0x72,
7232 0x73, 0x6f, 0x72, 0x22, 0x20, 0x73, 0x77, 0x61,
7233 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f,
7234 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7235 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7236 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7237 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
7238 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
7239 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7240 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7241 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7242 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
7243 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7244 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7245 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7246 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
7247 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7249 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
7250 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
7251 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7252 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7253 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
7254 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7255 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7256 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
7257 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7258 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7259 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
7260 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7261 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7262 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
7263 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
7264 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4d,
7265 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65, 0x6d, 0x22,
7266 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e,
7267 0x75, 0x2d, 0x73, 0x65, 0x6e, 0x64, 0x22, 0x3e,
7268 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7269 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7270 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7271 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7272 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
7273 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
7274 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7275 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7276 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7277 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7278 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7279 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7280 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
7281 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
7282 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7283 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7284 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7285 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7286 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7287 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7288 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63,
7289 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70,
7290 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22,
7291 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7292 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7293 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7294 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7295 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7296 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7297 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
7298 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
7299 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
7300 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
7301 0x5f, 0x53, 0x65, 0x6e, 0x64, 0x20, 0x6b, 0x65,
7302 0x79, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7303 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7304 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7305 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7306 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7307 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7308 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64,
7309 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e,
7310 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7311 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7312 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7313 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7314 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
7315 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7316 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7317 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
7318 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7319 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7320 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
7321 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7322 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7323 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7324 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
7325 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
7326 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65,
7327 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6d,
7328 0x65, 0x6e, 0x75, 0x2d, 0x68, 0x65, 0x6c, 0x70,
7329 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7330 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7331 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7332 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7333 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
7334 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
7335 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7336 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7337 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7338 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7339 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7340 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7341 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
7342 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
7343 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7344 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7345 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7346 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7347 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7348 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7349 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
7350 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
7351 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63,
7352 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
7353 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7354 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7355 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7356 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7357 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7358 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7359 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
7360 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
7361 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
7362 0x22, 0x3e, 0x5f, 0x48, 0x65, 0x6c, 0x70, 0x3c,
7363 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7364 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7365 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7366 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7367 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7368 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75,
7369 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72,
7370 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72,
7371 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7372 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7373 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7374 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7375 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
7376 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x22, 0x73,
7377 0x75, 0x62, 0x6d, 0x65, 0x6e, 0x75, 0x22, 0x3e,
7378 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7379 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7380 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7381 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
7382 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
7383 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x22, 0x20, 0x69,
7384 0x64, 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x33,
7385 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7386 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7387 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7388 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7389 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7390 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62,
7391 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
7392 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7393 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7394 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7395 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7396 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7397 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7398 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
7399 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
7400 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7401 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7402 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7403 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7404 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7405 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
7406 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7407 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7408 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7409 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7410 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
7411 0x22, 0x47, 0x74, 0x6b, 0x4d, 0x65, 0x6e, 0x75,
7412 0x49, 0x74, 0x65, 0x6d, 0x22, 0x20, 0x69, 0x64,
7413 0x3d, 0x22, 0x6d, 0x65, 0x6e, 0x75, 0x2d, 0x68,
7414 0x65, 0x6c, 0x70, 0x2d, 0x67, 0x75, 0x65, 0x73,
7415 0x74, 0x2d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
7416 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7417 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7418 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7419 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7420 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7421 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7422 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
7423 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
7424 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7425 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7426 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7427 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7428 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7429 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7430 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
7431 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
7432 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
7433 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7434 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7435 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7436 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7437 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7438 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7439 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65,
7440 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
7441 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x61, 0x6e,
7442 0x63, 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
7443 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7444 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7445 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7446 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7447 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7448 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7449 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7450 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
7451 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
7452 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
7453 0x73, 0x22, 0x3e, 0x5f, 0x47, 0x75, 0x65, 0x73,
7454 0x74, 0x20, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
7455 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7456 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7457 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7458 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7459 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7460 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7461 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7462 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64,
7463 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e,
7464 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7465 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7466 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7467 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7468 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7469 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
7470 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7471 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
7472 0x74, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64,
7473 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72,
7474 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
7475 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f,
7476 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x68, 0x65, 0x6c,
7477 0x70, 0x5f, 0x67, 0x75, 0x65, 0x73, 0x74, 0x5f,
7478 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22,
7479 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64,
7480 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a,
7481 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7482 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7483 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7484 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
7485 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7486 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7487 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7488 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
7489 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7490 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7491 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7492 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
7493 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7494 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7495 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7496 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7497 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
7498 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
7499 0x6b, 0x4d, 0x65, 0x6e, 0x75, 0x49, 0x74, 0x65,
7500 0x6d, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x69,
7501 0x6d, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x75,
7502 0x69, 0x74, 0x65, 0x6d, 0x31, 0x30, 0x22, 0x3e,
7503 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7504 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7505 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7506 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7507 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7508 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
7509 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
7510 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
7511 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x5f,
7512 0x41, 0x62, 0x6f, 0x75, 0x74, 0x3c, 0x2f, 0x70,
7513 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7514 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7515 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7516 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7517 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7518 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7519 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
7520 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
7521 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7522 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7523 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7524 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7525 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7526 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7527 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7528 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
7529 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
7530 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7531 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7532 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7533 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7534 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7535 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7536 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7537 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x61, 0x63,
7538 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70,
7539 0x65, 0x61, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x22,
7540 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
7541 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7542 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7543 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7544 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7545 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7546 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7547 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73,
7548 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c,
7549 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
7550 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7551 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7552 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7553 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7554 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7555 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c,
7556 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x61,
7557 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x22,
7558 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
7559 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76,
7560 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x77, 0x69,
7561 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x6d, 0x65, 0x6e,
7562 0x75, 0x5f, 0x68, 0x65, 0x6c, 0x70, 0x5f, 0x61,
7563 0x62, 0x6f, 0x75, 0x74, 0x22, 0x20, 0x73, 0x77,
7564 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22, 0x6e,
7565 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7566 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7567 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7568 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7569 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
7570 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7571 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7572 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7573 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
7574 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7575 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7576 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7577 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
7578 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7579 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7580 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
7581 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
7582 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7583 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7584 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
7585 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7586 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7587 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
7588 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7589 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7590 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
7591 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7592 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7593 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
7594 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7595 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7596 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7597 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7598 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61,
7599 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
7600 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7601 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7602 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7603 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7604 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7605 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c,
7606 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7607 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7608 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7609 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7610 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7611 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7612 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
7613 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f,
7614 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7615 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7616 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7617 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
7618 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7619 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7620 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
7621 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7622 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
7623 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7624 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7625 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
7626 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7627 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7628 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7629 0x6d, 0x65, 0x3d, 0x22, 0x69, 0x6e, 0x64, 0x65,
7630 0x78, 0x22, 0x3e, 0x2d, 0x31, 0x3c, 0x2f, 0x70,
7631 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7632 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7633 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
7634 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
7635 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
7636 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
7637 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
7638 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
7639 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
7640 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f,
7641 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
7642 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
7643 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28,
7644 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72,
7645 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
7646 0x2d, 0x67, 0x75, 0x65, 0x73, 0x74, 0x2d, 0x64,
7647 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x75,
7648 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7649 0x14, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
7650 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
7651 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
7652 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
7653 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
7654 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
7655 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
7656 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
7657 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
7658 0x20, 0x33, 0x2e, 0x31, 0x36, 0x2e, 0x30, 0x20,
7659 0x6f, 0x6e, 0x20, 0x54, 0x68, 0x75, 0x20, 0x4a,
7660 0x61, 0x6e, 0x20, 0x31, 0x36, 0x20, 0x31, 0x36,
7661 0x3a, 0x31, 0x33, 0x3a, 0x33, 0x38, 0x20, 0x32,
7662 0x30, 0x31, 0x34, 0x20, 0x2d, 0x2d, 0x3e, 0x0a,
7663 0x3c, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
7664 0x63, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21,
7665 0x2d, 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72,
7666 0x66, 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71,
7667 0x75, 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74,
7668 0x6b, 0x2b, 0x20, 0x33, 0x2e, 0x30, 0x20, 0x2d,
7669 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62,
7670 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
7671 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x44,
7672 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x20, 0x69,
7673 0x64, 0x3d, 0x22, 0x67, 0x75, 0x65, 0x73, 0x74,
7674 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x64,
7675 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x3e, 0x0a,
7676 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7677 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7678 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
7679 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
7680 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7681 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7682 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7683 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7684 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c,
7685 0x65, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
7686 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
7687 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x47, 0x75,
7688 0x65, 0x73, 0x74, 0x20, 0x44, 0x65, 0x74, 0x61,
7689 0x69, 0x6c, 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7690 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7691 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7692 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7693 0x65, 0x3d, 0x22, 0x72, 0x65, 0x73, 0x69, 0x7a,
7694 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
7695 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7696 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7697 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7698 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7699 0x3d, 0x22, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
7700 0x74, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x22,
7701 0x3e, 0x34, 0x30, 0x30, 0x3c, 0x2f, 0x70, 0x72,
7702 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7703 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7704 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7705 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65,
7706 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64,
7707 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70,
7708 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7709 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69,
7710 0x67, 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d,
7711 0x65, 0x3d, 0x22, 0x72, 0x65, 0x73, 0x70, 0x6f,
7712 0x6e, 0x73, 0x65, 0x22, 0x20, 0x68, 0x61, 0x6e,
7713 0x64, 0x6c, 0x65, 0x72, 0x3d, 0x22, 0x76, 0x69,
7714 0x72, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65,
7715 0x72, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77,
7716 0x5f, 0x67, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x64,
7717 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x5f, 0x72,
7718 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
7719 0x20, 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64,
7720 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a,
7721 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
7722 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72,
7723 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c,
7724 0x64, 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78, 0x22,
7725 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7726 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
7727 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
7728 0x74, 0x6b, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69,
7729 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f,
7730 0x67, 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x32, 0x22,
7731 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7732 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7733 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7734 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
7735 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
7736 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7737 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7738 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7739 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7740 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f, 0x72,
7741 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f,
7742 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74, 0x69,
7743 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7744 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7745 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7746 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7747 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
7748 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e,
7749 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7750 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7751 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
7752 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
7753 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
7754 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
7755 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x22,
7756 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7757 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
7758 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
7759 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x75,
7760 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78, 0x22,
7761 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61,
7762 0x6c, 0x6f, 0x67, 0x2d, 0x61, 0x63, 0x74, 0x69,
7763 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x32,
7764 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7765 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7766 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7767 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
7768 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
7769 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
7770 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7771 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7772 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7773 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7774 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
7775 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x74,
7776 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64,
7777 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7778 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7779 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7780 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
7781 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7782 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
7783 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
7784 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
7785 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22, 0x20,
7786 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74, 0x74,
7787 0x6f, 0x6e, 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20,
7788 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7789 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7790 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7791 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
7792 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
7793 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
7794 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
7795 0x5f, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x3c, 0x2f,
7796 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7797 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7798 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7799 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
7800 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
7801 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
7802 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
7803 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7804 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7805 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7806 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
7807 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
7808 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
7809 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72,
7810 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7811 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7812 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7813 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7814 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7815 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x65,
7816 0x63, 0x65, 0x69, 0x76, 0x65, 0x73, 0x5f, 0x64,
7817 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22, 0x3e,
7818 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7819 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7820 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7821 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7822 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7823 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7824 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65,
7825 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x3e, 0x54,
7826 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
7827 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
7828 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7829 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
7830 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
7831 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7832 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
7833 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
7834 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7835 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7836 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7837 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
7838 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
7839 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7840 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7841 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7842 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7843 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7844 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7845 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
7846 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7847 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7848 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7849 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7850 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7851 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f,
7852 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
7853 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7854 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7855 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7856 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
7857 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
7858 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7859 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
7860 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7861 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
7862 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
7863 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7864 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
7865 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7866 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7867 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7868 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
7869 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
7870 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
7871 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7872 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7873 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7874 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7875 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
7876 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
7877 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7878 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7879 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7880 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7881 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x61,
7882 0x63, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22,
7883 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72,
7884 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
7885 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7886 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7887 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7888 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
7889 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c,
7890 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7891 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7892 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
7893 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
7894 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7895 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
7896 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7897 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
7898 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7899 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
7900 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
7901 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x54, 0x61, 0x62,
7902 0x6c, 0x65, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
7903 0x67, 0x72, 0x69, 0x64, 0x31, 0x22, 0x3e, 0x0a,
7904 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7905 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7906 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7907 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
7908 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
7909 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7910 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7911 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7912 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7913 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7914 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
7915 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
7916 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7917 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7918 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7919 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7920 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7921 0x22, 0x62, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f,
7922 0x77, 0x69, 0x64, 0x74, 0x68, 0x22, 0x3e, 0x36,
7923 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7924 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7925 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7926 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7927 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
7928 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x70, 0x61, 0x63,
7929 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36, 0x3c, 0x2f,
7930 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7931 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7932 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7933 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7934 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x6f,
7935 0x6c, 0x75, 0x6d, 0x6e, 0x5f, 0x73, 0x70, 0x61,
7936 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36, 0x3c,
7937 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
7938 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
7939 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7940 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
7941 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e,
7942 0x5f, 0x72, 0x6f, 0x77, 0x73, 0x22, 0x3e, 0x32,
7943 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7944 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7945 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7946 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
7947 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7948 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
7949 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
7950 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
7951 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
7952 0x64, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
7953 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
7954 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7955 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
7956 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
7957 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
7958 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
7959 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7960 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
7961 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7962 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
7963 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
7964 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
7965 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
7966 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
7967 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7968 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7969 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7970 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7971 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7972 0x22, 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22,
7973 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
7974 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
7975 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7976 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
7977 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
7978 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
7979 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
7980 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
7981 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
7982 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x3c, 0x2f, 0x70,
7983 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
7984 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7985 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7986 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
7987 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7988 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
7989 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
7990 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7991 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
7992 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
7993 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
7994 0x22, 0x78, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
7995 0x6e, 0x73, 0x22, 0x3e, 0x47, 0x54, 0x4b, 0x5f,
7996 0x53, 0x48, 0x52, 0x49, 0x4e, 0x4b, 0x20, 0x7c,
7997 0x20, 0x47, 0x54, 0x4b, 0x5f, 0x46, 0x49, 0x4c,
7998 0x4c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
7999 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8000 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8001 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8002 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8003 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x79, 0x5f, 0x6f,
8004 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e,
8005 0x47, 0x54, 0x4b, 0x5f, 0x46, 0x49, 0x4c, 0x4c,
8006 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8007 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8008 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8009 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
8010 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8011 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8012 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
8013 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8014 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
8015 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
8016 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8017 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
8018 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
8019 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61,
8020 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d,
8021 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x32, 0x22,
8022 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8023 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8024 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8025 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8026 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
8027 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
8028 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8029 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8030 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8031 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8032 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8033 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
8034 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
8035 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8036 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8037 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8038 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8039 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8040 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78,
8041 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x31,
8042 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8043 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8044 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8045 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8046 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8047 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65,
8048 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
8049 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
8050 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x47, 0x55,
8051 0x49, 0x44, 0x3a, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8052 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8053 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8054 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
8055 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
8056 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8057 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
8058 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
8059 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8060 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8061 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8062 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74,
8063 0x6f, 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
8064 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
8065 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8066 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8067 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8068 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8069 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8070 0x62, 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61,
8071 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32,
8072 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8073 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8074 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8075 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8076 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8077 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x5f, 0x6f, 0x70,
8078 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x47,
8079 0x54, 0x4b, 0x5f, 0x53, 0x48, 0x52, 0x49, 0x4e,
8080 0x4b, 0x20, 0x7c, 0x20, 0x47, 0x54, 0x4b, 0x5f,
8081 0x46, 0x49, 0x4c, 0x4c, 0x3c, 0x2f, 0x70, 0x72,
8082 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8083 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8084 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8085 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8086 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8087 0x79, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
8088 0x73, 0x22, 0x3e, 0x47, 0x54, 0x4b, 0x5f, 0x46,
8089 0x49, 0x4c, 0x4c, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8090 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8091 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8092 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
8093 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
8094 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8095 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
8096 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8097 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8098 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8099 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8100 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8101 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
8102 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
8103 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
8104 0x69, 0x64, 0x3d, 0x22, 0x6e, 0x61, 0x6d, 0x65,
8105 0x76, 0x61, 0x6c, 0x75, 0x65, 0x6c, 0x61, 0x62,
8106 0x65, 0x6c, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8107 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8108 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8109 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8110 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
8111 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
8112 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8113 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8114 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8115 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8116 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8117 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
8118 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
8119 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
8120 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8121 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8122 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8123 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8124 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8125 0x3d, 0x22, 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e,
8126 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8127 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8128 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8129 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8130 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8131 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
8132 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
8133 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
8134 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
8135 0x3e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3c, 0x2f,
8136 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8137 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8138 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8139 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8140 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8141 0x3d, 0x22, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
8142 0x61, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
8143 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8144 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8145 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8146 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
8147 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
8148 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8149 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
8150 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
8151 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8152 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8153 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8154 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x65,
8155 0x66, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63,
8156 0x68, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
8157 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8158 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8159 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8160 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8161 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8162 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x61, 0x74,
8163 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
8164 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8165 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8166 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8167 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8168 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8169 0x65, 0x3d, 0x22, 0x79, 0x5f, 0x6f, 0x70, 0x74,
8170 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x47, 0x54,
8171 0x4b, 0x5f, 0x46, 0x49, 0x4c, 0x4c, 0x3c, 0x2f,
8172 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8173 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8174 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8175 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
8176 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8177 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8178 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
8179 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8180 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
8181 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8182 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8183 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
8184 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
8185 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65,
8186 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x67,
8187 0x75, 0x69, 0x64, 0x76, 0x61, 0x6c, 0x75, 0x65,
8188 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3e, 0x0a,
8189 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8190 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8191 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8192 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8193 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
8194 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
8195 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8196 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8197 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8198 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8199 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8200 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
8201 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
8202 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8203 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8204 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8205 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8206 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8207 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61, 0x6c,
8208 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f,
8209 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8210 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8211 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8212 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8213 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8214 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
8215 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
8216 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
8217 0x65, 0x73, 0x22, 0x3e, 0x6c, 0x61, 0x62, 0x65,
8218 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8219 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8220 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8221 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8222 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8223 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x65, 0x6c,
8224 0x65, 0x63, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22,
8225 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
8226 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8227 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8228 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8229 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
8230 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8231 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8232 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
8233 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8234 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8235 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8236 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8237 0x22, 0x6c, 0x65, 0x66, 0x74, 0x5f, 0x61, 0x74,
8238 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x31, 0x3c,
8239 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8240 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8241 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8242 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8243 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8244 0x65, 0x3d, 0x22, 0x72, 0x69, 0x67, 0x68, 0x74,
8245 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22,
8246 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8247 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8249 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8250 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8251 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x6f,
8252 0x70, 0x5f, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
8253 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8254 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8255 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8256 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8257 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8258 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
8259 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74,
8260 0x74, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x32, 0x3c,
8261 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8262 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8263 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8264 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8265 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8266 0x65, 0x3d, 0x22, 0x79, 0x5f, 0x6f, 0x70, 0x74,
8267 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x3e, 0x47, 0x54,
8268 0x4b, 0x5f, 0x46, 0x49, 0x4c, 0x4c, 0x3c, 0x2f,
8269 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8270 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8271 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8272 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
8273 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8274 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8275 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
8276 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8277 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
8278 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8279 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8280 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
8281 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8282 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8283 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8284 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61,
8285 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
8286 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8287 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8288 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8289 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8290 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8291 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
8292 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8293 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8294 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8295 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8296 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8297 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
8298 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f,
8299 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8300 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8301 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
8302 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
8303 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8304 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
8305 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
8306 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
8307 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
8308 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8309 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
8310 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73,
8311 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8312 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d,
8313 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x20, 0x72,
8314 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3d,
8315 0x22, 0x2d, 0x37, 0x22, 0x3e, 0x62, 0x75, 0x74,
8316 0x74, 0x6f, 0x6e, 0x31, 0x3c, 0x2f, 0x61, 0x63,
8317 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64,
8318 0x67, 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8319 0x20, 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x6f,
8320 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
8321 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
8322 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x3c,
8323 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61,
8324 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28, 0x75,
8325 0x75, 0x61, 0x79, 0x29, 0x32, 0x32, 0x78, 0x32,
8326 0x32, 0x2f, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
8327 0x34, 0x38, 0x78, 0x34, 0x38, 0x2f, 0x00, 0x00,
8328 0x11, 0x00, 0x00, 0x00, 0x32, 0x34, 0x78, 0x32,
8329 0x34, 0x2f, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
8330 0x05, 0x00, 0x00, 0x00, 0x69, 0x63, 0x6f, 0x6e,
8331 0x73, 0x2f, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00,
8332 0x0c, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
8333 0x08, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
8334 0x0d, 0x00, 0x00, 0x00, 0x76, 0x69, 0x72, 0x74,
8335 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d,
8336 0x61, 0x62, 0x6f, 0x75, 0x74, 0x2e, 0x75, 0x69,
8337 0x7f, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8338 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
8339 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
8340 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
8341 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
8342 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
8343 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
8344 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
8345 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
8346 0x61, 0x63, 0x65, 0x2d, 0x72, 0x65, 0x71, 0x75,
8347 0x69, 0x72, 0x65, 0x73, 0x20, 0x67, 0x74, 0x6b,
8348 0x2b, 0x20, 0x32, 0x2e, 0x31, 0x32, 0x20, 0x2d,
8349 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f, 0x62,
8350 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
8351 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x41,
8352 0x62, 0x6f, 0x75, 0x74, 0x44, 0x69, 0x61, 0x6c,
8353 0x6f, 0x67, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
8354 0x61, 0x62, 0x6f, 0x75, 0x74, 0x22, 0x3e, 0x0a,
8355 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8356 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8357 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
8358 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
8359 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8360 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8361 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8362 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8363 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64,
8364 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68,
8365 0x22, 0x3e, 0x35, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8366 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8367 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8368 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8369 0x65, 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c, 0x65,
8370 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
8371 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22,
8372 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41, 0x62, 0x6f,
8373 0x75, 0x74, 0x20, 0x56, 0x69, 0x72, 0x74, 0x2d,
8374 0x56, 0x69, 0x65, 0x77, 0x65, 0x72, 0x3c, 0x2f,
8375 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8376 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8377 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8378 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72, 0x65,
8379 0x73, 0x69, 0x7a, 0x61, 0x62, 0x6c, 0x65, 0x22,
8380 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
8381 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8382 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8383 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8384 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6d, 0x6f,
8385 0x64, 0x61, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
8386 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8387 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8388 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8389 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8390 0x22, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f,
8391 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
8392 0x22, 0x3e, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
8393 0x2d, 0x6f, 0x6e, 0x2d, 0x70, 0x61, 0x72, 0x65,
8394 0x6e, 0x74, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8395 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8396 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8397 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8398 0x3d, 0x22, 0x64, 0x65, 0x73, 0x74, 0x72, 0x6f,
8399 0x79, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x70,
8400 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x54,
8401 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8402 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8403 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8404 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8405 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65, 0x5f,
8406 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64, 0x69,
8407 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70, 0x72,
8408 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8409 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8410 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8411 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70,
8412 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x62, 0x61, 0x72,
8413 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x54,
8414 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8415 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8416 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8417 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8418 0x65, 0x3d, 0x22, 0x73, 0x6b, 0x69, 0x70, 0x5f,
8419 0x70, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x68, 0x69,
8420 0x6e, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
8421 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8422 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8423 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8424 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8425 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x5f,
8426 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x56, 0x69,
8427 0x72, 0x74, 0x75, 0x61, 0x6c, 0x20, 0x4d, 0x61,
8428 0x63, 0x68, 0x69, 0x6e, 0x65, 0x20, 0x56, 0x69,
8429 0x65, 0x77, 0x65, 0x72, 0x3c, 0x2f, 0x70, 0x72,
8430 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8431 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8432 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8433 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x6f, 0x70, 0x79,
8434 0x72, 0x69, 0x67, 0x68, 0x74, 0x22, 0x20, 0x74,
8435 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
8436 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
8437 0x22, 0x3e, 0x43, 0x6f, 0x70, 0x79, 0x72, 0x69,
8438 0x67, 0x68, 0x74, 0x20, 0x28, 0x43, 0x29, 0x20,
8439 0x32, 0x30, 0x30, 0x37, 0x2d, 0x32, 0x30, 0x31,
8440 0x32, 0x20, 0x44, 0x61, 0x6e, 0x69, 0x65, 0x6c,
8441 0x20, 0x50, 0x2e, 0x20, 0x42, 0x65, 0x72, 0x72,
8442 0x61, 0x6e, 0x67, 0x65, 0x0a, 0x43, 0x6f, 0x70,
8443 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28,
8444 0x43, 0x29, 0x20, 0x32, 0x30, 0x30, 0x37, 0x2d,
8445 0x32, 0x30, 0x31, 0x34, 0x20, 0x52, 0x65, 0x64,
8446 0x20, 0x48, 0x61, 0x74, 0x2c, 0x20, 0x49, 0x6e,
8447 0x63, 0x2e, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8448 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8449 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8450 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8451 0x3d, 0x22, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
8452 0x74, 0x73, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
8453 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
8454 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41,
8455 0x20, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x20,
8456 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x20,
8457 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x20, 0x62,
8458 0x75, 0x69, 0x6c, 0x74, 0x20, 0x77, 0x69, 0x74,
8459 0x68, 0x20, 0x47, 0x54, 0x4b, 0x2d, 0x56, 0x4e,
8460 0x43, 0x2c, 0x20, 0x53, 0x50, 0x49, 0x43, 0x45,
8461 0x2d, 0x47, 0x54, 0x4b, 0x20, 0x61, 0x6e, 0x64,
8462 0x20, 0x6c, 0x69, 0x62, 0x76, 0x69, 0x72, 0x74,
8463 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8464 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
8465 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
8466 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8467 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x22,
8468 0x3e, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f,
8469 0x76, 0x69, 0x72, 0x74, 0x2d, 0x6d, 0x61, 0x6e,
8470 0x61, 0x67, 0x65, 0x72, 0x2e, 0x6f, 0x72, 0x67,
8471 0x2f, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8472 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8473 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8474 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8475 0x22, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
8476 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20,
8477 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
8478 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
8479 0x73, 0x22, 0x3e, 0x76, 0x69, 0x72, 0x74, 0x2d,
8480 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e,
8481 0x6f, 0x72, 0x67, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8482 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8483 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8484 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8485 0x65, 0x3d, 0x22, 0x6c, 0x69, 0x63, 0x65, 0x6e,
8486 0x73, 0x65, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
8487 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
8488 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x54,
8489 0x68, 0x69, 0x73, 0x20, 0x70, 0x72, 0x6f, 0x67,
8490 0x72, 0x61, 0x6d, 0x20, 0x69, 0x73, 0x20, 0x66,
8491 0x72, 0x65, 0x65, 0x20, 0x73, 0x6f, 0x66, 0x74,
8492 0x77, 0x61, 0x72, 0x65, 0x3b, 0x20, 0x79, 0x6f,
8493 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x72, 0x65,
8494 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
8495 0x74, 0x65, 0x20, 0x69, 0x74, 0x20, 0x61, 0x6e,
8496 0x64, 0x2f, 0x6f, 0x72, 0x20, 0x6d, 0x6f, 0x64,
8497 0x69, 0x66, 0x79, 0x0a, 0x69, 0x74, 0x20, 0x75,
8498 0x6e, 0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65,
8499 0x20, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x20, 0x6f,
8500 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e,
8501 0x55, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,
8502 0x6c, 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63,
8503 0x20, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65,
8504 0x20, 0x61, 0x73, 0x20, 0x70, 0x75, 0x62, 0x6c,
8505 0x69, 0x73, 0x68, 0x65, 0x64, 0x20, 0x62, 0x79,
8506 0x0a, 0x74, 0x68, 0x65, 0x20, 0x46, 0x72, 0x65,
8507 0x65, 0x20, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61,
8508 0x72, 0x65, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64,
8509 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x20, 0x65,
8510 0x69, 0x74, 0x68, 0x65, 0x72, 0x20, 0x76, 0x65,
8511 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x20, 0x32, 0x20,
8512 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x4c,
8513 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x2c, 0x20,
8514 0x6f, 0x72, 0x0a, 0x28, 0x61, 0x74, 0x20, 0x79,
8515 0x6f, 0x75, 0x72, 0x20, 0x6f, 0x70, 0x74, 0x69,
8516 0x6f, 0x6e, 0x29, 0x20, 0x61, 0x6e, 0x79, 0x20,
8517 0x6c, 0x61, 0x74, 0x65, 0x72, 0x20, 0x76, 0x65,
8518 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x0a,
8519 0x54, 0x68, 0x69, 0x73, 0x20, 0x70, 0x72, 0x6f,
8520 0x67, 0x72, 0x61, 0x6d, 0x20, 0x69, 0x73, 0x20,
8521 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
8522 0x74, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x20, 0x74,
8523 0x68, 0x65, 0x20, 0x68, 0x6f, 0x70, 0x65, 0x20,
8524 0x74, 0x68, 0x61, 0x74, 0x20, 0x69, 0x74, 0x20,
8525 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x62, 0x65, 0x20,
8526 0x75, 0x73, 0x65, 0x66, 0x75, 0x6c, 0x2c, 0x0a,
8527 0x62, 0x75, 0x74, 0x20, 0x57, 0x49, 0x54, 0x48,
8528 0x4f, 0x55, 0x54, 0x20, 0x41, 0x4e, 0x59, 0x20,
8529 0x57, 0x41, 0x52, 0x52, 0x41, 0x4e, 0x54, 0x59,
8530 0x3b, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75,
8531 0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x74,
8532 0x68, 0x65, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x69,
8533 0x65, 0x64, 0x20, 0x77, 0x61, 0x72, 0x72, 0x61,
8534 0x6e, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x0a, 0x4d,
8535 0x45, 0x52, 0x43, 0x48, 0x41, 0x4e, 0x54, 0x41,
8536 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x20, 0x6f,
8537 0x72, 0x20, 0x46, 0x49, 0x54, 0x4e, 0x45, 0x53,
8538 0x53, 0x20, 0x46, 0x4f, 0x52, 0x20, 0x41, 0x20,
8539 0x50, 0x41, 0x52, 0x54, 0x49, 0x43, 0x55, 0x4c,
8540 0x41, 0x52, 0x20, 0x50, 0x55, 0x52, 0x50, 0x4f,
8541 0x53, 0x45, 0x2e, 0x20, 0x20, 0x53, 0x65, 0x65,
8542 0x20, 0x74, 0x68, 0x65, 0x0a, 0x47, 0x4e, 0x55,
8543 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
8544 0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
8545 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x20,
8546 0x66, 0x6f, 0x72, 0x20, 0x6d, 0x6f, 0x72, 0x65,
8547 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
8548 0x2e, 0x0a, 0x0a, 0x59, 0x6f, 0x75, 0x20, 0x73,
8549 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x68, 0x61,
8550 0x76, 0x65, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69,
8551 0x76, 0x65, 0x64, 0x20, 0x61, 0x20, 0x63, 0x6f,
8552 0x70, 0x79, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68,
8553 0x65, 0x20, 0x47, 0x4e, 0x55, 0x20, 0x47, 0x65,
8554 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x75,
8555 0x62, 0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69, 0x63,
8556 0x65, 0x6e, 0x73, 0x65, 0x0a, 0x61, 0x6c, 0x6f,
8557 0x6e, 0x67, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20,
8558 0x74, 0x68, 0x69, 0x73, 0x20, 0x70, 0x72, 0x6f,
8559 0x67, 0x72, 0x61, 0x6d, 0x3b, 0x20, 0x69, 0x66,
8560 0x20, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x77, 0x72,
8561 0x69, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x74,
8562 0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
8563 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
8564 0x0a, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
8565 0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x49, 0x6e, 0x63,
8566 0x2e, 0x2c, 0x20, 0x35, 0x39, 0x20, 0x54, 0x65,
8567 0x6d, 0x70, 0x6c, 0x65, 0x20, 0x50, 0x6c, 0x61,
8568 0x63, 0x65, 0x2c, 0x20, 0x53, 0x75, 0x69, 0x74,
8569 0x65, 0x20, 0x33, 0x33, 0x30, 0x2c, 0x20, 0x42,
8570 0x6f, 0x73, 0x74, 0x6f, 0x6e, 0x2c, 0x20, 0x4d,
8571 0x41, 0x20, 0x20, 0x30, 0x32, 0x31, 0x31, 0x31,
8572 0x2d, 0x31, 0x33, 0x30, 0x37, 0x20, 0x20, 0x55,
8573 0x53, 0x41, 0x0a, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8574 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8575 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
8576 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
8577 0x65, 0x3d, 0x22, 0x61, 0x75, 0x74, 0x68, 0x6f,
8578 0x72, 0x73, 0x22, 0x3e, 0x44, 0x61, 0x6e, 0x69,
8579 0x65, 0x6c, 0x20, 0x50, 0x2e, 0x20, 0x42, 0x65,
8580 0x72, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x0a, 0x4d,
8581 0x61, 0x72, 0x63, 0x2d, 0x41, 0x6e, 0x64, 0x72,
8582 0xc3, 0xa9, 0x20, 0x4c, 0x75, 0x72, 0x65, 0x61,
8583 0x75, 0x0a, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8584 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8585 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8586 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8587 0x3d, 0x22, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c,
8588 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x63, 0x72, 0x65,
8589 0x64, 0x69, 0x74, 0x73, 0x22, 0x20, 0x74, 0x72,
8590 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
8591 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
8592 0x3e, 0x54, 0x68, 0x65, 0x20, 0x46, 0x65, 0x64,
8593 0x6f, 0x72, 0x61, 0x20, 0x54, 0x72, 0x61, 0x6e,
8594 0x73, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20,
8595 0x54, 0x65, 0x61, 0x6d, 0x3c, 0x2f, 0x70, 0x72,
8596 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8597 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
8598 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8599 0x3d, 0x22, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
8600 0x2d, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x22, 0x20,
8601 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x3d,
8602 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f, 0x76, 0x69,
8603 0x65, 0x77, 0x65, 0x72, 0x5f, 0x61, 0x70, 0x70,
8604 0x5f, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x5f, 0x64,
8605 0x65, 0x6c, 0x65, 0x74, 0x65, 0x22, 0x20, 0x73,
8606 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
8607 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
8608 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67, 0x6e, 0x61,
8609 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
8610 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
8611 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65,
8612 0x72, 0x3d, 0x22, 0x76, 0x69, 0x72, 0x74, 0x5f,
8613 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x61,
8614 0x70, 0x70, 0x5f, 0x61, 0x62, 0x6f, 0x75, 0x74,
8615 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x22, 0x20,
8616 0x73, 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d,
8617 0x22, 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
8618 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c,
8619 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
8620 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c, 0x64,
8621 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78, 0x22, 0x3e,
8622 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8623 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
8624 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
8625 0x6b, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69, 0x64,
8626 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67,
8627 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x31, 0x22, 0x3e,
8628 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8629 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
8630 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
8631 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
8632 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
8633 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8634 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8635 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8636 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8637 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
8638 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8639 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8640 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8641 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
8642 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
8643 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f, 0x72,
8644 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f,
8645 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74, 0x69,
8646 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
8647 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
8648 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8649 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8650 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
8651 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22, 0x3e,
8652 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
8653 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8654 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
8655 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
8656 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
8657 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
8658 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x22,
8659 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8660 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
8661 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
8662 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x75,
8663 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78, 0x22,
8664 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61,
8665 0x6c, 0x6f, 0x67, 0x2d, 0x61, 0x63, 0x74, 0x69,
8666 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x31,
8667 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
8668 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8669 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
8670 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
8671 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
8672 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8673 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8674 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8675 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8676 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8677 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
8678 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
8679 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8680 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8681 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8682 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8683 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8684 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x6f,
8685 0x75, 0x74, 0x5f, 0x73, 0x74, 0x79, 0x6c, 0x65,
8686 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70,
8687 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8688 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8689 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
8690 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
8691 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8692 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
8693 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8694 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
8695 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
8696 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
8697 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c,
8698 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8699 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8700 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8701 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8702 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8703 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
8704 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
8705 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
8706 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8707 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
8708 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
8709 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x61, 0x63, 0x6b,
8710 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0x3e, 0x65,
8711 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
8712 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
8713 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8714 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
8715 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
8716 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
8717 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
8718 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
8719 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8720 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
8721 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
8722 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
8723 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
8724 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8725 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
8726 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8727 0x20, 0x3c, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68,
8728 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x3e, 0x0a,
8729 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
8730 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
8731 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
8732 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
8733 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
8734 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
8735 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
8736 0x3e, 0x0a, 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65,
8737 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00,
8738 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76,
8739 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77,
8740 0x65, 0x72, 0x2e, 0x70, 0x6e, 0x67, 0x00, 0x00,
8741 0xee, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
8742 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
8743 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
8744 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x30,
8745 0x08, 0x06, 0x00, 0x00, 0x00, 0x57, 0x02, 0xf9,
8746 0x87, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
8747 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
8748 0xbd, 0xa7, 0x93, 0x00, 0x00, 0x09, 0xa3, 0x49,
8749 0x44, 0x41, 0x54, 0x68, 0x81, 0xed, 0x59, 0x4d,
8750 0x8c, 0x1c, 0x47, 0x15, 0xfe, 0xaa, 0xab, 0xaa,
8751 0x7f, 0xbc, 0x3b, 0xfb, 0xe3, 0x5d, 0x67, 0xb3,
8752 0x09, 0x6b, 0xaf, 0x77, 0xb3, 0xf6, 0x3a, 0x6b,
8753 0x93, 0x4b, 0x12, 0x45, 0x72, 0x84, 0xe4, 0x20,
8754 0x84, 0x84, 0x14, 0x38, 0x70, 0xe0, 0x90, 0x4b,
8755 0xce, 0x5c, 0x50, 0x24, 0x38, 0x21, 0x21, 0x4e,
8756 0x28, 0x48, 0xc8, 0x16, 0x41, 0xdc, 0x50, 0x6e,
8757 0x08, 0x14, 0x21, 0x84, 0x44, 0x20, 0x0a, 0x5c,
8758 0xa2, 0x24, 0x07, 0x12, 0xe1, 0x8d, 0x93, 0x10,
8759 0x2c, 0x85, 0x80, 0x6d, 0xb2, 0xbb, 0x9e, 0xb5,
8760 0x77, 0x67, 0x67, 0x67, 0x7a, 0x7e, 0xfa, 0xa7,
8761 0xde, 0xe3, 0xd0, 0xd3, 0x33, 0xdd, 0x33, 0xbd,
8762 0x33, 0x83, 0x9d, 0x13, 0xa4, 0xa4, 0xd2, 0x54,
8763 0x77, 0xbd, 0xae, 0xfa, 0xbe, 0xf7, 0x5e, 0x7d,
8764 0x5d, 0x5d, 0x03, 0x7c, 0x5e, 0x3e, 0x2f, 0xff,
8765 0xdf, 0x45, 0x14, 0xdd, 0x7c, 0xe9, 0xa5, 0x97,
8766 0xa6, 0x84, 0x25, 0x5e, 0x61, 0xe2, 0xa7, 0x98,
8767 0xd9, 0xbe, 0x97, 0x81, 0x89, 0x08, 0xcc, 0xdc,
8768 0xad, 0xfd, 0xd7, 0xd9, 0x7b, 0x00, 0xba, 0xf7,
8769 0x8c, 0x31, 0x03, 0x36, 0x42, 0x70, 0x83, 0x08,
8770 0x3f, 0x7f, 0xf1, 0xc5, 0x17, 0x7f, 0xd8, 0x3f,
8771 0x8f, 0x2a, 0x9a, 0xdc, 0x18, 0xf3, 0x9d, 0xf3,
8772 0x8f, 0x6e, 0x5c, 0x7a, 0xe2, 0xc9, 0x27, 0x6c,
8773 0x4b, 0x58, 0x43, 0x81, 0x32, 0x38, 0x73, 0xc1,
8774 0x99, 0xfb, 0x39, 0xa3, 0xc2, 0x0b, 0xce, 0x5d,
8775 0xe6, 0x8c, 0x72, 0x7d, 0x61, 0x14, 0x7a, 0x2f,
8776 0xff, 0xe2, 0xe5, 0xef, 0xbe, 0xf0, 0xc2, 0x0b,
8777 0x7f, 0xbc, 0x72, 0xe5, 0xca, 0xbb, 0x23, 0x09,
8778 0x68, 0xad, 0xcf, 0x2f, 0x2f, 0x9f, 0xb2, 0x5b,
8779 0xed, 0x06, 0x1a, 0xcd, 0x06, 0x7c, 0x3f, 0x2e,
8780 0x06, 0x9f, 0x02, 0xe6, 0x0c, 0x91, 0x4c, 0xdb,
8781 0x75, 0x24, 0x6c, 0xc7, 0x1a, 0x6a, 0x33, 0x4e,
8782 0xfb, 0xf8, 0xcc, 0x3c, 0xce, 0xae, 0xaf, 0x5b,
8783 0xbb, 0xbb, 0x6f, 0x9e, 0x01, 0x30, 0x9a, 0x80,
8784 0xb0, 0xc4, 0x8c, 0xd6, 0x36, 0x0c, 0x19, 0xfc,
8785 0xfa, 0x57, 0x1f, 0xe1, 0xb5, 0x57, 0x3f, 0xc0,
8786 0xc4, 0x84, 0xec, 0x85, 0x7b, 0x18, 0x91, 0x4c,
8787 0xa7, 0x25, 0x05, 0xa4, 0x65, 0x75, 0x6c, 0x32,
8788 0xf6, 0xfd, 0xde, 0xce, 0x46, 0x8e, 0x19, 0xb7,
8789 0x77, 0x02, 0x7c, 0xff, 0x07, 0x5f, 0xc6, 0xc6,
8790 0xc6, 0x34, 0xc0, 0x80, 0x31, 0x06, 0xae, 0xeb,
8791 0x48, 0x00, 0x53, 0xfd, 0x58, 0x0b, 0x09, 0x80,
8792 0x79, 0x5a, 0x29, 0x05, 0x26, 0x83, 0x3b, 0x65,
8793 0x1f, 0x8f, 0x3f, 0x3e, 0x89, 0xd9, 0xd9, 0x63,
8794 0x60, 0x46, 0x2e, 0x3f, 0xd3, 0x09, 0x7b, 0x15,
8795 0xb9, 0x3e, 0x22, 0x4e, 0xe0, 0x76, 0xfa, 0xfa,
8796 0xed, 0x93, 0x7e, 0x0c, 0xb4, 0x1b, 0xfe, 0x3e,
8797 0x76, 0xb6, 0x6b, 0x98, 0x9d, 0x69, 0xc1, 0x71,
8798 0x1c, 0xcc, 0xcd, 0x9f, 0x80, 0xeb, 0xba, 0x32,
8799 0x8e, 0xe3, 0xd2, 0x58, 0x04, 0x98, 0x51, 0x52,
8800 0x5a, 0x21, 0x8c, 0x62, 0x54, 0xab, 0x2d, 0xcc,
8801 0xce, 0x10, 0xa2, 0x28, 0x2e, 0x04, 0xda, 0x03,
8802 0x97, 0xef, 0xcb, 0x82, 0x3d, 0x0a, 0x68, 0xde,
8803 0xae, 0x47, 0xd0, 0xb2, 0x80, 0xbd, 0xbd, 0x26,
8804 0x96, 0x4e, 0x3d, 0x0a, 0x32, 0x04, 0x26, 0x82,
8805 0xe3, 0xd8, 0x52, 0x08, 0x31, 0x3d, 0x1e, 0x01,
8806 0xf0, 0xa4, 0x92, 0x12, 0x41, 0x48, 0x68, 0x34,
8807 0x22, 0xcc, 0xce, 0x10, 0xc2, 0x30, 0x1a, 0x0b,
8808 0x28, 0x33, 0x43, 0x08, 0xd1, 0x6d, 0xf7, 0x9e,
8809 0x41, 0xe6, 0x99, 0xfe, 0xe7, 0x13, 0x1b, 0x40,
8810 0x80, 0x99, 0xa1, 0x35, 0x50, 0xa9, 0xb4, 0xb0,
8811 0xb3, 0x55, 0x86, 0x31, 0x06, 0x53, 0x53, 0xd3,
8812 0xd0, 0xda, 0x86, 0x10, 0x62, 0x7e, 0x2c, 0x02,
8813 0x60, 0x4c, 0x48, 0xa9, 0x40, 0xcc, 0x08, 0xc3,
8814 0x18, 0xcc, 0x40, 0x14, 0xc5, 0x10, 0x42, 0x74,
8815 0xa5, 0x2d, 0x2d, 0x44, 0xe8, 0x03, 0xc9, 0x60,
8816 0xa6, 0x2e, 0xb0, 0x41, 0x12, 0x0c, 0x21, 0x92,
8817 0xbe, 0x94, 0x64, 0x2f, 0xf2, 0x49, 0x5b, 0x29,
8818 0xe0, 0xb0, 0xda, 0xc6, 0xe2, 0xc3, 0x0b, 0x20,
8819 0x4a, 0xe6, 0xd3, 0x5a, 0x03, 0x02, 0xb3, 0x63,
8820 0x11, 0x20, 0x22, 0x4f, 0x4a, 0x09, 0x22, 0x83,
8821 0x38, 0x4e, 0x08, 0xc4, 0x71, 0x36, 0x9f, 0x7b,
8822 0x9e, 0xcb, 0x46, 0x61, 0xd0, 0xd3, 0xe9, 0x78,
8823 0x59, 0x1b, 0x51, 0x68, 0xcb, 0xcc, 0x68, 0x36,
8824 0xdb, 0xa8, 0xd7, 0x5b, 0xa8, 0x56, 0x7d, 0x4c,
8825 0x96, 0x0c, 0xf6, 0xef, 0x56, 0x50, 0x3b, 0xf4,
8826 0x71, 0x6e, 0xe3, 0x0c, 0xb4, 0x56, 0x10, 0x10,
8827 0x33, 0xe3, 0x45, 0x00, 0x70, 0x2d, 0xcb, 0xea,
8828 0xa6, 0x85, 0x31, 0x47, 0x2d, 0xc4, 0x9e, 0x67,
8829 0x8b, 0x48, 0xa4, 0x9e, 0x3e, 0x6a, 0x9d, 0x30,
8830 0x33, 0x0e, 0x0f, 0x7d, 0x54, 0x2a, 0x35, 0xd4,
8831 0x6a, 0x3e, 0xe2, 0xd8, 0x74, 0xa6, 0x17, 0x88,
8832 0x22, 0x83, 0xb9, 0xf9, 0xe3, 0x98, 0x9d, 0x9b,
8833 0x01, 0x13, 0x43, 0x6b, 0x0d, 0x63, 0xe2, 0xd1,
8834 0x6b, 0xe0, 0xf2, 0xe5, 0xcb, 0x9e, 0xd6, 0x9a,
8835 0x98, 0xd9, 0x02, 0x27, 0x6f, 0x54, 0x63, 0x68,
8836 0x40, 0x61, 0x06, 0xbd, 0x2f, 0x06, 0xc8, 0x14,
8837 0x11, 0x03, 0x80, 0x66, 0xb3, 0x8d, 0xbb, 0x77,
8838 0xab, 0xa8, 0x56, 0xeb, 0x30, 0xa6, 0x97, 0x8e,
8839 0x52, 0xf6, 0xe0, 0x44, 0x91, 0x41, 0xbd, 0xee,
8840 0xe3, 0xf6, 0x76, 0x19, 0xe7, 0x36, 0xce, 0xc2,
8841 0xd1, 0x1e, 0x98, 0x31, 0x5a, 0x85, 0x8c, 0x31,
8842 0x25, 0xdb, 0xd6, 0x31, 0x31, 0x29, 0x46, 0xe2,
8843 0xfd, 0x5e, 0xfa, 0x64, 0x01, 0xf5, 0xa7, 0x0a,
8844 0x65, 0xb4, 0x7e, 0x30, 0x95, 0x98, 0x19, 0xad,
8845 0x56, 0x80, 0xdd, 0xdd, 0x0a, 0x6a, 0xb5, 0x46,
8846 0xd7, 0xd3, 0x52, 0xca, 0x6e, 0x1b, 0x48, 0xa2,
8847 0x96, 0x46, 0x60, 0x72, 0x72, 0x02, 0x2b, 0x6b,
8848 0xcb, 0xe0, 0x0e, 0xb9, 0xd8, 0xc4, 0x93, 0x23,
8849 0x09, 0x30, 0x73, 0x49, 0x6b, 0x6d, 0xd2, 0x85,
8850 0x48, 0x86, 0x3a, 0x0b, 0x29, 0x21, 0x91, 0xe6,
8851 0xb0, 0x10, 0x59, 0x4f, 0xe7, 0x09, 0xf5, 0x13,
8852 0x6d, 0xb7, 0x43, 0x94, 0xcb, 0x15, 0x34, 0x1a,
8853 0xad, 0x01, 0x4f, 0x03, 0xa2, 0x3b, 0x56, 0x8f,
8854 0x84, 0x80, 0x89, 0x0d, 0x82, 0x20, 0xc0, 0x27,
8855 0x1f, 0xdf, 0xc0, 0xfa, 0xb9, 0x33, 0x98, 0x9e,
8856 0x94, 0x30, 0xb1, 0x39, 0x36, 0x92, 0x80, 0x94,
8857 0x72, 0x4a, 0x3b, 0x36, 0xa5, 0x0a, 0x41, 0x9c,
8858 0x6e, 0xcc, 0x52, 0x0b, 0xea, 0x28, 0x48, 0xb1,
8859 0xa7, 0x33, 0x8e, 0x80, 0x31, 0x84, 0xfd, 0xfd,
8860 0x1a, 0x0e, 0x0e, 0xea, 0x00, 0x38, 0x07, 0x5c,
8861 0x88, 0xec, 0x3e, 0x52, 0x74, 0x3d, 0x9f, 0xf4,
8862 0x01, 0x51, 0x4c, 0xb0, 0x6d, 0x1b, 0x8f, 0x9e,
8863 0x3f, 0x0b, 0x08, 0x40, 0x2a, 0x85, 0x38, 0x8e,
8864 0xbd, 0x91, 0x04, 0x98, 0xb9, 0xe4, 0xda, 0x6e,
8865 0x57, 0x0a, 0x8d, 0x31, 0x1d, 0xa9, 0x1c, 0xd4,
8866 0xf4, 0xce, 0x13, 0x19, 0x79, 0x14, 0x5d, 0x79,
8867 0xac, 0xd7, 0x9b, 0xa8, 0x54, 0x0e, 0x61, 0x0c,
8868 0xc1, 0xb2, 0x64, 0x17, 0x58, 0x76, 0x03, 0xdc,
8869 0x23, 0x31, 0x18, 0x05, 0x13, 0x53, 0x3a, 0x3a,
8870 0x40, 0x80, 0x4c, 0x44, 0xc5, 0x41, 0xba, 0xd8,
8871 0x3a, 0x65, 0x60, 0xab, 0x19, 0xc7, 0x71, 0xc9,
8872 0xb6, 0xb5, 0x45, 0x44, 0x68, 0x36, 0x63, 0x80,
8873 0x09, 0x44, 0x80, 0x31, 0xa9, 0x22, 0xf5, 0xf4,
8874 0xdb, 0x18, 0x74, 0x2b, 0x91, 0x80, 0x31, 0x8c,
8875 0x28, 0x32, 0xb8, 0x73, 0xa7, 0x8a, 0xfd, 0xfd,
8876 0x1a, 0x98, 0x2d, 0x48, 0xa9, 0x20, 0xa5, 0x84,
8877 0x94, 0x0a, 0x96, 0xa5, 0x3a, 0xd7, 0xfd, 0x55,
8878 0x66, 0xfa, 0x12, 0xdb, 0x38, 0xee, 0xa4, 0x66,
8879 0x67, 0x53, 0x47, 0x44, 0x50, 0x4a, 0xd1, 0xb3,
8880 0xcf, 0x3e, 0x9b, 0x8b, 0x42, 0x51, 0x04, 0xa6,
8881 0x1c, 0xc7, 0xb6, 0x88, 0x09, 0x0d, 0x3f, 0x84,
8882 0xb0, 0x08, 0x71, 0x9c, 0x78, 0x26, 0xcd, 0xf7,
8883 0xc4, 0x73, 0x83, 0x52, 0xea, 0xfb, 0x2d, 0xd4,
8884 0x6a, 0x0d, 0x30, 0x67, 0xf3, 0x7c, 0x30, 0x3d,
8885 0x8a, 0xa3, 0xd0, 0x7f, 0x4d, 0x68, 0xb7, 0x0d,
8886 0x1c, 0xd7, 0x42, 0xaa, 0x86, 0xb6, 0x6d, 0xc7,
8887 0xae, 0xeb, 0x4e, 0x01, 0x68, 0x1e, 0x49, 0x80,
8888 0x88, 0x4a, 0xb6, 0xed, 0x58, 0x4c, 0x04, 0xbf,
8889 0x1e, 0x75, 0xc0, 0xf5, 0x24, 0x32, 0x4d, 0x11,
8890 0xa4, 0x01, 0x66, 0x81, 0x56, 0x2b, 0x84, 0xef,
8891 0x37, 0x61, 0x0c, 0x43, 0x08, 0x09, 0x21, 0xf2,
8892 0xc0, 0x8a, 0xf3, 0xbd, 0x98, 0x54, 0x6a, 0x6b,
8893 0x59, 0x84, 0x5a, 0x3d, 0xc0, 0x09, 0x27, 0x71,
8894 0xb8, 0x21, 0x03, 0xcf, 0x73, 0x63, 0x22, 0x2a,
8895 0x01, 0x28, 0x0f, 0x25, 0xa0, 0x6d, 0xad, 0x88,
8896 0x08, 0xb5, 0x7a, 0x08, 0x32, 0x04, 0x63, 0x24,
8897 0x7a, 0x0a, 0xd4, 0xdb, 0x3a, 0x18, 0x43, 0xf0,
8898 0xfd, 0x36, 0xc2, 0x30, 0x02, 0x60, 0x21, 0x51,
8899 0xc4, 0x71, 0x3c, 0x3d, 0x3a, 0x2a, 0x42, 0x30,
8900 0xfc, 0x5a, 0x8c, 0x13, 0xf3, 0xe9, 0x26, 0x90,
8901 0xe0, 0xba, 0x2e, 0x33, 0x73, 0xee, 0x5d, 0x50,
8902 0x98, 0x42, 0xb6, 0x9d, 0xa4, 0x50, 0xbd, 0x1e,
8903 0x21, 0x51, 0x1d, 0xab, 0x13, 0x85, 0x64, 0xb0,
8904 0x30, 0x34, 0x68, 0xb7, 0x43, 0xc4, 0xb1, 0x81,
8905 0x10, 0xa2, 0x93, 0x2e, 0xc3, 0x3d, 0x9b, 0x27,
8906 0x31, 0x9e, 0x6d, 0xbd, 0x1e, 0x75, 0xd5, 0x2d,
8907 0x25, 0x40, 0x44, 0xb9, 0x6f, 0x82, 0x01, 0x02,
8908 0x42, 0x88, 0x39, 0xa9, 0xa4, 0x20, 0x22, 0xec,
8909 0xed, 0x35, 0xa0, 0x94, 0x00, 0x91, 0x00, 0x11,
8910 0x21, 0x8a, 0x92, 0x6d, 0x75, 0xf2, 0xf6, 0x4c,
8911 0x80, 0xdf, 0x4b, 0x7a, 0x8c, 0x63, 0x2b, 0x25,
8912 0x50, 0xad, 0x06, 0x89, 0xd3, 0xc0, 0x20, 0x32,
8913 0x70, 0x1c, 0x47, 0x8c, 0x8c, 0x80, 0x10, 0xe2,
8914 0xb8, 0x56, 0x1a, 0x44, 0x84, 0x6a, 0x35, 0x04,
8915 0xb3, 0x81, 0xef, 0x53, 0x47, 0x56, 0x05, 0x7a,
8916 0x6f, 0xcf, 0xf1, 0x72, 0x7c, 0xbc, 0x54, 0x1a,
8917 0xb4, 0xb5, 0x6d, 0x46, 0xa5, 0xd2, 0x4e, 0x64,
8918 0xb4, 0xb3, 0x88, 0x5d, 0xcf, 0xb5, 0x3a, 0x6b,
8919 0xe0, 0x68, 0x02, 0x00, 0xcd, 0x28, 0x25, 0x41,
8920 0x44, 0x38, 0xac, 0xb6, 0x21, 0xa5, 0x05, 0x21,
8921 0x04, 0x2c, 0x2b, 0x55, 0xdc, 0xcf, 0x26, 0x3d,
8922 0x46, 0x11, 0x72, 0x5d, 0x46, 0xf5, 0x20, 0xe8,
8923 0x2a, 0xbe, 0x21, 0x03, 0xd7, 0x73, 0x25, 0x33,
8924 0x0f, 0x4f, 0x21, 0x66, 0x31, 0xad, 0x94, 0x4a,
8925 0x08, 0x1c, 0x86, 0x70, 0x1c, 0xd5, 0x05, 0x30,
8926 0x7e, 0x7a, 0xdc, 0x7f, 0x54, 0x1c, 0x87, 0x51,
8927 0xad, 0x86, 0x1d, 0x4c, 0x0c, 0x26, 0x86, 0x9d,
8928 0x88, 0xcb, 0xf0, 0x08, 0x18, 0x63, 0xa6, 0xa4,
8929 0x52, 0x88, 0x4c, 0x80, 0xa0, 0x1d, 0x83, 0x59,
8930 0x22, 0xbb, 0x4b, 0xb8, 0x7f, 0x4f, 0x8f, 0xa7,
8931 0x52, 0x00, 0xd0, 0x6a, 0xc5, 0xbd, 0x45, 0xcc,
8932 0x06, 0xae, 0xe3, 0x0d, 0x7c, 0xd8, 0x17, 0xc9,
8933 0xe8, 0xa4, 0x92, 0x12, 0x61, 0x44, 0xf8, 0xca,
8934 0x57, 0x4f, 0xe1, 0x9d, 0xbf, 0xf4, 0x9d, 0x6b,
8935 0x71, 0xff, 0x25, 0x17, 0xde, 0x1f, 0xbc, 0xc5,
8936 0x5d, 0xb8, 0x3c, 0xd8, 0x39, 0x60, 0xcf, 0xcc,
8937 0x78, 0xe2, 0xc9, 0x07, 0xba, 0x6d, 0x32, 0x04,
8938 0x6d, 0x6b, 0xa1, 0x94, 0xca, 0x7d, 0x56, 0x0e,
8939 0x10, 0x88, 0xe3, 0x78, 0xc2, 0x92, 0x12, 0xc4,
8940 0x84, 0x8b, 0x4f, 0x2f, 0xe2, 0xe2, 0xc5, 0xc5,
8941 0xe1, 0xe7, 0x36, 0xdd, 0xcb, 0x7c, 0xfb, 0xd3,
8942 0x5b, 0x5b, 0x08, 0xc2, 0x00, 0xf5, 0xba, 0x8f,
8943 0xf5, 0xf5, 0x33, 0x70, 0x5d, 0x37, 0x67, 0x93,
8944 0x02, 0x1b, 0xb7, 0x4d, 0xcc, 0xb0, 0xb5, 0x86,
8945 0xa5, 0xac, 0xdc, 0x67, 0x65, 0xc1, 0x1a, 0x30,
8946 0x1a, 0x60, 0x54, 0x0f, 0x0e, 0xe1, 0xfb, 0xfe,
8947 0x50, 0x90, 0xb9, 0x53, 0xb5, 0xbe, 0xfb, 0x4a,
8948 0x49, 0x48, 0xe5, 0xe1, 0x98, 0xe7, 0xe1, 0xa0,
8949 0x72, 0x90, 0x3b, 0x0b, 0xca, 0x46, 0x60, 0x5c,
8950 0x52, 0x0b, 0x0b, 0x0b, 0x89, 0x98, 0xc0, 0xca,
8951 0x6d, 0xa9, 0x8b, 0x16, 0xf1, 0x87, 0x7f, 0xff,
8952 0xe8, 0xfa, 0xc5, 0xf3, 0xe7, 0x37, 0xac, 0xd8,
8953 0x44, 0xf9, 0x81, 0x32, 0x11, 0xe0, 0x1c, 0x00,
8954 0x1e, 0x24, 0x98, 0xfb, 0x5a, 0xeb, 0xbd, 0xbd,
8955 0x8b, 0x9c, 0xc0, 0x1d, 0x03, 0x2e, 0x1a, 0xa7,
8956 0x83, 0x4b, 0x00, 0xf8, 0xed, 0x6f, 0x7e, 0xd7,
8957 0x0a, 0xc3, 0xf0, 0xad, 0xa1, 0x04, 0xc2, 0x30,
8958 0x7c, 0xee, 0x4f, 0xaf, 0xff, 0xf9, 0xd5, 0xb7,
8959 0xde, 0x7c, 0xfb, 0x9c, 0xeb, 0x3a, 0x94, 0x3d,
8960 0x94, 0x35, 0x86, 0x04, 0x31, 0x75, 0x5f, 0xed,
8961 0x60, 0xc0, 0x90, 0x11, 0xdd, 0x8f, 0x1a, 0x86,
8962 0x60, 0x66, 0x05, 0x24, 0xba, 0x9d, 0x7d, 0x36,
8963 0xd7, 0x66, 0x8a, 0x98, 0xba, 0xf7, 0xb8, 0xe8,
8964 0xe0, 0x57, 0x08, 0xc1, 0xd9, 0x08, 0xf8, 0xbe,
8965 0x2f, 0x98, 0xf9, 0xf7, 0x9e, 0xe7, 0xfd, 0x34,
8966 0x8b, 0xb7, 0xf0, 0x74, 0x1a, 0x00, 0x9e, 0x7f,
8967 0xfe, 0x79, 0xd7, 0xf3, 0x3c, 0xaf, 0x5c, 0x2e,
8968 0xeb, 0x83, 0x83, 0x03, 0xbb, 0xd1, 0x68, 0xd8,
8969 0xed, 0x76, 0xdb, 0x0e, 0xc3, 0xd0, 0x8e, 0xa2,
8970 0xc8, 0x36, 0xc6, 0xd8, 0x41, 0x10, 0x38, 0x52,
8971 0xca, 0x63, 0xab, 0x8f, 0xac, 0x7e, 0x7d, 0x7a,
8972 0x66, 0xea, 0x1b, 0x52, 0xca, 0xb9, 0xc7, 0x1e,
8973 0xfb, 0xe2, 0x51, 0x07, 0x05, 0xdd, 0x88, 0x5c,
8974 0xbb, 0xf6, 0xbe, 0x31, 0x86, 0xfe, 0x51, 0xde,
8975 0x29, 0xbf, 0x72, 0xe3, 0xc6, 0x8d, 0xb7, 0x2d,
8976 0xcb, 0x8a, 0x2c, 0xcb, 0x0a, 0xa5, 0x94, 0xa1,
8977 0x94, 0x32, 0x54, 0x4a, 0x85, 0xb6, 0x6d, 0x87,
8978 0x9e, 0xe7, 0x05, 0x13, 0x13, 0x13, 0xd1, 0xec,
8979 0xec, 0x6c, 0xd4, 0x68, 0x34, 0xea, 0x6f, 0xbc,
8980 0xf1, 0xc6, 0xc0, 0x21, 0xed, 0x91, 0x04, 0x3a,
8981 0xc5, 0x02, 0xe0, 0xf4, 0x55, 0x17, 0x80, 0x0d,
8982 0xc0, 0xb9, 0x70, 0x61, 0xe3, 0xa9, 0xe5, 0x95,
8983 0x95, 0x1f, 0x2d, 0x3e, 0xb4, 0xa8, 0x2f, 0x5c,
8984 0xd8, 0xf0, 0x16, 0x17, 0x1f, 0xc4, 0x3f, 0x3f,
8985 0xf9, 0xd7, 0x88, 0x21, 0x19, 0xcb, 0xa7, 0x97,
8986 0x71, 0xeb, 0xd6, 0xbf, 0xb1, 0x79, 0xf5, 0xbd,
8987 0x96, 0xef, 0xfb, 0x5b, 0x9b, 0x7f, 0x7d, 0xef,
8988 0x7b, 0x3b, 0x3b, 0x3b, 0x5b, 0x00, 0x82, 0x21,
8989 0x95, 0x8a, 0x46, 0x1b, 0xea, 0x2d, 0x00, 0xb2,
8990 0xaf, 0xaa, 0xf4, 0x77, 0x69, 0x79, 0x69, 0x69,
8991 0xe5, 0x91, 0xd5, 0x9f, 0x5c, 0xba, 0x74, 0xc9,
8992 0xfd, 0xc2, 0xd2, 0x43, 0xdd, 0x43, 0x2f, 0xc7,
8993 0x19, 0xfd, 0x77, 0x82, 0x52, 0x0a, 0xab, 0xab,
8994 0x2b, 0x38, 0x7d, 0x7a, 0xd9, 0xdb, 0xbc, 0x7a,
8995 0x6d, 0x45, 0x08, 0xf1, 0xb3, 0x3b, 0x7f, 0xb8,
8996 0xf3, 0xad, 0x38, 0x39, 0x57, 0x49, 0x6b, 0x9c,
8997 0x99, 0xd7, 0xba, 0x57, 0x02, 0x40, 0xba, 0x01,
8998 0xea, 0xab, 0x27, 0x97, 0x96, 0x9e, 0x59, 0x5b,
8999 0x7b, 0x44, 0x2d, 0x3e, 0xfc, 0x20, 0xb4, 0xd6,
9000 0x88, 0xe3, 0xe4, 0xe4, 0x6e, 0x7e, 0x6e, 0x6e,
9001 0x8c, 0x21, 0x93, 0x62, 0x59, 0x16, 0xce, 0x6d,
9002 0x9c, 0x95, 0xb7, 0x6e, 0xde, 0x98, 0x5f, 0x59,
9003 0x5b, 0x59, 0xfb, 0xf8, 0xfa, 0xc7, 0x1f, 0x16,
9004 0xcc, 0x05, 0x0c, 0xc9, 0x94, 0x51, 0x04, 0x18,
9005 0x09, 0x73, 0xea, 0x6b, 0x53, 0x1c, 0x46, 0x7b,
9006 0xfb, 0xd5, 0x83, 0xa8, 0x52, 0x39, 0x50, 0x67,
9007 0xd6, 0xd6, 0x30, 0x33, 0x3d, 0x03, 0xbf, 0xe1,
9008 0xa3, 0xe9, 0x35, 0x10, 0x04, 0x01, 0x0c, 0x99,
9009 0xdc, 0x40, 0xc9, 0xb6, 0x5b, 0xc2, 0x75, 0x13,
9010 0x69, 0x55, 0x4a, 0x63, 0xe7, 0xf6, 0x36, 0x2a,
9011 0x95, 0x2a, 0x9a, 0xad, 0xb6, 0xd5, 0xac, 0x37,
9012 0xf7, 0xb2, 0xe3, 0xf7, 0xcd, 0x5b, 0xf0, 0xda,
9013 0x1b, 0x8f, 0xc0, 0x51, 0x21, 0x95, 0x9b, 0x9b,
9014 0xd7, 0x5e, 0x3b, 0xf1, 0xc0, 0x89, 0x6f, 0xbe,
9015 0xbf, 0x79, 0x6d, 0xfd, 0xf0, 0xb0, 0x6a, 0xcf,
9016 0xcf, 0xcd, 0x63, 0xe5, 0xf4, 0x0a, 0x4e, 0x9f,
9017 0x5e, 0xc5, 0xdc, 0x6c, 0x12, 0x85, 0x30, 0x0a,
9018 0x61, 0x8c, 0x81, 0xd6, 0x1a, 0x52, 0x4a, 0x84,
9019 0x61, 0x88, 0xf2, 0x6e, 0x19, 0xdb, 0x3b, 0xdb,
9020 0xb8, 0x79, 0xf3, 0x06, 0x1a, 0xcd, 0x06, 0xde,
9021 0xbf, 0xf6, 0x41, 0x70, 0x78, 0x58, 0xfb, 0xe5,
9022 0xd6, 0xd6, 0xd6, 0xed, 0xce, 0x1c, 0x69, 0x35,
9023 0x7d, 0xb5, 0xb0, 0x8c, 0x5a, 0xc4, 0xe8, 0x00,
9024 0x4e, 0x17, 0xb0, 0xdd, 0xa9, 0x0e, 0x00, 0x5b,
9025 0x6b, 0xed, 0x3d, 0xfd, 0xa5, 0xa7, 0xbf, 0x3d,
9026 0x39, 0x39, 0xf1, 0xdc, 0xc9, 0x53, 0x4b, 0x58,
9027 0x58, 0x58, 0x70, 0x84, 0xb4, 0x10, 0xb6, 0x43,
9028 0x4c, 0x4d, 0x4f, 0xa1, 0x54, 0x2a, 0x41, 0x6b,
9029 0x1b, 0xad, 0x66, 0x13, 0xd5, 0x6a, 0x15, 0x41,
9030 0x18, 0xc0, 0x75, 0x1c, 0xb4, 0xc3, 0x80, 0xb7,
9031 0x6e, 0x7d, 0x1a, 0xec, 0xef, 0x55, 0x5a, 0xdb,
9032 0xb7, 0x77, 0x7e, 0x7c, 0xf5, 0xdd, 0xab, 0xaf,
9033 0x03, 0x08, 0x3b, 0x35, 0x28, 0xf8, 0xbd, 0x2f,
9034 0x02, 0x40, 0x4f, 0x8d, 0xec, 0x82, 0xaa, 0x8f,
9035 0x1f, 0x2f, 0x4d, 0xad, 0x9e, 0x59, 0x7f, 0x66,
9036 0xfe, 0xc4, 0xfc, 0xd7, 0xb4, 0x52, 0xe7, 0x88,
9037 0xa8, 0xe4, 0x79, 0x5e, 0xe0, 0xb8, 0x0e, 0x84,
9038 0x10, 0x82, 0x0d, 0x51, 0xbb, 0x1d, 0x58, 0xed,
9039 0x76, 0xdb, 0x96, 0xd2, 0xba, 0xdb, 0x6a, 0xb5,
9040 0x37, 0xcb, 0xbb, 0xbb, 0xaf, 0x5e, 0xff, 0xdb,
9041 0xf5, 0x77, 0xa2, 0x28, 0x4a, 0x81, 0x47, 0x19,
9042 0x12, 0x59, 0x32, 0x85, 0x8b, 0xf7, 0xbf, 0x25,
9043 0x90, 0xda, 0xea, 0x14, 0x74, 0x5f, 0x55, 0xe8,
9044 0x29, 0x94, 0xf4, 0x3c, 0xcf, 0x3d, 0x79, 0xf2,
9045 0xe1, 0x53, 0x52, 0xda, 0x4e, 0xfa, 0x70, 0x2b,
9046 0x6c, 0xd5, 0xb6, 0x6e, 0x6d, 0x6d, 0x47, 0x51,
9047 0x14, 0x21, 0x9f, 0x96, 0x51, 0xe6, 0x37, 0xad,
9048 0x29, 0xa1, 0x23, 0x73, 0xff, 0x5e, 0x08, 0xf4,
9049 0x13, 0xc9, 0x02, 0xef, 0x82, 0x47, 0x12, 0xad,
9050 0xf4, 0x93, 0x2d, 0x3b, 0x7e, 0xba, 0x18, 0x0d,
9051 0x12, 0xaf, 0x66, 0x49, 0xa4, 0x35, 0x25, 0x30,
9052 0x12, 0xf8, 0xfd, 0x10, 0xe8, 0x7f, 0xbe, 0x88,
9053 0x80, 0x40, 0xef, 0xd0, 0x2c, 0x7b, 0x92, 0x96,
9054 0x55, 0xb3, 0x7e, 0x02, 0x63, 0x83, 0xee, 0x07,
9055 0xf0, 0x59, 0x97, 0x14, 0x7c, 0x56, 0xc3, 0x7b,
9056 0x07, 0x49, 0x3d, 0x12, 0x9f, 0x97, 0xff, 0x89,
9057 0xf2, 0x1f, 0xd1, 0x3b, 0x43, 0x1b, 0x76, 0x91,
9058 0x7a, 0xea, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45,
9059 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00, 0x00,
9060 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x6f, 0x72,
9061 0x67, 0x2f, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
9062 0x2f, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,
9063 0x76, 0x69, 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65,
9064 0x77, 0x65, 0x72, 0x2f, 0x0f, 0x00, 0x00, 0x00,
9065 0x17, 0x00, 0x00, 0x00, 0x72, 0x65, 0x6d, 0x6f,
9066 0x74, 0x65, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
9067 0x72, 0x2d, 0x69, 0x73, 0x6f, 0x2d, 0x6c, 0x69,
9068 0x73, 0x74, 0x2e, 0x75, 0x69, 0x00, 0x00, 0x00,
9069 0x76, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9070 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
9071 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
9072 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
9073 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
9074 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
9075 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
9076 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
9077 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
9078 0x20, 0x33, 0x2e, 0x32, 0x30, 0x2e, 0x30, 0x20,
9079 0x2d, 0x2d, 0x3e, 0x0a, 0x3c, 0x69, 0x6e, 0x74,
9080 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a,
9081 0x20, 0x20, 0x3c, 0x72, 0x65, 0x71, 0x75, 0x69,
9082 0x72, 0x65, 0x73, 0x20, 0x6c, 0x69, 0x62, 0x3d,
9083 0x22, 0x67, 0x74, 0x6b, 0x2b, 0x22, 0x20, 0x76,
9084 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22,
9085 0x33, 0x2e, 0x31, 0x36, 0x22, 0x2f, 0x3e, 0x0a,
9086 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9087 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
9088 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x69, 0x73, 0x74,
9089 0x53, 0x74, 0x6f, 0x72, 0x65, 0x22, 0x20, 0x69,
9090 0x64, 0x3d, 0x22, 0x6c, 0x69, 0x73, 0x74, 0x73,
9091 0x74, 0x6f, 0x72, 0x65, 0x22, 0x3e, 0x0a, 0x20,
9092 0x20, 0x20, 0x20, 0x3c, 0x63, 0x6f, 0x6c, 0x75,
9093 0x6d, 0x6e, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9094 0x20, 0x20, 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20,
9095 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x2d, 0x6e,
9096 0x61, 0x6d, 0x65, 0x20, 0x73, 0x65, 0x6c, 0x65,
9097 0x63, 0x74, 0x65, 0x64, 0x20, 0x2d, 0x2d, 0x3e,
9098 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9099 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x74,
9100 0x79, 0x70, 0x65, 0x3d, 0x22, 0x67, 0x62, 0x6f,
9101 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x22, 0x2f, 0x3e,
9102 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9103 0x21, 0x2d, 0x2d, 0x20, 0x63, 0x6f, 0x6c, 0x75,
9104 0x6d, 0x6e, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x20,
9105 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x2d, 0x2d, 0x3e,
9106 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9107 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x20, 0x74,
9108 0x79, 0x70, 0x65, 0x3d, 0x22, 0x67, 0x63, 0x68,
9109 0x61, 0x72, 0x61, 0x72, 0x72, 0x61, 0x79, 0x22,
9110 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9111 0x20, 0x3c, 0x21, 0x2d, 0x2d, 0x20, 0x63, 0x6f,
9112 0x6c, 0x75, 0x6d, 0x6e, 0x2d, 0x6e, 0x61, 0x6d,
9113 0x65, 0x20, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74,
9114 0x20, 0x2d, 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9115 0x20, 0x20, 0x20, 0x3c, 0x63, 0x6f, 0x6c, 0x75,
9116 0x6d, 0x6e, 0x20, 0x74, 0x79, 0x70, 0x65, 0x3d,
9117 0x22, 0x67, 0x69, 0x6e, 0x74, 0x22, 0x2f, 0x3e,
9118 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
9119 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x3e, 0x0a,
9120 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
9121 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x6f,
9122 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
9123 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
9124 0x53, 0x74, 0x61, 0x63, 0x6b, 0x22, 0x20, 0x69,
9125 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61, 0x63, 0x6b,
9126 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
9127 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9128 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
9129 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
9130 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
9131 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9132 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9133 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9134 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
9135 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
9136 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
9137 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9138 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
9139 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9140 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9141 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
9142 0x22, 0x47, 0x74, 0x6b, 0x42, 0x6f, 0x78, 0x22,
9143 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9144 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9145 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9146 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
9147 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9148 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9149 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9150 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9151 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9152 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
9153 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
9154 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9155 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9156 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9157 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9158 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f,
9159 0x72, 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69,
9160 0x6f, 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74,
9161 0x69, 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72,
9162 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9163 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9164 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9165 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9166 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
9167 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9168 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9169 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
9170 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
9171 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9172 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
9173 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
9174 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22,
9175 0x20, 0x69, 0x64, 0x3d, 0x22, 0x73, 0x74, 0x61,
9176 0x74, 0x75, 0x73, 0x22, 0x3e, 0x0a, 0x20, 0x20,
9177 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9178 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9179 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9180 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
9181 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9182 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9183 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9184 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9185 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9186 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
9187 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
9188 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
9189 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9190 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9191 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9192 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9193 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
9194 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
9195 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
9196 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
9197 0x3e, 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67,
9198 0x2e, 0x2e, 0x2e, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9199 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9200 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9201 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9202 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9203 0x65, 0x3d, 0x22, 0x79, 0x61, 0x6c, 0x69, 0x67,
9204 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
9205 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9206 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9207 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74,
9208 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e,
9209 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9210 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9211 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
9212 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9213 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0x20,
9214 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x62,
9215 0x6f, 0x6c, 0x64, 0x22, 0x2f, 0x3e, 0x0a, 0x20,
9216 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9217 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x74, 0x74,
9218 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e,
9219 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9220 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
9221 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9222 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9223 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
9224 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9225 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9226 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9227 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
9228 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75,
9229 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9230 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9231 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9232 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9233 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9234 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54,
9235 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9236 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9237 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9238 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9239 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9240 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
9241 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f,
9242 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9243 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9244 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61,
9245 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
9246 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9247 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9248 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9249 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9250 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9251 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9252 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
9253 0x22, 0x47, 0x74, 0x6b, 0x53, 0x70, 0x69, 0x6e,
9254 0x6e, 0x65, 0x72, 0x22, 0x20, 0x69, 0x64, 0x3d,
9255 0x22, 0x73, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x72,
9256 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9257 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9258 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9259 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
9260 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
9261 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
9262 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9263 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9264 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9265 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9266 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
9267 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
9268 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
9269 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9270 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9271 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9272 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9273 0x6d, 0x65, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
9274 0x76, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
9275 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9276 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9277 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
9278 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
9279 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9280 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
9281 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9282 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9283 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9284 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9285 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e,
9286 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
9287 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9288 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9289 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9290 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9291 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c,
9292 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9293 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9294 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9295 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9296 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9297 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
9298 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
9299 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9300 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9301 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9302 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
9303 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9304 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
9305 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9306 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
9307 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9308 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
9309 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
9310 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
9311 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3e, 0x0a,
9312 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9313 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9314 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9315 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
9316 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
9317 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9318 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9319 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9320 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9321 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9322 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
9323 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
9324 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9325 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9326 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9327 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
9328 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9329 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
9330 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9331 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9332 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9333 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9334 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
9335 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
9336 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9337 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9338 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9339 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9340 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c,
9341 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9342 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9343 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9344 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9345 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9346 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
9347 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
9348 0x3e, 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9349 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9350 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9351 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
9352 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9353 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
9354 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9355 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
9356 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9357 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69,
9358 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9359 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9360 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9361 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x61, 0x6d, 0x65,
9362 0x22, 0x3e, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
9363 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9364 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9365 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
9366 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9367 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
9368 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
9369 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
9370 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
9371 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
9372 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x6f,
9373 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9374 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9375 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9376 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
9377 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
9378 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9379 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9380 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9381 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9382 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
9383 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
9384 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
9385 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9386 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9387 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9388 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9389 0x22, 0x6f, 0x72, 0x69, 0x65, 0x6e, 0x74, 0x61,
9390 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x76, 0x65,
9391 0x72, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x3c, 0x2f,
9392 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9393 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9394 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9395 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9396 0x3d, 0x22, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e,
9397 0x67, 0x22, 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72,
9398 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9399 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9400 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9401 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9402 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9403 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
9404 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65,
9405 0x6c, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9406 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9407 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9408 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9409 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
9410 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
9411 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9412 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9413 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9414 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9415 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
9416 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
9417 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70,
9418 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9419 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9420 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9421 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9422 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
9423 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
9424 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
9425 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x53,
9426 0x65, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x49, 0x53,
9427 0x4f, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9428 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9429 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9430 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9431 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9432 0x22, 0x78, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x22,
9433 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9434 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9435 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9436 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69,
9437 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20,
9438 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9439 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74,
9440 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20,
9441 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x77, 0x65,
9442 0x69, 0x67, 0x68, 0x74, 0x22, 0x20, 0x76, 0x61,
9443 0x6c, 0x75, 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x6c,
9444 0x64, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9445 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9446 0x20, 0x3c, 0x2f, 0x61, 0x74, 0x74, 0x72, 0x69,
9447 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20,
9448 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9449 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9450 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9451 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
9452 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
9453 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9454 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9455 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9456 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
9457 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
9458 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9459 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9460 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9461 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9462 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9463 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
9464 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9465 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9466 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9467 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9468 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9469 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
9470 0x6f, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
9471 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9472 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9473 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
9474 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
9475 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
9476 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
9477 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9478 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
9479 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9480 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
9481 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
9482 0x47, 0x74, 0x6b, 0x41, 0x6c, 0x69, 0x67, 0x6e,
9483 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x20, 0x69, 0x64,
9484 0x3d, 0x22, 0x61, 0x6c, 0x69, 0x67, 0x6e, 0x6d,
9485 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x0a, 0x20, 0x20,
9486 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9487 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9488 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9489 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
9490 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9491 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9492 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9493 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9494 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9495 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63,
9496 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73,
9497 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
9498 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9499 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9500 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9501 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9502 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62,
9503 0x6f, 0x74, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61,
9504 0x64, 0x64, 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x36,
9505 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9506 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9507 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9508 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9509 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9510 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
9511 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
9512 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
9513 0x53, 0x63, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x64,
9514 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x22, 0x3e,
9515 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9516 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9517 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9518 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9519 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
9520 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
9521 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9522 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9523 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9524 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9525 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9526 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
9527 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72, 0x75,
9528 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9529 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9530 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9531 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9532 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9533 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x68, 0x61,
9534 0x64, 0x6f, 0x77, 0x5f, 0x74, 0x79, 0x70, 0x65,
9535 0x22, 0x3e, 0x69, 0x6e, 0x3c, 0x2f, 0x70, 0x72,
9536 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9537 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9538 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9539 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9540 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9541 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9542 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9543 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
9544 0x22, 0x47, 0x74, 0x6b, 0x54, 0x72, 0x65, 0x65,
9545 0x56, 0x69, 0x65, 0x77, 0x22, 0x20, 0x69, 0x64,
9546 0x3d, 0x22, 0x76, 0x69, 0x65, 0x77, 0x22, 0x3e,
9547 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9548 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9549 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9550 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9551 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
9552 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
9553 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9554 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9555 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9556 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9557 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9558 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9559 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
9560 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72, 0x75,
9561 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9562 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9563 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9564 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9565 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9566 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9567 0x22, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x22, 0x3e,
9568 0x6c, 0x69, 0x73, 0x74, 0x73, 0x74, 0x6f, 0x72,
9569 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9570 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9571 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9572 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9573 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9574 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9575 0x22, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73,
9576 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65,
9577 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
9578 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9579 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9580 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9581 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9582 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9583 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x72,
9584 0x75, 0x6c, 0x65, 0x73, 0x5f, 0x68, 0x69, 0x6e,
9585 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9586 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9587 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9588 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9589 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9590 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9591 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73,
9592 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63, 0x6f,
9593 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0x3e, 0x31, 0x3c,
9594 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9595 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9596 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9597 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9598 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9599 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
9600 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x67, 0x72,
9601 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73,
9602 0x22, 0x3e, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x6f,
9603 0x6e, 0x74, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72,
9604 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9605 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9606 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9607 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
9608 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9609 0x3d, 0x22, 0x72, 0x6f, 0x77, 0x2d, 0x61, 0x63,
9610 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x64, 0x22,
9611 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
9612 0x3d, 0x22, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,
9613 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f,
9614 0x69, 0x73, 0x6f, 0x5f, 0x6c, 0x69, 0x73, 0x74,
9615 0x5f, 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x5f,
9616 0x72, 0x6f, 0x77, 0x5f, 0x61, 0x63, 0x74, 0x69,
9617 0x76, 0x61, 0x74, 0x65, 0x64, 0x22, 0x20, 0x73,
9618 0x77, 0x61, 0x70, 0x70, 0x65, 0x64, 0x3d, 0x22,
9619 0x6e, 0x6f, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
9620 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9621 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9622 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
9623 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
9624 0x6c, 0x2d, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3d,
9625 0x22, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
9626 0x6f, 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9627 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9628 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9629 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65,
9630 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73,
9631 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x54, 0x72, 0x65,
9632 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
9633 0x6f, 0x6e, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
9634 0x74, 0x72, 0x65, 0x65, 0x76, 0x69, 0x65, 0x77,
9635 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69,
9636 0x6f, 0x6e, 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20,
9637 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9638 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9639 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c,
9640 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9641 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9642 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9643 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
9644 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9645 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9646 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
9647 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
9648 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x54,
9649 0x72, 0x65, 0x65, 0x56, 0x69, 0x65, 0x77, 0x43,
9650 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0x20, 0x69,
9651 0x64, 0x3d, 0x22, 0x73, 0x65, 0x6c, 0x65, 0x63,
9652 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6c, 0x75,
9653 0x6d, 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9654 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9655 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9656 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9657 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9658 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x73, 0x69, 0x7a,
9659 0x69, 0x6e, 0x67, 0x22, 0x3e, 0x61, 0x75, 0x74,
9660 0x6f, 0x73, 0x69, 0x7a, 0x65, 0x3c, 0x2f, 0x70,
9661 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9662 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9663 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9664 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9665 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9666 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9667 0x22, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x20,
9668 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74,
9669 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65,
9670 0x73, 0x22, 0x3e, 0x53, 0x65, 0x6c, 0x65, 0x63,
9671 0x74, 0x65, 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9672 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9673 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9674 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9675 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9676 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
9677 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9678 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9679 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9680 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
9681 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
9682 0x47, 0x74, 0x6b, 0x43, 0x65, 0x6c, 0x6c, 0x52,
9683 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x72, 0x54,
9684 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x22, 0x20, 0x69,
9685 0x64, 0x3d, 0x22, 0x63, 0x65, 0x6c, 0x6c, 0x72,
9686 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x72, 0x74,
9687 0x6f, 0x67, 0x67, 0x6c, 0x65, 0x22, 0x3e, 0x0a,
9688 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9689 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9690 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9691 0x20, 0x20, 0x20, 0x20, 0x3c, 0x73, 0x69, 0x67,
9692 0x6e, 0x61, 0x6c, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9693 0x3d, 0x22, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
9694 0x64, 0x22, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c,
9695 0x65, 0x72, 0x3d, 0x22, 0x72, 0x65, 0x6d, 0x6f,
9696 0x74, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x65,
9697 0x72, 0x5f, 0x69, 0x73, 0x6f, 0x5f, 0x6c, 0x69,
9698 0x73, 0x74, 0x5f, 0x64, 0x69, 0x61, 0x6c, 0x6f,
9699 0x67, 0x5f, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
9700 0x64, 0x22, 0x20, 0x73, 0x77, 0x61, 0x70, 0x70,
9701 0x65, 0x64, 0x3d, 0x22, 0x6e, 0x6f, 0x22, 0x2f,
9702 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9703 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9704 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9705 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
9706 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
9707 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9708 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9709 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9710 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
9711 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9712 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9713 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9714 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9715 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62,
9716 0x75, 0x74, 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9717 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65,
9718 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x61, 0x74, 0x74,
9719 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x3e, 0x0a,
9720 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9721 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9722 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9723 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x74, 0x74, 0x72,
9724 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a,
9725 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9726 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9727 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9728 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
9729 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9730 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9731 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9732 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
9733 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9734 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9735 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
9736 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
9737 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9738 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9739 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
9740 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9741 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9742 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9743 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
9744 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
9745 0x74, 0x6b, 0x54, 0x72, 0x65, 0x65, 0x56, 0x69,
9746 0x65, 0x77, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
9747 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x6e, 0x61,
9748 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d,
9749 0x6e, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9750 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9751 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9752 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9753 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9754 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c,
9755 0x65, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73,
9756 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d,
9757 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x4e, 0x61,
9758 0x6d, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9759 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9760 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9761 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9762 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9763 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9764 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78,
9765 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72,
9766 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9767 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9768 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9769 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9770 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
9771 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
9772 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9773 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9774 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9775 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
9776 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
9777 0x74, 0x6b, 0x43, 0x65, 0x6c, 0x6c, 0x52, 0x65,
9778 0x6e, 0x64, 0x65, 0x72, 0x65, 0x72, 0x54, 0x65,
9779 0x78, 0x74, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
9780 0x63, 0x65, 0x6c, 0x6c, 0x72, 0x65, 0x6e, 0x64,
9781 0x65, 0x72, 0x65, 0x72, 0x74, 0x65, 0x78, 0x74,
9782 0x22, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9783 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9784 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9785 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61,
9786 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
9787 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9788 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9789 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9790 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9791 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
9792 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9793 0x74, 0x65, 0x78, 0x74, 0x22, 0x3e, 0x31, 0x3c,
9794 0x2f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
9795 0x74, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9796 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9797 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9798 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9799 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
9800 0x74, 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9801 0x22, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22,
9802 0x3e, 0x32, 0x3c, 0x2f, 0x61, 0x74, 0x74, 0x72,
9803 0x69, 0x62, 0x75, 0x74, 0x65, 0x3e, 0x0a, 0x20,
9804 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9805 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9806 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9807 0x20, 0x3c, 0x2f, 0x61, 0x74, 0x74, 0x72, 0x69,
9808 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a, 0x20,
9809 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9810 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9811 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9812 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
9813 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9814 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9815 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
9816 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
9817 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9818 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9819 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
9820 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9821 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9822 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9823 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
9824 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9825 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9826 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
9827 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9828 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9829 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
9830 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9831 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
9832 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
9833 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9834 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9835 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9836 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
9837 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
9838 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9839 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
9840 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
9841 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
9842 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
9843 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9844 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9845 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
9846 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9847 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
9848 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
9849 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9850 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9851 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9852 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9853 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9854 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
9855 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72,
9856 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9857 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9858 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
9859 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9860 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
9861 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
9862 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62,
9863 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20,
9864 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63,
9865 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
9866 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9867 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9868 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6e, 0x61,
9869 0x6d, 0x65, 0x22, 0x3e, 0x69, 0x73, 0x6f, 0x2d,
9870 0x6c, 0x69, 0x73, 0x74, 0x3c, 0x2f, 0x70, 0x72,
9871 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
9872 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9873 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
9874 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
9875 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
9876 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
9877 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
9878 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
9879 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
9880 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
9881 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x3c,
9882 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
9883 0x0a, 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,
9884 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00,
9885 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69,
9886 0x72, 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65,
9887 0x72, 0x2d, 0x66, 0x69, 0x6c, 0x65, 0x2d, 0x74,
9888 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x2d,
9889 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x2e, 0x75,
9890 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9891 0x75, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
9892 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
9893 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
9894 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
9895 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
9896 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
9897 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63,
9898 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x72, 0x65,
9899 0x71, 0x75, 0x69, 0x72, 0x65, 0x73, 0x20, 0x6c,
9900 0x69, 0x62, 0x3d, 0x22, 0x67, 0x74, 0x6b, 0x2b,
9901 0x22, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
9902 0x6e, 0x3d, 0x22, 0x33, 0x2e, 0x31, 0x30, 0x22,
9903 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x21, 0x2d,
9904 0x2d, 0x20, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
9905 0x61, 0x63, 0x65, 0x2d, 0x6e, 0x61, 0x6d, 0x69,
9906 0x6e, 0x67, 0x2d, 0x70, 0x6f, 0x6c, 0x69, 0x63,
9907 0x79, 0x20, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
9908 0x74, 0x2d, 0x77, 0x69, 0x64, 0x65, 0x20, 0x2d,
9909 0x2d, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x74, 0x65,
9910 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x63,
9911 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x56, 0x69,
9912 0x72, 0x74, 0x56, 0x69, 0x65, 0x77, 0x65, 0x72,
9913 0x46, 0x69, 0x6c, 0x65, 0x54, 0x72, 0x61, 0x6e,
9914 0x73, 0x66, 0x65, 0x72, 0x44, 0x69, 0x61, 0x6c,
9915 0x6f, 0x67, 0x22, 0x20, 0x70, 0x61, 0x72, 0x65,
9916 0x6e, 0x74, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x44,
9917 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x3e, 0x0a,
9918 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9919 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9920 0x6d, 0x65, 0x3d, 0x22, 0x64, 0x65, 0x66, 0x61,
9921 0x75, 0x6c, 0x74, 0x5f, 0x77, 0x69, 0x64, 0x74,
9922 0x68, 0x22, 0x3e, 0x34, 0x30, 0x30, 0x3c, 0x2f,
9923 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9924 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9925 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9926 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
9927 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
9928 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
9929 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9930 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9931 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9932 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x62, 0x6f,
9933 0x72, 0x64, 0x65, 0x72, 0x5f, 0x77, 0x69, 0x64,
9934 0x74, 0x68, 0x22, 0x3e, 0x35, 0x3c, 0x2f, 0x70,
9935 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9936 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9937 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9938 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70,
9939 0x65, 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e,
9940 0x64, 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f,
9941 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9942 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
9943 0x68, 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74,
9944 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68,
9945 0x69, 0x6c, 0x64, 0x3d, 0x22, 0x76, 0x62, 0x6f,
9946 0x78, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9947 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
9948 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
9949 0x22, 0x47, 0x74, 0x6b, 0x42, 0x6f, 0x78, 0x22,
9950 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61,
9951 0x6c, 0x6f, 0x67, 0x2d, 0x76, 0x62, 0x6f, 0x78,
9952 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
9953 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
9954 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
9955 0x6d, 0x65, 0x3d, 0x22, 0x6f, 0x72, 0x69, 0x65,
9956 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
9957 0x3e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x63, 0x61,
9958 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9959 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9960 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
9961 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
9962 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
9963 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
9964 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
9965 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
9966 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
9967 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
9968 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
9969 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
9970 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
9971 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
9972 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9973 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
9974 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
9975 0x3d, 0x22, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e,
9976 0x67, 0x22, 0x3e, 0x31, 0x32, 0x3c, 0x2f, 0x70,
9977 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
9978 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9979 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
9980 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
9981 0x22, 0x62, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x2d,
9982 0x77, 0x69, 0x64, 0x74, 0x68, 0x22, 0x3e, 0x31,
9983 0x32, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
9984 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
9985 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
9986 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
9987 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
9988 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74, 0x69,
9989 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x22,
9990 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
9991 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
9992 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
9993 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42, 0x75,
9994 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78, 0x22,
9995 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61,
9996 0x6c, 0x6f, 0x67, 0x2d, 0x61, 0x63, 0x74, 0x69,
9997 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61, 0x31,
9998 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
9999 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10000 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10001 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f,
10002 0x72, 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69,
10003 0x6f, 0x6e, 0x22, 0x3e, 0x68, 0x6f, 0x72, 0x69,
10004 0x7a, 0x6f, 0x6e, 0x74, 0x61, 0x6c, 0x3c, 0x2f,
10005 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10006 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10007 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
10008 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
10009 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
10010 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
10011 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10012 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10013 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10014 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10015 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10016 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
10017 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
10018 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10019 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10020 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10021 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10022 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10023 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x79, 0x6f, 0x75,
10024 0x74, 0x5f, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x22,
10025 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72,
10026 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10027 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10028 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
10029 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10030 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10031 0x20, 0x20, 0x3c, 0x70, 0x6c, 0x61, 0x63, 0x65,
10032 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x3e,
10033 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10034 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
10035 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
10036 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10037 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
10038 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10039 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10040 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
10041 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
10042 0x74, 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e,
10043 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75,
10044 0x74, 0x74, 0x6f, 0x6e, 0x31, 0x22, 0x3e, 0x0a,
10045 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10046 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10047 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10048 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10049 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74,
10050 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
10051 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
10052 0x22, 0x3e, 0x5f, 0x43, 0x61, 0x6e, 0x63, 0x65,
10053 0x6c, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10054 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10055 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10056 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10057 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10058 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73,
10059 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72,
10060 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
10061 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
10062 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10063 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
10064 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
10065 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61,
10066 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22,
10067 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
10068 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10069 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10070 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10071 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10072 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10073 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
10074 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
10075 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
10076 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10077 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10078 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10079 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10080 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10081 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75,
10082 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65,
10083 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
10084 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10085 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10086 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10087 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
10088 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10089 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10090 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
10091 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10092 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10093 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10094 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10095 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
10096 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c,
10097 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10098 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10099 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10100 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10101 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10102 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22,
10103 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
10104 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10105 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10106 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10107 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10108 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10109 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
10110 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70,
10111 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10112 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10113 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10114 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
10115 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10116 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
10117 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
10118 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10119 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
10120 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10121 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
10122 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
10123 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10124 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10125 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10126 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
10127 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
10128 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10129 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10130 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10131 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10132 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
10133 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
10134 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10135 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10136 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10137 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10138 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10139 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
10140 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72,
10141 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10142 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10143 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b,
10144 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10145 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
10146 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
10147 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
10148 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
10149 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10150 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
10151 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
10152 0x74, 0x6b, 0x42, 0x6f, 0x78, 0x22, 0x20, 0x69,
10153 0x64, 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78, 0x31,
10154 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10155 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10156 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10157 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f,
10158 0x72, 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69,
10159 0x6f, 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74,
10160 0x69, 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72,
10161 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10162 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10163 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10164 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10165 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
10166 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
10167 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10168 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10169 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10170 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10171 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10172 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
10173 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
10174 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10175 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10176 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10177 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10178 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10179 0x22, 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67,
10180 0x22, 0x3e, 0x31, 0x32, 0x3c, 0x2f, 0x70, 0x72,
10181 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10182 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10183 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
10184 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10185 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10186 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
10187 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
10188 0x22, 0x47, 0x74, 0x6b, 0x4c, 0x61, 0x62, 0x65,
10189 0x6c, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74,
10190 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x5f,
10191 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x22,
10192 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10193 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10194 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10195 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10196 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
10197 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
10198 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10199 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10200 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10201 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10202 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10203 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
10204 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
10205 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10206 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10207 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10208 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10209 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10210 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
10211 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
10212 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
10213 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
10214 0x3e, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x3c, 0x2f,
10215 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10216 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10217 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10218 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
10219 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10220 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10221 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
10222 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10223 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10224 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10225 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10226 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64,
10227 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
10228 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10229 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10230 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10231 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10232 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10233 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
10234 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10235 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10236 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10237 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10238 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10239 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10240 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
10241 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10242 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10243 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10244 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
10245 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
10246 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10247 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
10248 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10249 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10250 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
10251 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10252 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10253 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
10254 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
10255 0x6b, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73,
10256 0x73, 0x42, 0x61, 0x72, 0x22, 0x20, 0x69, 0x64,
10257 0x3d, 0x22, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x65,
10258 0x73, 0x73, 0x62, 0x61, 0x72, 0x22, 0x3e, 0x0a,
10259 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10260 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10261 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10262 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10263 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22,
10264 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
10265 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10266 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10267 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10268 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10269 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10270 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63,
10271 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73,
10272 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10273 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10274 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10275 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a,
10276 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10277 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10278 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b,
10279 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10280 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10281 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10282 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10283 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70,
10284 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75,
10285 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10286 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10287 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10288 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10289 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10290 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c,
10291 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
10292 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10293 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10294 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10295 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10296 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10297 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74,
10298 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f,
10299 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10300 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10301 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10302 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
10303 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10304 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10305 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a,
10306 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10307 0x20, 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65,
10308 0x63, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10309 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
10310 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
10311 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10312 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10313 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10314 0x6d, 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61,
10315 0x6e, 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
10316 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10317 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10318 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10319 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10320 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10321 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
10322 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
10323 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
10324 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10325 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10326 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10327 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
10328 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70,
10329 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10330 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10331 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63,
10332 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20,
10333 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
10334 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
10335 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
10336 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
10337 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
10338 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10339 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d,
10340 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73, 0x3e,
10341 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10342 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77,
10343 0x69, 0x64, 0x67, 0x65, 0x74, 0x20, 0x72, 0x65,
10344 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x3d, 0x22,
10345 0x2d, 0x36, 0x22, 0x3e, 0x62, 0x75, 0x74, 0x74,
10346 0x6f, 0x6e, 0x31, 0x3c, 0x2f, 0x61, 0x63, 0x74,
10347 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67,
10348 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10349 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
10350 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x73,
10351 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x74, 0x65,
10352 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x3e, 0x0a,
10353 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
10354 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28,
10355 0x75, 0x75, 0x61, 0x79, 0x29, 0x75, 0x69, 0x2f,
10356 0x06, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00,
10357 0x10, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
10358 0x16, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
10359 0x09, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
10360 0x0a, 0x00, 0x00, 0x00, 0x76, 0x69, 0x72, 0x74,
10361 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x2d,
10362 0x76, 0x6d, 0x2d, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
10363 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x75, 0x69,
10364 0x2d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
10365 0x3c, 0x3f, 0x78, 0x6d, 0x6c, 0x20, 0x76, 0x65,
10366 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x3d, 0x22, 0x31,
10367 0x2e, 0x30, 0x22, 0x20, 0x65, 0x6e, 0x63, 0x6f,
10368 0x64, 0x69, 0x6e, 0x67, 0x3d, 0x22, 0x55, 0x54,
10369 0x46, 0x2d, 0x38, 0x22, 0x3f, 0x3e, 0x0a, 0x3c,
10370 0x21, 0x2d, 0x2d, 0x20, 0x47, 0x65, 0x6e, 0x65,
10371 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x77, 0x69,
10372 0x74, 0x68, 0x20, 0x67, 0x6c, 0x61, 0x64, 0x65,
10373 0x20, 0x33, 0x2e, 0x31, 0x36, 0x2e, 0x31, 0x20,
10374 0x2d, 0x2d, 0x3e, 0x0a, 0x3c, 0x69, 0x6e, 0x74,
10375 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x3e, 0x0a,
10376 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63,
10377 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
10378 0x22, 0x47, 0x74, 0x6b, 0x44, 0x69, 0x61, 0x6c,
10379 0x6f, 0x67, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22,
10380 0x76, 0x6d, 0x2d, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
10381 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x64, 0x69,
10382 0x61, 0x6c, 0x6f, 0x67, 0x22, 0x3e, 0x0a, 0x20,
10383 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10384 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10385 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
10386 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
10387 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10388 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10389 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10390 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10391 0x65, 0x3d, 0x22, 0x62, 0x6f, 0x72, 0x64, 0x65,
10392 0x72, 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x22,
10393 0x3e, 0x35, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
10394 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
10395 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10396 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10397 0x3d, 0x22, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22,
10398 0x20, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61,
10399 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79,
10400 0x65, 0x73, 0x22, 0x3e, 0x43, 0x68, 0x6f, 0x6f,
10401 0x73, 0x65, 0x20, 0x61, 0x20, 0x76, 0x69, 0x72,
10402 0x74, 0x75, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x63,
10403 0x68, 0x69, 0x6e, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10404 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10405 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10406 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10407 0x6d, 0x65, 0x3d, 0x22, 0x6d, 0x6f, 0x64, 0x61,
10408 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
10409 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10410 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c,
10411 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10412 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x77,
10413 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x70, 0x6f,
10414 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e,
10415 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2d, 0x6f,
10416 0x6e, 0x2d, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
10417 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10418 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10419 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10420 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10421 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
10422 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0x3e,
10423 0x32, 0x30, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10424 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10425 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10426 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10427 0x65, 0x3d, 0x22, 0x64, 0x65, 0x73, 0x74, 0x72,
10428 0x6f, 0x79, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f,
10429 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x3e,
10430 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10431 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10432 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10433 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10434 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x79, 0x70, 0x65,
10435 0x5f, 0x68, 0x69, 0x6e, 0x74, 0x22, 0x3e, 0x64,
10436 0x69, 0x61, 0x6c, 0x6f, 0x67, 0x3c, 0x2f, 0x70,
10437 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10438 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
10439 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
10440 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
10441 0x6c, 0x64, 0x3d, 0x22, 0x76, 0x62, 0x6f, 0x78,
10442 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10443 0x20, 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
10444 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22,
10445 0x47, 0x74, 0x6b, 0x42, 0x6f, 0x78, 0x22, 0x20,
10446 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69, 0x61, 0x6c,
10447 0x6f, 0x67, 0x2d, 0x76, 0x62, 0x6f, 0x78, 0x31,
10448 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10449 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10450 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10451 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
10452 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46, 0x61,
10453 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10454 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10455 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10456 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10457 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6f,
10458 0x72, 0x69, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69,
10459 0x6f, 0x6e, 0x22, 0x3e, 0x76, 0x65, 0x72, 0x74,
10460 0x69, 0x63, 0x61, 0x6c, 0x3c, 0x2f, 0x70, 0x72,
10461 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10462 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10463 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10464 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10465 0x73, 0x70, 0x61, 0x63, 0x69, 0x6e, 0x67, 0x22,
10466 0x3e, 0x36, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
10467 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
10468 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63,
10469 0x68, 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74,
10470 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68,
10471 0x69, 0x6c, 0x64, 0x3d, 0x22, 0x61, 0x63, 0x74,
10472 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61,
10473 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10474 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62,
10475 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61,
10476 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x42,
10477 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x42, 0x6f, 0x78,
10478 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x64, 0x69,
10479 0x61, 0x6c, 0x6f, 0x67, 0x2d, 0x61, 0x63, 0x74,
10480 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x65, 0x61,
10481 0x31, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10482 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10483 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10484 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10485 0x63, 0x61, 0x6e, 0x5f, 0x66, 0x6f, 0x63, 0x75,
10486 0x73, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
10487 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10488 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10489 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10490 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10491 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10492 0x6c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x5f, 0x73,
10493 0x74, 0x79, 0x6c, 0x65, 0x22, 0x3e, 0x65, 0x6e,
10494 0x64, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10495 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10496 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10497 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
10498 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10499 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10500 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
10501 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
10502 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
10503 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74,
10504 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x61, 0x6e, 0x63,
10505 0x65, 0x6c, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10506 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10507 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10508 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10509 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c,
10510 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72,
10511 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62,
10512 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22,
10513 0x3e, 0x5f, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c,
10514 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10515 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10516 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10517 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10518 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10519 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
10520 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
10521 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10522 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10523 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10524 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10525 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10526 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
10527 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
10528 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10529 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10530 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10531 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10532 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10533 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10534 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x73,
10535 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
10536 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
10537 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10538 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10539 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10540 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10541 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10542 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f, 0x75, 0x6e,
10543 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e, 0x65, 0x22,
10544 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70,
10545 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10546 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10547 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10548 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
10549 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10550 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10551 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e,
10552 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10553 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10554 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10555 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10556 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22,
10557 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f,
10558 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10559 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10560 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10561 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10562 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10563 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e,
10564 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10565 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10566 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10567 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10568 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10569 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10570 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
10571 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10572 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10573 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10574 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
10575 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
10576 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10577 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
10578 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10579 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10580 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
10581 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10582 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10583 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
10584 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
10585 0x6b, 0x42, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x22,
10586 0x20, 0x69, 0x64, 0x3d, 0x22, 0x62, 0x75, 0x74,
10587 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x6f, 0x6e, 0x6e,
10588 0x65, 0x63, 0x74, 0x22, 0x3e, 0x0a, 0x20, 0x20,
10589 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10590 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
10591 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
10592 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61,
10593 0x62, 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61,
10594 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c,
10595 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e,
10596 0x43, 0x5f, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
10597 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10598 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10599 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10600 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10601 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10602 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69, 0x73, 0x69,
10603 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75,
10604 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10605 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10606 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10607 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10608 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10609 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e,
10610 0x5f, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e,
10611 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10612 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10613 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10614 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10615 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10616 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10617 0x63, 0x61, 0x6e, 0x5f, 0x64, 0x65, 0x66, 0x61,
10618 0x75, 0x6c, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75,
10619 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10620 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10621 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10622 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10623 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10624 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x68, 0x61, 0x73,
10625 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
10626 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
10627 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10628 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10629 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10630 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10631 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10632 0x3d, 0x22, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
10633 0x65, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75,
10634 0x6c, 0x74, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65,
10635 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10636 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10637 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10638 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10639 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10640 0x6d, 0x65, 0x3d, 0x22, 0x75, 0x73, 0x65, 0x5f,
10641 0x75, 0x6e, 0x64, 0x65, 0x72, 0x6c, 0x69, 0x6e,
10642 0x65, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
10643 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10644 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10645 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10646 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
10647 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10648 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10649 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
10650 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10651 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10652 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10653 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10654 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
10655 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
10656 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10657 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10658 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10659 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10660 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10661 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
10662 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
10663 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10664 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10665 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10666 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10667 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10668 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
10669 0x6f, 0x6e, 0x22, 0x3e, 0x31, 0x3c, 0x2f, 0x70,
10670 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10671 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10672 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10673 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67,
10674 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10675 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
10676 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
10677 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10678 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
10679 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10680 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
10681 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
10682 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10683 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10684 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10685 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
10686 0x64, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
10687 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10688 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10689 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10690 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10691 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10692 0x66, 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72,
10693 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
10694 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
10695 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10696 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10697 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10698 0x3d, 0x22, 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74,
10699 0x79, 0x70, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64,
10700 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10701 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10702 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10703 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10704 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10705 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
10706 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10707 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10708 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10709 0x20, 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69,
10710 0x6e, 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10711 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68,
10712 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10713 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
10714 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10715 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10716 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63,
10717 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74,
10718 0x6b, 0x54, 0x72, 0x65, 0x65, 0x56, 0x69, 0x65,
10719 0x77, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74,
10720 0x72, 0x65, 0x65, 0x76, 0x69, 0x65, 0x77, 0x22,
10721 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10722 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
10723 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
10724 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76, 0x69,
10725 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e, 0x54,
10726 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f,
10727 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20,
10728 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10729 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10730 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10731 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f, 0x66,
10732 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x54, 0x72,
10733 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
10734 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
10735 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10736 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65,
10737 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10738 0x3d, 0x22, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
10739 0x73, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c,
10740 0x65, 0x22, 0x3e, 0x46, 0x61, 0x6c, 0x73, 0x65,
10741 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10742 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10743 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10744 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10745 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10746 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63,
10747 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0x3e, 0x30,
10748 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10749 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10750 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10751 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10752 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10753 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x67,
10754 0x72, 0x69, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x65,
10755 0x73, 0x22, 0x3e, 0x68, 0x6f, 0x72, 0x69, 0x7a,
10756 0x6f, 0x6e, 0x74, 0x61, 0x6c, 0x3c, 0x2f, 0x70,
10757 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10758 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10759 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68,
10760 0x69, 0x6c, 0x64, 0x20, 0x69, 0x6e, 0x74, 0x65,
10761 0x72, 0x6e, 0x61, 0x6c, 0x2d, 0x63, 0x68, 0x69,
10762 0x6c, 0x64, 0x3d, 0x22, 0x73, 0x65, 0x6c, 0x65,
10763 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x0a,
10764 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10765 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
10766 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
10767 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
10768 0x54, 0x72, 0x65, 0x65, 0x53, 0x65, 0x6c, 0x65,
10769 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x20, 0x69,
10770 0x64, 0x3d, 0x22, 0x74, 0x72, 0x65, 0x65, 0x76,
10771 0x69, 0x65, 0x77, 0x2d, 0x73, 0x65, 0x6c, 0x65,
10772 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2f, 0x3e,
10773 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10774 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
10775 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
10776 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10777 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
10778 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10779 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10780 0x3c, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20,
10781 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47,
10782 0x74, 0x6b, 0x54, 0x72, 0x65, 0x65, 0x56, 0x69,
10783 0x65, 0x77, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
10784 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x74, 0x72,
10785 0x65, 0x65, 0x76, 0x69, 0x65, 0x77, 0x63, 0x6f,
10786 0x6c, 0x75, 0x6d, 0x6e, 0x31, 0x22, 0x3e, 0x0a,
10787 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10788 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10789 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10790 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22,
10791 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x20, 0x74,
10792 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x61,
10793 0x62, 0x6c, 0x65, 0x3d, 0x22, 0x79, 0x65, 0x73,
10794 0x22, 0x3e, 0x4e, 0x61, 0x6d, 0x65, 0x3c, 0x2f,
10795 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10796 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10797 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10798 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69, 0x6c, 0x64,
10799 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10800 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10801 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f, 0x62, 0x6a,
10802 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73,
10803 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b, 0x43, 0x65,
10804 0x6c, 0x6c, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72,
10805 0x65, 0x72, 0x54, 0x65, 0x78, 0x74, 0x22, 0x20,
10806 0x69, 0x64, 0x3d, 0x22, 0x63, 0x65, 0x6c, 0x6c,
10807 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x65, 0x72,
10808 0x74, 0x65, 0x78, 0x74, 0x31, 0x22, 0x2f, 0x3e,
10809 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10810 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10811 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72,
10812 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e, 0x0a,
10813 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10814 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10815 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61, 0x74, 0x74,
10816 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x6e,
10817 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78,
10818 0x74, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x61, 0x74,
10819 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x3e,
10820 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10821 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10822 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x74, 0x74,
10823 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x3e,
10824 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10825 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10826 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64,
10827 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10828 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10829 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74,
10830 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10831 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f,
10832 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20,
10833 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10834 0x20, 0x3c, 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63,
10835 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10836 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x61,
10837 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a, 0x20,
10838 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10839 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70,
10840 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d,
10841 0x65, 0x3d, 0x22, 0x65, 0x78, 0x70, 0x61, 0x6e,
10842 0x64, 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c,
10843 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10844 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10845 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10846 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10847 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x66,
10848 0x69, 0x6c, 0x6c, 0x22, 0x3e, 0x54, 0x72, 0x75,
10849 0x65, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10850 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10851 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10852 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10853 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10854 0x22, 0x70, 0x61, 0x63, 0x6b, 0x5f, 0x74, 0x79,
10855 0x70, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c,
10856 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10857 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10858 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10859 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10860 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70,
10861 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
10862 0x3e, 0x31, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70,
10863 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20,
10864 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10865 0x3c, 0x2f, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
10866 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10867 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63, 0x68, 0x69,
10868 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10869 0x20, 0x20, 0x20, 0x20, 0x3c, 0x63, 0x68, 0x69,
10870 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10871 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x6f,
10872 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x63, 0x6c,
10873 0x61, 0x73, 0x73, 0x3d, 0x22, 0x47, 0x74, 0x6b,
10874 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x20, 0x69,
10875 0x64, 0x3d, 0x22, 0x6c, 0x61, 0x62, 0x65, 0x6c,
10876 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10877 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10878 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10879 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x76,
10880 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x3e,
10881 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10882 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10883 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10884 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10885 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10886 0x6d, 0x65, 0x3d, 0x22, 0x63, 0x61, 0x6e, 0x5f,
10887 0x66, 0x6f, 0x63, 0x75, 0x73, 0x22, 0x3e, 0x46,
10888 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10889 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10890 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10891 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10892 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10893 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x61, 0x6c, 0x69,
10894 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f, 0x70,
10895 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10896 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10897 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10898 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10899 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x79, 0x61, 0x6c,
10900 0x69, 0x67, 0x6e, 0x22, 0x3e, 0x30, 0x3c, 0x2f,
10901 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10902 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10903 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
10904 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
10905 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x78, 0x70,
10906 0x61, 0x64, 0x22, 0x3e, 0x34, 0x3c, 0x2f, 0x70,
10907 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e,
10908 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10909 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72,
10910 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e,
10911 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x6c, 0x61, 0x62,
10912 0x65, 0x6c, 0x22, 0x20, 0x74, 0x72, 0x61, 0x6e,
10913 0x73, 0x6c, 0x61, 0x74, 0x61, 0x62, 0x6c, 0x65,
10914 0x3d, 0x22, 0x79, 0x65, 0x73, 0x22, 0x3e, 0x41,
10915 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65,
10916 0x20, 0x76, 0x69, 0x72, 0x74, 0x75, 0x61, 0x6c,
10917 0x20, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
10918 0x73, 0x3c, 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65,
10919 0x72, 0x74, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20,
10920 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10921 0x20, 0x3c, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72,
10922 0x74, 0x79, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d,
10923 0x22, 0x65, 0x6c, 0x6c, 0x69, 0x70, 0x73, 0x69,
10924 0x7a, 0x65, 0x22, 0x3e, 0x65, 0x6e, 0x64, 0x3c,
10925 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10926 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10927 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10928 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10929 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x77,
10930 0x69, 0x64, 0x74, 0x68, 0x5f, 0x63, 0x68, 0x61,
10931 0x72, 0x73, 0x22, 0x3e, 0x32, 0x36, 0x3c, 0x2f,
10932 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10933 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10934 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x61,
10935 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
10936 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10937 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10938 0x20, 0x3c, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62,
10939 0x75, 0x74, 0x65, 0x20, 0x6e, 0x61, 0x6d, 0x65,
10940 0x3d, 0x22, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74,
10941 0x22, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3d,
10942 0x22, 0x62, 0x6f, 0x6c, 0x64, 0x22, 0x2f, 0x3e,
10943 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10944 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x61,
10945 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
10946 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10947 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x6f,
10948 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a, 0x20,
10949 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10950 0x20, 0x3c, 0x70, 0x61, 0x63, 0x6b, 0x69, 0x6e,
10951 0x67, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10952 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10953 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10954 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x65,
10955 0x78, 0x70, 0x61, 0x6e, 0x64, 0x22, 0x3e, 0x46,
10956 0x61, 0x6c, 0x73, 0x65, 0x3c, 0x2f, 0x70, 0x72,
10957 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10958 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10959 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10960 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10961 0x6d, 0x65, 0x3d, 0x22, 0x66, 0x69, 0x6c, 0x6c,
10962 0x22, 0x3e, 0x54, 0x72, 0x75, 0x65, 0x3c, 0x2f,
10963 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79,
10964 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10965 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70,
10966 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x20,
10967 0x6e, 0x61, 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x61,
10968 0x63, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22,
10969 0x3e, 0x65, 0x6e, 0x64, 0x3c, 0x2f, 0x70, 0x72,
10970 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x3e, 0x0a,
10971 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10972 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x72, 0x6f,
10973 0x70, 0x65, 0x72, 0x74, 0x79, 0x20, 0x6e, 0x61,
10974 0x6d, 0x65, 0x3d, 0x22, 0x70, 0x6f, 0x73, 0x69,
10975 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0x32, 0x3c,
10976 0x2f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74,
10977 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10978 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x70,
10979 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x3e, 0x0a,
10980 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
10981 0x3c, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x3e,
10982 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
10983 0x2f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e,
10984 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x63,
10985 0x68, 0x69, 0x6c, 0x64, 0x3e, 0x0a, 0x20, 0x20,
10986 0x20, 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f,
10987 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
10988 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
10989 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
10990 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74, 0x20,
10991 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
10992 0x3d, 0x22, 0x2d, 0x36, 0x22, 0x3e, 0x62, 0x75,
10993 0x74, 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x61, 0x6e,
10994 0x63, 0x65, 0x6c, 0x3c, 0x2f, 0x61, 0x63, 0x74,
10995 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67,
10996 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
10997 0x20, 0x20, 0x3c, 0x61, 0x63, 0x74, 0x69, 0x6f,
10998 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65, 0x74,
10999 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
11000 0x65, 0x3d, 0x22, 0x2d, 0x33, 0x22, 0x3e, 0x62,
11001 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x2d, 0x63, 0x6f,
11002 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x3c, 0x2f, 0x61,
11003 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x77, 0x69,
11004 0x64, 0x67, 0x65, 0x74, 0x3e, 0x0a, 0x20, 0x20,
11005 0x20, 0x20, 0x3c, 0x2f, 0x61, 0x63, 0x74, 0x69,
11006 0x6f, 0x6e, 0x2d, 0x77, 0x69, 0x64, 0x67, 0x65,
11007 0x74, 0x73, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f,
11008 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x3e, 0x0a,
11009 0x3c, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
11010 0x61, 0x63, 0x65, 0x3e, 0x0a, 0x00, 0x00, 0x28,
11011 0x75, 0x75, 0x61, 0x79, 0x29, 0x76, 0x69, 0x72,
11012 0x74, 0x2d, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72,
11013 0x2d, 0x75, 0x73, 0x62, 0x2e, 0x70, 0x6e, 0x67,
11014 0x27, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
11015 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a,
11016 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
11017 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18,
11018 0x08, 0x06, 0x00, 0x00, 0x00, 0xe0, 0x77, 0x3d,
11019 0xf8, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47,
11020 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
11021 0xbd, 0xa7, 0x93, 0x00, 0x00, 0x03, 0xdc, 0x49,
11022 0x44, 0x41, 0x54, 0x48, 0x89, 0x95, 0x96, 0x4d,
11023 0x68, 0x5c, 0x55, 0x14, 0xc7, 0x7f, 0xf7, 0xde,
11024 0x37, 0xb1, 0xb6, 0x26, 0x21, 0x35, 0x36, 0xa1,
11025 0x60, 0x5a, 0x5b, 0x0b, 0x29, 0xe2, 0xa6, 0xa5,
11026 0x54, 0x12, 0x93, 0x12, 0x14, 0x51, 0xa1, 0x0b,
11027 0x3f, 0xc0, 0x85, 0x96, 0x5a, 0x5d, 0xe9, 0xce,
11028 0x9d, 0xe0, 0xd2, 0x18, 0x2b, 0x82, 0x9b, 0x2e,
11029 0xdc, 0x29, 0x4d, 0x11, 0x41, 0x09, 0xba, 0x48,
11030 0x83, 0x88, 0x1f, 0xf5, 0xa3, 0x69, 0x2d, 0x71,
11031 0xa1, 0xa1, 0xb5, 0x4d, 0x32, 0xda, 0xa4, 0xc9,
11032 0x24, 0x4d, 0x32, 0x9d, 0x97, 0x74, 0x92, 0xce,
11033 0xbc, 0xfb, 0xe5, 0xe2, 0xcd, 0xbc, 0x74, 0x92,
11034 0x99, 0x40, 0x0f, 0x1c, 0x78, 0xef, 0xcf, 0xf9,
11035 0xfc, 0x9f, 0x7b, 0xcf, 0x7b, 0x62, 0x74, 0x74,
11036 0xb4, 0x45, 0xd6, 0xf9, 0x33, 0x78, 0xdf, 0x85,
11037 0x60, 0x0b, 0x80, 0xf7, 0x1e, 0x21, 0x04, 0xf7,
11038 0x22, 0x15, 0x3e, 0x9e, 0x02, 0xf0, 0x8b, 0xd3,
11039 0xf2, 0x78, 0xe0, 0x55, 0xf4, 0x45, 0x53, 0x43,
11040 0x4b, 0x4f, 0x43, 0x7d, 0xa3, 0x04, 0x41, 0xd9,
11041 0x46, 0x08, 0x81, 0xf7, 0x65, 0xc7, 0x18, 0x3b,
11042 0x3b, 0x3c, 0x81, 0x00, 0x9e, 0xef, 0x78, 0xb4,
11043 0x14, 0x34, 0xb6, 0x13, 0x22, 0xb6, 0x2b, 0x63,
11044 0xe0, 0xb7, 0x2c, 0xe7, 0x97, 0x9e, 0x5e, 0xc8,
11045 0x2e, 0x7c, 0x19, 0x44, 0x91, 0xee, 0xae, 0x7f,
11046 0xa0, 0x51, 0xae, 0xae, 0xae, 0x24, 0x46, 0xd5,
11047 0x64, 0x34, 0xbd, 0xc8, 0xc9, 0xd3, 0xbf, 0x01,
11048 0xd0, 0xb4, 0x4d, 0xf1, 0xf8, 0xde, 0xe6, 0x4d,
11049 0x3b, 0xaa, 0xdf, 0xd6, 0xa0, 0x32, 0x73, 0xd3,
11050 0x4f, 0x4a, 0x6b, 0x5d, 0x0a, 0x3c, 0xd6, 0x5a,
11051 0x9c, 0x73, 0x55, 0x75, 0x21, 0x5c, 0xa1, 0xb7,
11052 0xff, 0x02, 0xc6, 0x79, 0x8c, 0xf3, 0xf4, 0xf6,
11053 0x5f, 0x60, 0x21, 0x5c, 0xa9, 0x69, 0xef, 0x9c,
11054 0x03, 0xc0, 0x5a, 0x97, 0x92, 0xc6, 0x18, 0xbc,
11055 0x07, 0x6b, 0x6d, 0x55, 0x2d, 0x44, 0x9a, 0xde,
11056 0xfe, 0x4b, 0x84, 0x79, 0x8d, 0x94, 0x0a, 0x29,
11057 0x15, 0x61, 0x3e, 0xc6, 0x0a, 0x91, 0xae, 0xe9,
11058 0xe7, 0x3d, 0x18, 0x63, 0x08, 0xb4, 0x36, 0x00,
11059 0x49, 0xd6, 0xf5, 0xf2, 0xd9, 0xd0, 0x15, 0xc6,
11060 0xa6, 0x97, 0x90, 0x4a, 0x56, 0xe0, 0x63, 0xd3,
11061 0x4b, 0x7c, 0x3e, 0x74, 0x85, 0xc1, 0x8b, 0x93,
11062 0x15, 0xf8, 0xb7, 0xef, 0x3f, 0x97, 0x3c, 0x6b,
11063 0x6d, 0x08, 0x9c, 0xb5, 0xc4, 0x14, 0x55, 0x4f,
11064 0xf0, 0xce, 0x2b, 0x87, 0x79, 0xef, 0x44, 0x0f,
11065 0x00, 0x9d, 0x6f, 0x9d, 0x01, 0xe0, 0xfc, 0xa7,
11066 0xc7, 0x00, 0x58, 0x5d, 0x5d, 0xe5, 0xec, 0xa5,
11067 0xe9, 0x0a, 0xfb, 0xb5, 0x38, 0x1e, 0x67, 0x2d,
11068 0x81, 0xb1, 0x31, 0x45, 0xce, 0xd9, 0xaa, 0x09,
11069 0x72, 0xb9, 0x5b, 0xe4, 0x72, 0xb7, 0x00, 0x90,
11070 0x4a, 0x01, 0x30, 0x33, 0x13, 0x07, 0x0d, 0xf3,
11071 0x51, 0x82, 0x95, 0xa5, 0x1c, 0xc7, 0x7b, 0x30,
11072 0xd6, 0x10, 0x68, 0xad, 0x2b, 0x32, 0x5b, 0xe7,
11073 0x19, 0x38, 0x7f, 0x83, 0xe1, 0xab, 0x8b, 0x00,
11074 0x74, 0xb4, 0x37, 0xf3, 0x52, 0xe7, 0xc3, 0x28,
11075 0x29, 0x10, 0x52, 0x25, 0xb6, 0xe1, 0x8a, 0xa6,
11076 0xef, 0xab, 0xcb, 0x09, 0xb6, 0xb1, 0x03, 0xd0,
11077 0x5a, 0x13, 0x58, 0x63, 0x71, 0xce, 0x26, 0x99,
11078 0x07, 0x86, 0x67, 0x18, 0x1c, 0x99, 0x4b, 0x8c,
11079 0x06, 0x47, 0xe6, 0x40, 0x08, 0x5e, 0xee, 0xd8,
11080 0x99, 0x54, 0x9b, 0xcb, 0x17, 0xf8, 0x68, 0x60,
11081 0x9c, 0xb9, 0x30, 0xa2, 0xad, 0xb5, 0x91, 0x4f,
11082 0xde, 0xee, 0xa6, 0xb9, 0xe1, 0x7e, 0x00, 0xa6,
11083 0xa6, 0xae, 0x27, 0x9d, 0x58, 0x53, 0xa2, 0xc8,
11084 0x39, 0x97, 0x64, 0xbe, 0x38, 0xb6, 0x8c, 0x5c,
11085 0x57, 0xd5, 0x1f, 0xe3, 0x21, 0x2f, 0x1c, 0x6e,
11086 0x4d, 0xf0, 0x8f, 0xbf, 0x49, 0xc7, 0xc1, 0x5b,
11087 0x1a, 0x39, 0xf9, 0xe6, 0x13, 0xac, 0x86, 0xf3,
11088 0xfc, 0x97, 0xad, 0xa4, 0xd8, 0x39, 0x17, 0x53,
11089 0x64, 0xb4, 0xc1, 0x39, 0xbf, 0x36, 0x03, 0x29,
11090 0x11, 0xb2, 0xf2, 0xc4, 0x38, 0x14, 0xce, 0xd9,
11091 0x04, 0x9f, 0x0d, 0x23, 0xda, 0x5a, 0x1a, 0xe8,
11092 0x3b, 0x71, 0x88, 0xc2, 0xed, 0x79, 0xac, 0xdd,
11093 0x38, 0x3f, 0xe7, 0x3c, 0x46, 0x1b, 0xa4, 0x31,
11094 0x26, 0x6e, 0xc7, 0xc6, 0x5d, 0x3c, 0x73, 0xb0,
11095 0x0d, 0xa9, 0x54, 0x85, 0xde, 0x57, 0x97, 0x22,
11096 0x97, 0xd7, 0xc9, 0xfb, 0xae, 0xd6, 0x46, 0x3e,
11097 0x7c, 0xe3, 0x10, 0x2b, 0xe1, 0x4d, 0xa2, 0x48,
11098 0x27, 0xbe, 0x77, 0xab, 0x73, 0x76, 0xed, 0x1e,
11099 0xc4, 0x60, 0x5c, 0xc5, 0xd1, 0x83, 0x0f, 0xa1,
11100 0x94, 0xe2, 0xbb, 0x3f, 0xa7, 0xf1, 0xde, 0x53,
11101 0x17, 0x28, 0x16, 0x97, 0x0b, 0x9c, 0xfa, 0x7e,
11102 0x2e, 0x19, 0xe8, 0x07, 0xc7, 0x0f, 0xb0, 0x9c,
11103 0x9d, 0xc5, 0x18, 0xb3, 0xa1, 0xf2, 0xbb, 0x87,
11104 0xad, 0xb5, 0x21, 0xb0, 0xd6, 0x60, 0x4b, 0x73,
11105 0x00, 0xc8, 0x2e, 0xce, 0x73, 0xf4, 0xc0, 0x0e,
11106 0x5e, 0xeb, 0xd9, 0x0d, 0x08, 0xf2, 0x77, 0x22,
11107 0xfa, 0xbe, 0xbe, 0xc2, 0xe5, 0xa9, 0x30, 0x19,
11108 0x72, 0xb8, 0x30, 0xb3, 0x69, 0xf0, 0x38, 0x41,
11109 0x1c, 0x37, 0x30, 0xc6, 0x60, 0x8c, 0xad, 0xe0,
11110 0x31, 0x93, 0xc9, 0x90, 0xc9, 0x64, 0x4a, 0x23,
11111 0x91, 0xbc, 0xfb, 0xe2, 0x3e, 0x4e, 0x0d, 0x4d,
11112 0x32, 0x32, 0x91, 0x05, 0xa0, 0x58, 0x2c, 0x6e,
11113 0x1a, 0x1c, 0xc0, 0x98, 0x98, 0x22, 0xa9, 0xb5,
11114 0x26, 0x9e, 0x43, 0xf5, 0xa5, 0x65, 0x8c, 0xe1,
11115 0xc6, 0xe4, 0x75, 0x5a, 0x9b, 0x52, 0x08, 0xa5,
11116 0x10, 0x4a, 0xf1, 0xe3, 0xd5, 0x3b, 0x25, 0x9e,
11117 0x6b, 0xab, 0x31, 0x26, 0xbe, 0x07, 0xc6, 0x98,
11118 0xd2, 0x82, 0xaa, 0xbe, 0x2a, 0x00, 0x7e, 0x1a,
11119 0xd7, 0xfc, 0xfe, 0xef, 0x6d, 0x64, 0xe9, 0x14,
11120 0x9d, 0x9b, 0xd0, 0x58, 0x07, 0x3d, 0xfb, 0x52,
11121 0x9b, 0x50, 0x54, 0x1a, 0x72, 0x4c, 0x91, 0xa9,
11122 0xb9, 0x2a, 0x00, 0xfe, 0xba, 0x29, 0x10, 0xeb,
11123 0x56, 0xc2, 0xdf, 0xf3, 0x82, 0x23, 0x7b, 0x6b,
11124 0xfb, 0x94, 0xe3, 0x06, 0xe5, 0x56, 0x36, 0xeb,
11125 0x20, 0x15, 0xa4, 0x58, 0x77, 0x35, 0x08, 0x54,
11126 0x80, 0xb5, 0xba, 0xa6, 0x4f, 0x99, 0x7a, 0x19,
11127 0x27, 0x88, 0x92, 0x75, 0x51, 0x4d, 0xbb, 0xda,
11128 0xb7, 0x23, 0x4a, 0x17, 0xb0, 0xac, 0x5d, 0xfb,
11129 0xb7, 0x6f, 0xea, 0xa3, 0x75, 0x14, 0x77, 0x60,
11130 0xb5, 0xd1, 0xc5, 0x62, 0x31, 0xe5, 0x9c, 0xaf,
11131 0xf9, 0xc9, 0x3c, 0xb2, 0x47, 0x22, 0xe4, 0x0e,
11132 0x7e, 0xfd, 0x27, 0xde, 0xaa, 0xdd, 0xfb, 0x1f,
11133 0xa4, 0x7b, 0xb7, 0x27, 0x33, 0x5d, 0xbd, 0x6b,
11134 0x21, 0x04, 0xc5, 0x62, 0x84, 0xd5, 0x2e, 0x0a,
11135 0xbc, 0xe7, 0xdc, 0x78, 0x7a, 0xac, 0xe7, 0x91,
11136 0x5d, 0x7b, 0x02, 0x29, 0x25, 0x52, 0xca, 0x52,
11137 0xa2, 0xb5, 0x1f, 0x80, 0xa5, 0xdc, 0x22, 0xcf,
11138 0xb6, 0xef, 0xe4, 0xd5, 0xce, 0xc7, 0x00, 0xc8,
11139 0x66, 0xb3, 0xcc, 0xce, 0x66, 0xd8, 0xba, 0x35,
11140 0x5e, 0x70, 0xa5, 0x0f, 0x3d, 0x42, 0x88, 0xe4,
11141 0x14, 0x8d, 0xa7, 0xaf, 0x19, 0xef, 0xed, 0xcf,
11142 0x41, 0xb1, 0x60, 0x8e, 0xa5, 0xd3, 0xe9, 0xd3,
11143 0x63, 0x63, 0xd7, 0x9e, 0x02, 0x82, 0x9a, 0xa4,
11144 0xde, 0x9b, 0x18, 0xa5, 0xd4, 0x0f, 0xde, 0xca,
11145 0xd7, 0xff, 0x07, 0x57, 0xb2, 0x08, 0x89, 0x73,
11146 0xd4, 0x4a, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x49,
11147 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82, 0x00,
11148 0x00, 0x28, 0x75, 0x75, 0x61, 0x79, 0x29, 0x33,
11149 0x32, 0x78, 0x33, 0x32, 0x2f, 0x00, 0x00, 0x00,
11150 0x01, 0x00, 0x00, 0x00, 0x31, 0x36, 0x78, 0x31,
11151 0x36, 0x2f, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00
8 #ifdef _MSC_VER
9 static const SECTION union { const guint8 data[93016]; const double alignment; void * const ptr;} virt_viewer_resource_data = { {
10 0107, 0126, 0141, 0162, 0151, 0141, 0156, 0164, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000,
11 0030, 0000, 0000, 0000, 0060, 0003, 0000, 0000, 0000, 0000, 0000, 0050, 0034, 0000, 0000, 0000,
12 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0000, 0002, 0000, 0000, 0000, 0003, 0000, 0000, 0000,
13 0004, 0000, 0000, 0000, 0004, 0000, 0000, 0000, 0004, 0000, 0000, 0000, 0004, 0000, 0000, 0000,
14 0006, 0000, 0000, 0000, 0006, 0000, 0000, 0000, 0010, 0000, 0000, 0000, 0012, 0000, 0000, 0000,
15 0014, 0000, 0000, 0000, 0017, 0000, 0000, 0000, 0020, 0000, 0000, 0000, 0020, 0000, 0000, 0000,
16 0023, 0000, 0000, 0000, 0024, 0000, 0000, 0000, 0024, 0000, 0000, 0000, 0025, 0000, 0000, 0000,
17 0030, 0000, 0000, 0000, 0031, 0000, 0000, 0000, 0031, 0000, 0000, 0000, 0031, 0000, 0000, 0000,
18 0031, 0000, 0000, 0000, 0031, 0000, 0000, 0000, 0031, 0000, 0000, 0000, 0034, 0000, 0000, 0000,
19 0055, 0177, 0036, 0164, 0032, 0000, 0000, 0000, 0060, 0003, 0000, 0000, 0017, 0000, 0166, 0000,
20 0100, 0003, 0000, 0000, 0214, 0011, 0000, 0000, 0375, 0045, 0060, 0152, 0010, 0000, 0000, 0000,
21 0214, 0011, 0000, 0000, 0017, 0000, 0166, 0000, 0240, 0011, 0000, 0000, 0161, 0120, 0000, 0000,
22 0026, 0042, 0075, 0252, 0025, 0000, 0000, 0000, 0161, 0120, 0000, 0000, 0023, 0000, 0166, 0000,
23 0210, 0120, 0000, 0000, 0235, 0154, 0000, 0000, 0007, 0326, 0172, 0351, 0021, 0000, 0000, 0000,
24 0235, 0154, 0000, 0000, 0015, 0000, 0114, 0000, 0254, 0154, 0000, 0000, 0260, 0154, 0000, 0000,
25 0213, 0142, 0373, 0064, 0014, 0000, 0000, 0000, 0260, 0154, 0000, 0000, 0017, 0000, 0166, 0000,
26 0300, 0154, 0000, 0000, 0226, 0160, 0000, 0000, 0117, 0203, 0375, 0362, 0016, 0000, 0000, 0000,
27 0226, 0160, 0000, 0000, 0017, 0000, 0166, 0000, 0250, 0160, 0000, 0000, 0125, 0165, 0000, 0000,
28 0025, 0351, 0023, 0066, 0025, 0000, 0000, 0000, 0125, 0165, 0000, 0000, 0030, 0000, 0166, 0000,
29 0160, 0165, 0000, 0000, 0213, 0220, 0000, 0000, 0161, 0207, 0334, 0161, 0031, 0000, 0000, 0000,
30 0213, 0220, 0000, 0000, 0017, 0000, 0166, 0000, 0240, 0220, 0000, 0000, 0106, 0223, 0000, 0000,
31 0146, 0236, 0302, 0215, 0017, 0000, 0000, 0000, 0106, 0223, 0000, 0000, 0010, 0000, 0114, 0000,
32 0120, 0223, 0000, 0000, 0124, 0223, 0000, 0000, 0166, 0164, 0326, 0242, 0025, 0000, 0000, 0000,
33 0124, 0223, 0000, 0000, 0032, 0000, 0166, 0000, 0160, 0223, 0000, 0000, 0240, 0256, 0000, 0000,
34 0177, 0162, 0156, 0157, 0025, 0000, 0000, 0000, 0240, 0256, 0000, 0000, 0034, 0000, 0166, 0000,
35 0300, 0256, 0000, 0000, 0344, 0303, 0000, 0000, 0027, 0123, 0016, 0213, 0025, 0000, 0000, 0000,
36 0344, 0303, 0000, 0000, 0016, 0000, 0166, 0000, 0370, 0303, 0000, 0000, 0335, 0022, 0001, 0000,
37 0264, 0220, 0356, 0005, 0017, 0000, 0000, 0000, 0335, 0022, 0001, 0000, 0006, 0000, 0114, 0000,
38 0344, 0022, 0001, 0000, 0350, 0022, 0001, 0000, 0104, 0176, 0005, 0013, 0017, 0000, 0000, 0000,
39 0350, 0022, 0001, 0000, 0006, 0000, 0114, 0000, 0360, 0022, 0001, 0000, 0364, 0022, 0001, 0000,
40 0370, 0301, 0022, 0006, 0017, 0000, 0000, 0000, 0364, 0022, 0001, 0000, 0006, 0000, 0114, 0000,
41 0374, 0022, 0001, 0000, 0004, 0023, 0001, 0000, 0205, 0137, 0364, 0213, 0024, 0000, 0000, 0000,
42 0004, 0023, 0001, 0000, 0006, 0000, 0114, 0000, 0014, 0023, 0001, 0000, 0044, 0023, 0001, 0000,
43 0137, 0214, 0265, 0060, 0025, 0000, 0000, 0000, 0044, 0023, 0001, 0000, 0024, 0000, 0166, 0000,
44 0070, 0023, 0001, 0000, 0353, 0037, 0001, 0000, 0113, 0120, 0220, 0013, 0023, 0000, 0000, 0000,
45 0353, 0037, 0001, 0000, 0004, 0000, 0114, 0000, 0360, 0037, 0001, 0000, 0364, 0037, 0001, 0000,
46 0033, 0376, 0107, 0355, 0015, 0000, 0000, 0000, 0364, 0037, 0001, 0000, 0017, 0000, 0166, 0000,
47 0010, 0040, 0001, 0000, 0006, 0052, 0001, 0000, 0324, 0265, 0002, 0000, 0377, 0377, 0377, 0377,
48 0006, 0052, 0001, 0000, 0001, 0000, 0114, 0000, 0010, 0052, 0001, 0000, 0014, 0052, 0001, 0000,
49 0032, 0017, 0217, 0145, 0003, 0000, 0000, 0000, 0014, 0052, 0001, 0000, 0014, 0000, 0114, 0000,
50 0030, 0052, 0001, 0000, 0040, 0052, 0001, 0000, 0107, 0360, 0170, 0267, 0024, 0000, 0000, 0000,
51 0040, 0052, 0001, 0000, 0003, 0000, 0114, 0000, 0044, 0052, 0001, 0000, 0110, 0052, 0001, 0000,
52 0223, 0377, 0356, 0077, 0025, 0000, 0000, 0000, 0110, 0052, 0001, 0000, 0043, 0000, 0166, 0000,
53 0160, 0052, 0001, 0000, 0365, 0070, 0001, 0000, 0237, 0256, 0226, 0311, 0025, 0000, 0000, 0000,
54 0365, 0070, 0001, 0000, 0031, 0000, 0166, 0000, 0020, 0071, 0001, 0000, 0226, 0122, 0001, 0000,
55 0104, 0322, 0354, 0066, 0025, 0000, 0000, 0000, 0226, 0122, 0001, 0000, 0034, 0000, 0166, 0000,
56 0270, 0122, 0001, 0000, 0365, 0146, 0001, 0000, 0132, 0306, 0341, 0003, 0017, 0000, 0000, 0000,
57 0365, 0146, 0001, 0000, 0006, 0000, 0114, 0000, 0374, 0146, 0001, 0000, 0000, 0147, 0001, 0000,
58 0226, 0275, 0103, 0010, 0017, 0000, 0000, 0000, 0000, 0147, 0001, 0000, 0006, 0000, 0114, 0000,
59 0010, 0147, 0001, 0000, 0014, 0147, 0001, 0000, 0306, 0142, 0250, 0021, 0016, 0000, 0000, 0000,
60 0014, 0147, 0001, 0000, 0023, 0000, 0166, 0000, 0040, 0147, 0001, 0000, 0127, 0153, 0001, 0000,
61 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0056, 0160, 0156, 0147, 0000,
62 0074, 0006, 0000, 0000, 0000, 0000, 0000, 0000, 0211, 0120, 0116, 0107, 0015, 0012, 0032, 0012,
63 0000, 0000, 0000, 0015, 0111, 0110, 0104, 0122, 0000, 0000, 0000, 0040, 0000, 0000, 0000, 0040,
64 0010, 0006, 0000, 0000, 0000, 0163, 0172, 0172, 0364, 0000, 0000, 0000, 0004, 0163, 0102, 0111,
65 0124, 0010, 0010, 0010, 0010, 0174, 0010, 0144, 0210, 0000, 0000, 0000, 0011, 0160, 0110, 0131,
66 0163, 0000, 0000, 0015, 0327, 0000, 0000, 0015, 0327, 0001, 0102, 0050, 0233, 0170, 0000, 0000,
67 0000, 0031, 0164, 0105, 0130, 0164, 0123, 0157, 0146, 0164, 0167, 0141, 0162, 0145, 0000, 0167,
68 0167, 0167, 0056, 0151, 0156, 0153, 0163, 0143, 0141, 0160, 0145, 0056, 0157, 0162, 0147, 0233,
69 0356, 0074, 0032, 0000, 0000, 0005, 0271, 0111, 0104, 0101, 0124, 0130, 0205, 0305, 0127, 0113,
70 0217, 0143, 0107, 0025, 0376, 0252, 0352, 0126, 0325, 0165, 0217, 0355, 0356, 0166, 0067, 0031,
71 0046, 0055, 0002, 0323, 0363, 0040, 0311, 0164, 0303, 0202, 0044, 0150, 0104, 0210, 0202, 0202,
72 0260, 0146, 0021, 0024, 0145, 0001, 0254, 0130, 0347, 0057, 0144, 0021, 0261, 0103, 0110, 0110,
73 0331, 0005, 0211, 0005, 0012, 0154, 0020, 0077, 0041, 0336, 0041, 0304, 0043, 0104, 0114, 0223,
74 0231, 0106, 0060, 0121, 0200, 0151, 0322, 0170, 0332, 0111, 0077, 0374, 0152, 0277, 0156, 0125,
75 0235, 0303, 0302, 0367, 0072, 0276, 0266, 0323, 0103, 0106, 0043, 0345, 0223, 0216, 0353, 0324,
76 0255, 0362, 0071, 0337, 0075, 0347, 0324, 0343, 0212, 0152, 0265, 0212, 0317, 0022, 0362, 0063,
77 0365, 0016, 0040, 0312, 0224, 0033, 0067, 0156, 0074, 0255, 0265, 0176, 0223, 0231, 0277, 0160,
78 0277, 0077, 0061, 0063, 0210, 0010, 0104, 0064, 0321, 0231, 0011, 0041, 0320, 0374, 0030, 0023,
79 0230, 0306, 0317, 0204, 0020, 0175, 0347, 0334, 0117, 0167, 0166, 0166, 0136, 0237, 0043, 0240,
80 0265, 0176, 0155, 0153, 0373, 0332, 0265, 0315, 0315, 0057, 0235, 0355, 0174, 0352, 0067, 0123,
81 0071, 0067, 0312, 0343, 0076, 0317, 0217, 0015, 0006, 0303, 0362, 0233, 0277, 0370, 0325, 0217,
82 0267, 0267, 0267, 0177, 0276, 0273, 0273, 0333, 0313, 0021, 0000, 0260, 0261, 0266, 0136, 0301,
83 0157, 0177, 0267, 0217, 0137, 0376, 0372, 0046, 0254, 0225, 0020, 0020, 0000, 0000, 0041, 0004,
84 0300, 0014, 0244, 0255, 0020, 0142, 0242, 0063, 0013, 0340, 0343, 0356, 0170, 0054, 0165, 0050,
85 0000, 0370, 0100, 0370, 0316, 0267, 0256, 0342, 0373, 0337, 0273, 0206, 0245, 0245, 0163, 0210,
86 0242, 0050, 0264, 0333, 0355, 0012, 0200, 0071, 0002, 0105, 0035, 0151, 0374, 0375, 0037, 0037,
87 0341, 0261, 0253, 0021, 0114, 0054, 0220, 0207, 0230, 0151, 0147, 0365, 0174, 0214, 0062, 0264,
88 0072, 0003, 0374, 0345, 0146, 0035, 0327, 0236, 0020, 0330, 0332, 0336, 0202, 0326, 0332, 0053,
89 0245, 0112, 0331, 0370, 0204, 0000, 0063, 0027, 0165, 0024, 0341, 0344, 0244, 0217, 0140, 0074,
90 0206, 0243, 0005, 0266, 0037, 0000, 0041, 0020, 0302, 0060, 0301, 0023, 0117, 0136, 0205, 0020,
91 0004, 0143, 0015, 0173, 0357, 0313, 0013, 0010, 0320, 0122, 0244, 0043, 0064, 0133, 0043, 0250,
92 0165, 0006, 0350, 0341, 0020, 0040, 0026, 0160, 0111, 0300, 0173, 0167, 0336, 0307, 0346, 0346,
93 0045, 0130, 0143, 0004, 0021, 0315, 0107, 0200, 0210, 0013, 0052, 0212, 0340, 0174, 0000, 0023,
94 0057, 0266, 0366, 0051, 0320, 0353, 0217, 0160, 0334, 0352, 0342, 0250, 0331, 0305, 0346, 0271,
95 0313, 0270, 0164, 0145, 0023, 0132, 0107, 0260, 0205, 0130, 0070, 0347, 0362, 0021, 0270, 0176,
96 0375, 0272, 0024, 0102, 0030, 0245, 0044, 0234, 0047, 0060, 0055, 0312, 0355, 0375, 0321, 0355,
97 0015, 0321, 0354, 0364, 0321, 0352, 0364, 0220, 0070, 0237, 0076, 0025, 0030, 0271, 0200, 0173,
98 0365, 0173, 0130, 0131, 0256, 0140, 0251, 0020, 0113, 0146, 0316, 0023, 0250, 0124, 0052, 0105,
99 0041, 0204, 0143, 0206, 0361, 0201, 0001, 0372, 0164, 0373, 0123, 0267, 0067, 0300, 0301, 0141,
100 0033, 0243, 0044, 0163, 0252, 0240, 0042, 0065, 0031, 0167, 0216, 0161, 0376, 0363, 0347, 0141,
101 0264, 0101, 0034, 0027, 0364, 0134, 0012, 0006, 0203, 0101, 0271, 0124, 0052, 0006, 0146, 0206,
102 0017, 0014, 0376, 0077, 0363, 0077, 0112, 0002, 0216, 0132, 0135, 0364, 0007, 0011, 0000, 0011,
103 0245, 0315, 0302, 0171, 0311, 0200, 0161, 0120, 0077, 0300, 0352, 0352, 0032, 0342, 0102, 0034,
104 0021, 0321, 0134, 0021, 0226, 0264, 0061, 0036, 0314, 0160, 0201, 0300, 0244, 0026, 0032, 0312,
105 0100, 0114, 0150, 0165, 0006, 0070, 0035, 0214, 0000, 0010, 0050, 0155, 0317, 0234, 0357, 0116,
106 0031, 0217, 0234, 0377, 0034, 0214, 0261, 0050, 0304, 0261, 0024, 0102, 0254, 0346, 0010, 0204,
107 0020, 0312, 0072, 0322, 0114, 0140, 0044, 0001, 0020, 0374, 0311, 0051, 0350, 0015, 0023, 0364,
108 0372, 0011, 0210, 0001, 0025, 0235, 0355, 0170, 0102, 0200, 0031, 0316, 0007, 0104, 0021, 0301,
109 0306, 0061, 0040, 0261, 0226, 0043, 0300, 0314, 0145, 0143, 0015, 0100, 0014, 0227, 0020, 0024,
110 0353, 0071, 0043, 0236, 0010, 0375, 0241, 0103, 0010, 0014, 0021, 0151, 0234, 0035, 0243, 0074,
111 0110, 0006, 0164, 0073, 0011, 0254, 0061, 0210, 0155, 0014, 0016, 0134, 0311, 0021, 0040, 0242,
112 0222, 0061, 0106, 0022, 0023, 0034, 0001, 0231, 0171, 0146, 0040, 0060, 0303, 0007, 0102, 0010,
113 0000, 0244, 0206, 0172, 0200, 0363, 0223, 0164, 0202, 0166, 0173, 0210, 0312, 0132, 0001, 0161,
114 0154, 0301, 0314, 0313, 0071, 0002, 0041, 0204, 0262, 0265, 0106, 0365, 0373, 0001, 0044, 0005,
115 0034, 0107, 0351, 0111, 0226, 0356, 0007, 0122, 0075, 0220, 0343, 0014, 0043, 0035, 0320, 0156,
116 0047, 0240, 0300, 0260, 0326, 0042, 0004, 0237, 0047, 0340, 0275, 0057, 0131, 0143, 0125, 0277,
117 0067, 0002, 0105, 0012, 0054, 0307, 0265, 0371, 0260, 0056, 0013, 0034, 0071, 0264, 0132, 0103,
118 0004, 0012, 0260, 0261, 0105, 0010, 0124, 0314, 0021, 0040, 0242, 0262, 0215, 0255, 0356, 0365,
119 0034, 0240, 0344, 0324, 0211, 0366, 0160, 0020, 0331, 0010, 0207, 0307, 0103, 0204, 0020, 0120,
120 0134, 0212, 0341, 0234, 0313, 0023, 0020, 0102, 0124, 0254, 0261, 0302, 0306, 0012, 0127, 0127,
121 0064, 0160, 0272, 0350, 0044, 0172, 0360, 0355, 0231, 0015, 0160, 0371, 0162, 0011, 0104, 0001,
122 0326, 0032, 0204, 0020, 0226, 0162, 0004, 0000, 0256, 0250, 0110, 0241, 0130, 0322, 0170, 0355,
123 0325, 0257, 0334, 0327, 0040, 0005, 0302, 0150, 0340, 0040, 0204, 0204, 0220, 0002, 0046, 0236,
124 0076, 0325, 0077, 0231, 0050, 0023, 0103, 0051, 0005, 0146, 0216, 0163, 0004, 0222, 0304, 0035,
125 0355, 0357, 0357, 0273, 0107, 0037, 0375, 0272, 0126, 0162, 0176, 0011, 0056, 0304, 0352, 0375,
126 0247, 0314, 0102, 0051, 0211, 0306, 0101, 0003, 0102, 0210, 0136, 0216, 0000, 0063, 0377, 0354,
127 0017, 0277, 0377, 0343, 0313, 0157, 0377, 0351, 0355, 0015, 0153, 0143, 0146, 0060, 0230, 0010,
128 0104, 0074, 0163, 0357, 0143, 0020, 0223, 0142, 0042, 0075, 0073, 0106, 0114, 0014, 0346, 0321,
129 0270, 0237, 0277, 0027, 0146, 0160, 0316, 0241, 0333, 0355, 0222, 0020, 0342, 0325, 0034, 0201,
130 0335, 0335, 0335, 0273, 0000, 0056, 0135, 0274, 0170, 0361, 0021, 0051, 0173, 0022, 0000, 0274,
131 0367, 0242, 0323, 0351, 0210, 0044, 0111, 0244, 0122, 0112, 0016, 0106, 0203, 0037, 0132, 0153,
132 0176, 0000, 0340, 0212, 0216, 0246, 0103, 0076, 0006, 0203, 0305, 0150, 0230, 0034, 0172, 0012,
133 0357, 0234, 0266, 0117, 0177, 0102, 0104, 0037, 0112, 0051, 0131, 0112, 0311, 0112, 0251, 0111,
134 0313, 0314, 0115, 0042, 0232, 0024, 0231, 0230, 0375, 0056, 0250, 0325, 0152, 0022, 0343, 0025,
135 0250, 0063, 0371, 0356, 0113, 0057, 0276, 0265, 0274, 0134, 0176, 0362, 0251, 0247, 0237, 0132,
136 0352, 0367, 0173, 0270, 0365, 0327, 0333, 0163, 0004, 0264, 0326, 0170, 0366, 0271, 0157, 0340,
137 0237, 0357, 0377, 0053, 0271, 0163, 0347, 0075, 0137, 0077, 0270, 0367, 0342, 0316, 0073, 0073,
138 0177, 0003, 0340, 0246, 0304, 0003, 0240, 0152, 0265, 0072, 0011, 0313, 0344, 0125, 0152, 0265,
139 0232, 0000, 0240, 0000, 0230, 0124, 0054, 0200, 0370, 0231, 0147, 0276, 0366, 0174, 0261, 0124,
140 0332, 0172, 0341, 0333, 0057, 0304, 0245, 0122, 0021, 0315, 0146, 0023, 0217, 0077, 0376, 0345,
141 0005, 0371, 0125, 0130, 0137, 0137, 0107, 0251, 0134, 0066, 0266, 0140, 0165, 0342, 0334, 0217,
142 0000, 0274, 0002, 0140, 0064, 0043, 0111, 0255, 0126, 0163, 0325, 0152, 0225, 0162, 0004, 0322,
143 0267, 0066, 0000, 0342, 0151, 0251, 0327, 0033, 0307, 0027, 0066, 0066, 0144, 0343, 0303, 0006,
144 0254, 0375, 0042, 0266, 0267, 0276, 0212, 0347, 0276, 0371, 0074, 0126, 0226, 0127, 0020, 0307,
145 0005, 0170, 0357, 0321, 0156, 0267, 0320, 0154, 0065, 0321, 0150, 0034, 0340, 0337, 0167, 0367,
146 0360, 0121, 0343, 0050, 0064, 0217, 0233, 0165, 0000, 0153, 0000, 0072, 0151, 0044, 0125, 0352,
147 0103, 0000, 0240, 0132, 0255, 0306, 0325, 0152, 0225, 0147, 0223, 0051, 0122, 0311, 0322, 0040,
148 0353, 0365, 0372, 0321, 0372, 0335, 0365, 0067, 0210, 0350, 0225, 0375, 0307, 0076, 0120, 0267,
149 0167, 0167, 0265, 0265, 0126, 0010, 0210, 0364, 0013, 0200, 0041, 0205, 0204, 0363, 0036, 0275,
150 0323, 0236, 0377, 0317, 0336, 0007, 0174, 0164, 0170, 0370, 0356, 0355, 0133, 0267, 0337, 0302,
151 0370, 0146, 0251, 0246, 0354, 0315, 0355, 0160, 0323, 0004, 0050, 0315, 0123, 0066, 0071, 0043,
152 0204, 0133, 0357, 0336, 0372, 0315, 0336, 0335, 0275, 0077, 0137, 0330, 0270, 0360, 0354, 0271,
153 0163, 0113, 0127, 0126, 0127, 0127, 0056, 0305, 0161, 0341, 0074, 0063, 0027, 0205, 0020, 0316,
154 0073, 0177, 0322, 0156, 0267, 0376, 0333, 0156, 0167, 0367, 0116, 0216, 0117, 0166, 0033, 0215,
155 0306, 0115, 0000, 0307, 0000, 0206, 0013, 0144, 0004, 0040, 0144, 0165, 0220, 0053, 0302, 0264,
156 0016, 0262, 0002, 0314, 0352, 0300, 0340, 0343, 0202, 0064, 0000, 0012, 0131, 0172, 0224, 0122,
157 0205, 0020, 0202, 0117, 0211, 0217, 0000, 0364, 0323, 0326, 0003, 0110, 0322, 0347, 0111, 0352,
158 0070, 0353, 0207, 0351, 0042, 0234, 0133, 0005, 0123, 0104, 0062, 0062, 0131, 0010, 0243, 0051,
159 0175, 0072, 0254, 0131, 0364, 0062, 0011, 0151, 0353, 0123, 0075, 0140, 0274, 0075, 0346, 0252,
160 0377, 0114, 0002, 0147, 0020, 0302, 0202, 0066, 0003, 0317, 0266, 0213, 0034, 0316, 0342, 0177,
161 0026, 0117, 0017, 0123, 0227, 0124, 0115, 0151, 0000, 0000, 0000, 0000, 0111, 0105, 0116, 0104,
162 0256, 0102, 0140, 0202, 0000, 0000, 0050, 0165, 0165, 0141, 0171, 0051, 0166, 0151, 0162, 0164,
163 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0056, 0160, 0156, 0147, 0000, 0000, 0000, 0000, 0000,
164 0301, 0106, 0000, 0000, 0000, 0000, 0000, 0000, 0211, 0120, 0116, 0107, 0015, 0012, 0032, 0012,
165 0000, 0000, 0000, 0015, 0111, 0110, 0104, 0122, 0000, 0000, 0001, 0000, 0000, 0000, 0001, 0000,
166 0010, 0006, 0000, 0000, 0000, 0134, 0162, 0250, 0146, 0000, 0000, 0000, 0001, 0163, 0122, 0107,
167 0102, 0000, 0256, 0316, 0034, 0351, 0000, 0000, 0000, 0006, 0142, 0113, 0107, 0104, 0000, 0377,
168 0000, 0377, 0000, 0377, 0240, 0275, 0247, 0223, 0000, 0000, 0000, 0011, 0160, 0110, 0131, 0163,
169 0000, 0000, 0015, 0327, 0000, 0000, 0015, 0327, 0001, 0102, 0050, 0233, 0170, 0000, 0000, 0000,
170 0007, 0164, 0111, 0115, 0105, 0007, 0334, 0002, 0010, 0017, 0047, 0033, 0115, 0240, 0061, 0317,
171 0000, 0000, 0040, 0000, 0111, 0104, 0101, 0124, 0170, 0332, 0355, 0275, 0151, 0260, 0044, 0327,
172 0165, 0036, 0370, 0335, 0334, 0253, 0352, 0275, 0172, 0113, 0167, 0003, 0375, 0136, 0057, 0150,
173 0240, 0321, 0100, 0243, 0321, 0215, 0205, 0020, 0210, 0205, 0013, 0104, 0152, 0054, 0153, 0154,
174 0113, 0363, 0143, 0014, 0113, 0362, 0130, 0213, 0055, 0123, 0061, 0041, 0206, 0250, 0300, 0110,
175 0266, 0047, 0254, 0011, 0273, 0303, 0341, 0030, 0151, 0350, 0241, 0100, 0111, 0266, 0065, 0243,
176 0030, 0213, 0124, 0070, 0142, 0306, 0066, 0155, 0053, 0034, 0041, 0056, 0141, 0217, 0055, 0110,
177 0244, 0010, 0112, 0064, 0111, 0000, 0015, 0064, 0261, 0064, 0166, 0364, 0372, 0266, 0332, 0267,
178 0314, 0274, 0327, 0077, 0262, 0262, 0052, 0227, 0233, 0173, 0126, 0275, 0252, 0172, 0171, 0042,
179 0052, 0136, 0275, 0252, 0314, 0254, 0134, 0356, 0367, 0335, 0163, 0316, 0075, 0013, 0120, 0110,
180 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041,
181 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205,
182 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024,
183 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122,
184 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110,
185 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041,
186 0205, 0024, 0122, 0110, 0041, 0205, 0114, 0125, 0310, 0054, 0236, 0324, 0305, 0213, 0027, 0225,
187 0225, 0225, 0225, 0163, 0224, 0322, 0065, 0102, 0310, 0252, 0040, 0010, 0122, 0361, 0250, 0242,
188 0305, 0064, 0315, 0211, 0156, 0077, 0353, 0373, 0314, 0372, 0371, 0031, 0206, 0141, 0210, 0242,
189 0270, 0003, 0140, 0247, 0124, 0052, 0275, 0166, 0361, 0342, 0105, 0243, 0040, 0200, 0241, 0074,
190 0373, 0354, 0263, 0253, 0204, 0220, 0117, 0061, 0306, 0176, 0014, 0300, 0043, 0000, 0112, 0005,
191 0244, 0343, 0011, 0143, 0054, 0364, 0177, 0357, 0147, 0121, 0337, 0307, 0075, 0156, 0232, 0175,
192 0362, 0072, 0356, 0002, 0134, 0123, 0215, 0061, 0366, 0237, 0030, 0143, 0377, 0162, 0151, 0151,
193 0351, 0313, 0027, 0057, 0136, 0244, 0007, 0222, 0000, 0056, 0136, 0274, 0050, 0255, 0254, 0254,
194 0374, 0003, 0000, 0317, 0000, 0130, 0052, 0340, 0234, 0036, 0374, 0005, 0040, 0347, 0366, 0232,
195 0276, 0117, 0010, 0371, 0364, 0147, 0077, 0373, 0331, 0077, 0232, 0366, 0370, 0021, 0367, 0163,
196 0360, 0376, 0372, 0257, 0377, 0372, 0112, 0245, 0122, 0371, 0032, 0200, 0237, 0006, 0240, 0024,
197 0160, 0076, 0070, 0263, 0176, 0036, 0347, 0267, 0100, 0327, 0164, 0204, 0061, 0366, 0123, 0117,
198 0076, 0371, 0244, 0364, 0315, 0157, 0176, 0363, 0217, 0016, 0004, 0001, 0374, 0326, 0157, 0375,
199 0226, 0052, 0010, 0302, 0227, 0001, 0074, 0125, 0300, 0071, 0137, 0360, 0317, 0073, 0040, 0017,
200 0350, 0065, 0021, 0306, 0330, 0123, 0117, 0076, 0371, 0244, 0362, 0374, 0363, 0317, 0377, 0227,
201 0205, 0067, 0001, 0176, 0343, 0067, 0176, 0343, 0263, 0204, 0220, 0277, 0123, 0300, 0171, 0272,
202 0052, 0377, 0254, 0001, 0122, 0121, 0224, 0003, 0145, 0046, 0120, 0112, 0141, 0030, 0106, 0324,
203 0157, 0375, 0217, 0237, 0373, 0334, 0347, 0376, 0375, 0302, 0022, 0300, 0347, 0076, 0367, 0271,
204 0023, 0202, 0040, 0274, 0001, 0100, 0365, 0176, 0267, 0262, 0122, 0305, 0207, 0176, 0340, 0103,
205 0270, 0375, 0266, 0333, 0240, 0151, 0045, 0210, 0222, 0010, 0102, 0310, 0034, 0043, 0066, 0331,
206 0323, 0020, 0354, 0153, 0145, 0311, 0167, 0237, 0215, 0213, 0310, 0151, 0157, 0066, 0213, 0217,
207 0222, 0145, 0072, 0167, 0306, 0030, 0114, 0152, 0242, 0335, 0152, 0341, 0345, 0227, 0137, 0301,
208 0037, 0077, 0367, 0047, 0320, 0165, 0235, 0267, 0335, 0165, 0306, 0330, 0351, 0147, 0237, 0175,
209 0266, 0073, 0351, 0153, 0332, 0227, 0345, 0065, 0101, 0020, 0376, 0006, 0017, 0374, 0247, 0317,
210 0234, 0306, 0123, 0117, 0175, 0034, 0222, 0270, 0010, 0253, 0176, 0054, 0075, 0305, 0262, 0003,
211 0014, 0374, 0005, 0005, 0077, 0000, 0020, 0102, 0040, 0211, 0022, 0126, 0126, 0126, 0361, 0221,
212 0217, 0174, 0004, 0347, 0317, 0337, 0217, 0057, 0176, 0341, 0367, 0121, 0253, 0325, 0275, 0232,
213 0300, 0006, 0041, 0344, 0307, 0001, 0174, 0161, 0342, 0130, 0334, 0217, 0233, 0111, 0010, 0371,
214 0061, 0357, 0147, 0345, 0112, 0031, 0037, 0377, 0370, 0107, 0027, 0013, 0374, 0050, 0300, 0177,
215 0140, 0300, 0317, 0222, 0237, 0373, 0312, 0312, 0052, 0176, 0372, 0147, 0176, 0012, 0242, 0044,
216 0202, 0061, 0346, 0065, 0003, 0376, 0306, 0124, 0046, 0343, 0175, 0260, 0141, 0011, 0200, 0207,
217 0274, 0237, 0077, 0360, 0340, 0171, 0310, 0222, 0122, 0200, 0377, 0040, 0253, 0374, 0154, 0366,
218 0200, 0037, 0033, 0374, 0051, 0145, 0155, 0155, 0035, 0037, 0176, 0354, 0121, 0036, 0116, 0036,
219 0131, 0110, 0002, 0370, 0374, 0347, 0077, 0177, 0224, 0061, 0246, 0171, 0077, 0337, 0330, 0330,
220 0134, 0000, 0340, 0263, 0364, 0300, 0147, 0205, 0275, 0277, 0150, 0052, 0177, 0134, 0271, 0347,
221 0314, 0031, 0227, 0011, 0060, 0324, 0004, 0126, 0177, 0351, 0227, 0176, 0351, 0366, 0205, 0363,
222 0001, 0210, 0242, 0270, 0306, 0013, 0243, 0054, 0227, 0313, 0276, 0317, 0006, 0172, 0037, 0275,
223 0136, 0167, 0016, 0240, 0237, 0165, 0326, 0167, 0170, 0211, 0031, 0235, 0056, 0170, 0130, 0306,
224 0153, 0310, 0270, 0077, 0245, 0064, 0375, 0005, 0261, 0214, 0317, 0202, 0145, 0274, 0245, 0054,
225 0371, 0170, 0130, 0255, 0256, 0101, 0121, 0334, 0356, 0257, 0325, 0325, 0065, 0247, 0375, 0077,
226 0172, 0117, 0010, 0131, 0007, 0160, 0163, 0241, 0010, 0100, 0327, 0365, 0252, 0040, 0370, 0025,
227 0017, 0131, 0226, 0175, 0237, 0365, 0373, 0075, 0164, 0172, 0355, 0331, 0006, 0077, 0313, 0017,
228 0374, 0373, 0261, 0377, 0176, 0202, 0337, 0271, 0033, 0233, 0011, 0340, 0263, 0211, 0357, 0337,
229 0355, 0153, 0076, 0002, 0120, 0125, 0205, 0273, 0224, 0310, 0030, 0253, 0056, 0242, 0006, 0260,
230 0354, 0005, 0215, 0040, 0010, 0134, 0347, 0237, 0111, 0315, 0305, 0004, 0377, 0274, 0002, 0157,
231 0002, 0373, 0037, 0044, 0360, 0003, 0000, 0345, 0150, 0277, 0222, 0044, 0163, 0307, 0223, 0040,
232 0010, 0313, 0013, 0107, 0000, 0214, 0261, 0145, 0377, 0015, 0220, 0040, 0010, 0376, 0365, 0262,
233 0304, 0352, 0160, 0061, 0353, 0027, 0340, 0237, 0141, 0360, 0203, 0361, 0307, 0264, 0044, 0212,
234 0334, 0061, 0145, 0232, 0346, 0304, 0011, 0140, 0077, 0226, 0001, 0175, 0152, 0215, 0252, 0252,
235 0340, 0055, 0230, 0063, 0312, 0012, 0360, 0117, 0110, 0345, 0317, 0002, 0336, 0254, 0373, 0247,
236 0072, 0006, 0207, 0070, 0246, 0006, 0176, 0226, 0337, 0376, 0274, 0061, 0115, 0004, 0301, 0145,
237 0002, 0073, 0034, 0201, 0213, 0147, 0002, 0000, 0360, 0261, 0232, 0252, 0251, 0001, 0140, 0013,
238 0326, 0000, 0176, 0377, 0013, 0227, 0361, 0217, 0377, 0321, 0267, 0101, 0047, 0100, 0022, 0262,
239 0054, 0240, 0134, 0316, 0377, 0326, 0010, 0202, 0200, 0245, 0145, 0171, 0042, 0067, 0165, 0245,
240 0252, 0144, 0301, 0101, 0360, 0303, 0132, 0226, 0271, 0332, 0131, 0126, 0360, 0227, 0053, 0022,
241 0144, 0111, 0310, 0172, 0050, 0237, 0224, 0064, 0021, 0212, 0042, 0346, 0167, 0037, 0206, 0033,
242 0126, 0253, 0062, 0176, 0352, 0147, 0356, 0305, 0221, 0043, 0132, 0046, 0255, 0041, 0110, 0253,
243 0055, 0227, 0113, 0250, 0327, 0165, 0327, 0004, 0103, 0010, 0131, 0114, 0023, 0300, 0033, 0332,
244 0153, 0151, 0000, 0034, 0173, 0051, 0144, 0266, 0375, 0322, 0277, 0276, 0062, 0021, 0360, 0003,
245 0200, 0256, 0123, 0324, 0353, 0203, 0211, 0034, 0173, 0157, 0257, 0067, 0221, 0343, 0276, 0217,
246 0102, 0046, 0055, 0137, 0377, 0372, 0165, 0374, 0301, 0177, 0370, 0221, 0114, 0046, 0203, 0177,
247 0325, 0143, 0110, 0000, 0225, 0212, 0053, 0042, 0060, 0310, 0134, 0236, 0173, 0002, 0020, 0004,
248 0301, 0347, 0004, 0324, 0324, 0344, 0032, 0200, 0015, 0120, 0101, 0060, 0240, 0252, 0215, 0234,
249 0111, 0112, 0000, 0143, 0223, 0261, 0216, 0050, 0235, 0114, 0002, 0046, 0143, 0322, 0234, 0235,
250 0257, 0010, 0053, 0046, 0154, 0176, 0344, 0375, 0367, 0132, 0331, 0375, 0005, 0064, 0130, 0003,
251 0340, 0230, 0232, 0213, 0107, 0000, 0301, 0076, 0200, 0144, 0366, 0166, 0253, 0065, 0030, 0252,
252 0353, 0035, 0074, 0374, 0160, 0007, 0262, 0054, 0172, 0366, 0315, 0327, 0316, 0327, 0165, 0043,
253 0220, 0275, 0363, 0222, 0301, 0300, 0010, 0045, 0275, 0074, 0174, 0023, 0272, 0156, 0246, 0376,
254 0215, 0370, 0032, 0224, 0231, 0373, 0275, 0362, 0136, 0037, 0245, 0024, 0246, 0111, 0247, 0102,
255 0336, 0265, 0332, 0235, 0350, 0166, 0327, 0320, 0355, 0032, 0060, 0014, 0012, 0051, 0314, 0164,
256 0211, 0170, 0014, 0046, 0343, 0257, 0154, 0225, 0112, 0045, 0336, 0265, 0056, 0236, 0017, 0200,
257 0247, 0326, 0050, 0252, 0302, 0121, 0377, 0151, 0350, 0140, 0150, 0265, 0364, 0241, 0006, 0140,
258 0342, 0223, 0237, 0374, 0060, 0112, 0045, 0065, 0020, 0004, 0214, 0045, 0003, 0115, 0362, 0317,
259 0323, 0037, 0077, 0211, 0123, 0161, 0026, 0316, 0067, 0370, 0072, 0222, 0041, 0142, 0026, 0236,
260 0125, 0324, 0276, 0337, 0377, 0376, 0133, 0170, 0365, 0325, 0267, 0041, 0010, 0343, 0214, 0275,
261 0146, 0123, 0307, 0332, 0232, 0032, 0170, 0251, 0335, 0116, 0027, 0335, 0136, 0037, 0004, 0200,
262 0040, 0212, 0120, 0025, 0031, 0222, 0054, 0101, 0020, 0005, 0020, 0102, 0002, 0315, 0126, 0115,
263 0323, 0170, 0051, 0302, 0013, 0251, 0001, 0160, 0010, 0100, 0115, 0064, 0243, 0165, 0072, 0306,
264 0350, 0106, 0022, 0142, 0100, 0024, 0355, 0144, 0212, 0354, 0203, 0147, 0277, 0101, 0136, 0000,
265 0175, 0372, 0100, 0017, 0372, 0334, 0016, 0130, 0023, 0004, 0063, 0222, 0000, 0156, 0335, 0334,
266 0306, 0133, 0127, 0336, 0001, 0065, 0051, 0052, 0113, 0145, 0124, 0052, 0025, 0224, 0112, 0032,
267 0214, 0222, 0006, 0131, 0221, 0241, 0252, 0012, 0044, 0131, 0204, 0165, 0110, 0006, 0357, 0252,
268 0227, 0252, 0152, 0276, 0337, 0137, 0124, 0002, 0360, 0251, 0065, 0012, 0047, 0012, 0060, 0114,
269 0115, 0155, 0066, 0306, 0016, 0072, 0121, 0244, 0220, 0044, 0061, 0220, 0131, 0147, 0165, 0066,
270 0057, 0200, 0076, 0073, 0100, 0017, 0072, 0117, 0233, 0000, 0010, 0061, 0034, 0143, 0317, 0237,
271 0277, 0277, 0175, 0153, 0007, 0057, 0175, 0357, 0345, 0341, 0114, 0256, 0202, 0121, 0066, 0132,
272 0312, 0243, 0214, 0132, 0177, 0051, 0005, 0143, 0342, 0320, 0174, 0141, 0276, 0225, 0225, 0122,
273 0111, 0363, 0235, 0023, 0041, 0344, 0140, 0054, 0003, 0172, 0253, 0302, 0130, 0316, 0222, 0060,
274 0373, 0177, 0374, 0020, 0144, 0231, 0361, 0122, 0051, 0013, 0240, 0027, 0100, 0117, 0170, 0275,
275 0074, 0015, 0200, 0160, 0064, 0200, 0201, 0357, 0026, 0355, 0355, 0325, 0306, 0066, 0076, 0245,
276 0240, 0224, 0202, 0232, 0046, 0050, 0143, 0256, 0161, 0314, 0050, 0005, 0104, 0001, 0224, 0121,
277 0010, 0236, 0020, 0034, 0125, 0125, 0017, 0206, 0011, 0100, 0010, 0361, 0255, 0002, 0110, 0262,
278 0224, 0310, 0007, 0340, 0174, 0010, 0252, 0052, 0104, 0020, 0100, 0001, 0364, 0002, 0350, 0351,
279 0316, 0131, 0020, 0304, 0341, 0230, 0345, 0020, 0200, 0143, 0327, 0143, 0307, 0066, 0160, 0355,
280 0203, 0033, 0320, 0165, 0035, 0324, 0244, 0240, 0214, 0202, 0216, 0146, 0175, 0006, 0066, 0374,
281 0153, 0317, 0376, 0026, 0021, 0270, 0177, 0323, 0033, 0013, 0263, 0260, 0253, 0000, 0274, 0004,
282 0007, 0231, 0153, 0002, 0260, 0020, 0002, 0060, 0034, 0332, 0003, 0313, 0154, 0377, 0027, 0100,
283 0077, 0330, 0100, 0017, 0372, 0134, 0024, 0375, 0032, 0100, 0253, 0151, 0370, 0156, 0145, 0271,
284 0122, 0306, 0143, 0117, 0074, 0202, 0267, 0337, 0172, 0017, 0073, 0073, 0273, 0226, 0006, 0100,
285 0351, 0010, 0370, 0116, 0237, 0002, 0041, 0374, 0130, 0000, 0165, 0230, 0040, 0344, 0071, 0247,
286 0203, 0141, 0002, 0310, 0011, 0175, 0000, 0366, 0022, 0240, 0245, 0001, 0020, 0053, 0227, 0276,
287 0000, 0172, 0001, 0364, 0234, 0317, 0331, 0366, 0001, 0210, 0342, 0230, 0000, 0032, 0015, 0176,
288 0200, 0230, 0126, 0322, 0160, 0366, 0376, 0063, 0000, 0003, 0172, 0275, 0076, 0014, 0303, 0000,
289 0010, 0240, 0052, 0012, 0104, 0111, 0264, 0216, 0305, 0202, 0265, 0133, 0125, 0121, 0170, 0347,
290 0263, 0130, 0032, 0300, 0305, 0213, 0027, 0005, 0000, 0025, 0037, 0001, 0110, 0062, 0307, 0004,
291 0140, 0261, 0114, 0000, 0111, 0202, 0317, 0004, 0050, 0200, 0136, 0000, 0075, 0256, 0066, 0031,
292 0046, 0326, 0214, 0115, 0134, 0046, 0100, 0253, 0251, 0007, 0074, 0215, 0161, 0015, 0110, 0255,
293 0244, 0302, 0127, 0362, 0322, 0171, 0177, 0070, 0032, 0200, 0254, 0310, 0274, 0163, 0136, 0262,
294 0216, 0070, 0271, 0222, 0051, 0123, 0115, 0006, 0052, 0225, 0112, 0025, 0336, 0157, 0112, 0222,
295 0230, 0350, 0241, 0071, 0037, 0202, 0252, 0222, 0261, 0255, 0025, 0342, 0013, 0260, 0217, 0231,
296 0317, 0013, 0001, 0257, 0364, 0307, 0244, 0164, 0374, 0162, 0036, 0163, 0234, 0111, 0342, 0176,
297 0115, 0363, 0334, 0202, 0216, 0357, 0076, 0347, 0274, 0256, 0067, 0373, 0363, 0212, 0117, 0374,
298 0336, 0153, 0001, 0050, 0035, 0177, 0106, 0210, 0105, 0000, 0116, 0015, 0240, 0331, 0322, 0175,
299 0300, 0217, 0214, 0016, 0144, 0141, 0223, 0233, 0365, 0074, 0235, 0216, 0160, 0307, 0065, 0010,
300 0277, 0360, 0013, 0277, 0120, 0131, 0030, 0015, 0240, 0134, 0056, 0057, 0033, 0206, 0277, 0037,
301 0242, 0310, 0251, 0005, 0020, 0156, 0002, 0350, 0056, 0015, 0240, 0230, 0321, 0027, 0157, 0106,
302 0367, 0177, 0106, 0142, 0337, 0247, 0240, 0337, 0167, 0276, 0167, 0246, 0243, 0214, 0267, 0147,
303 0236, 0161, 0111, 0000, 0020, 0010, 0302, 0370, 0163, 0347, 0022, 0164, 0332, 0172, 0201, 0143,
304 0037, 0000, 0363, 0231, 0301, 0336, 0353, 0060, 0014, 0143, 0031, 0100, 0153, 0041, 0010, 0240,
305 0337, 0357, 0127, 0105, 0321, 0077, 0333, 0213, 0074, 0015, 0200, 0306, 0063, 0001, 0024, 0205,
306 0304, 0152, 0350, 0120, 0000, 0235, 0315, 0250, 0332, 0036, 0173, 0276, 0346, 0034, 0207, 0044,
307 0074, 0116, 0064, 0061, 0270, 0115, 0000, 0021, 0204, 0330, 0253, 0000, 0126, 0360, 0116, 0163,
308 0250, 0175, 0046, 0235, 0365, 0375, 0004, 0340, 0135, 0011, 0223, 0271, 0044, 0046, 0212, 0142,
309 0025, 0300, 0365, 0205, 0040, 0000, 0111, 0222, 0226, 0171, 0003, 0201, 0127, 0015, 0050, 0154,
310 0031, 0260, 0345, 0042, 0000, 0044, 0040, 0200, 0331, 0004, 0372, 0342, 0315, 0346, 0044, 0001,
311 0320, 0371, 0063, 0175, 0360, 0075, 0311, 0237, 0114, 0171, 0221, 0171, 0143, 0047, 0340, 0170,
312 0045, 0200, 0122, 0011, 0315, 0246, 0036, 0011, 0176, 0103, 0067, 0140, 0030, 0046, 0030, 0143,
313 0020, 0005, 0001, 0242, 0044, 0302, 0236, 0370, 0030, 0030, 0050, 0047, 0037, 0200, 0247, 0001,
314 0014, 0011, 0140, 0242, 0216, 0300, 0251, 0022, 0100, 0120, 0065, 0040, 0136, 0347, 0237, 0360,
315 0104, 0040, 0147, 0040, 0020, 0117, 0003, 0310, 0242, 0152, 0026, 0152, 0173, 0074, 0240, 0207,
316 0175, 0236, 0314, 0016, 0217, 0236, 0351, 0047, 0245, 0125, 0204, 0235, 0063, 0031, 0071, 0001,
317 0055, 0002, 0240, 0240, 0324, 0155, 0002, 0170, 0345, 0326, 0315, 0155, 0134, 0377, 0340, 0072,
318 0164, 0303, 0100, 0245, 0134, 0101, 0271, 0122, 0202, 0126, 0322, 0240, 0252, 0052, 0124, 0125,
319 0201, 0254, 0312, 0020, 0105, 0201, 0273, 0014, 0050, 0211, 0022, 0367, 0172, 0050, 0245, 0213,
320 0103, 0000, 0340, 0254, 0153, 0006, 0023, 0100, 0130, 0040, 0220, 0076, 0264, 0343, 0314, 0141,
321 0036, 0100, 0141, 0237, 0147, 0271, 0136, 0102, 0110, 0314, 0031, 0067, 0036, 0101, 0307, 0333,
322 0236, 0144, 0230, 0321, 0111, 0112, 0240, 0363, 0147, 0372, 0240, 0147, 0356, 0014, 0327, 0025,
323 0004, 0003, 0200, 0342, 0163, 0002, 0332, 0362, 0326, 0225, 0167, 0360, 0366, 0233, 0357, 0002,
324 0004, 0130, 0132, 0132, 0032, 0106, 0004, 0216, 0203, 0201, 0114, 0112, 0041, 0230, 0046, 0010,
325 0161, 0304, 0372, 0073, 0056, 0133, 0024, 0255, 0245, 0102, 0233, 0034, 0034, 0261, 0003, 0325,
326 0105, 0042, 0000, 0177, 0065, 0040, 0125, 0345, 0022, 0000, 0215, 0241, 0001, 0010, 0202, 0011,
327 0111, 0022, 0143, 0055, 0001, 0036, 0064, 0240, 0007, 0037, 0207, 0177, 0214, 0250, 0153, 0211,
328 0333, 0236, 0061, 0276, 0352, 0316, 0122, 0356, 0033, 0255, 0141, 0204, 0337, 0022, 0077, 0231,
329 0004, 0155, 0057, 0212, 0242, 0113, 0003, 0260, 0234, 0200, 0072, 0367, 0220, 0357, 0277, 0173,
330 0165, 0364, 0336, 0266, 0361, 0255, 0140, 0040, 0066, 0066, 0147, 0331, 0330, 0007, 0340, 0125,
331 0072, 0010, 0041, 0120, 0125, 0025, 0335, 0156, 0327, 0333, 0114, 0164, 0261, 0114, 0000, 0057,
332 0330, 0171, 0251, 0300, 0221, 0032, 0100, 0143, 0020, 0213, 0000, 0026, 0021, 0350, 0141, 0215,
333 0122, 0243, 0217, 0343, 0037, 0354, 0343, 0303, 0045, 0003, 0025, 0357, 0360, 0326, 0261, 0130,
334 0152, 0177, 0200, 0367, 0234, 0243, 0232, 0302, 0046, 0265, 0351, 0371, 0333, 0207, 0057, 0035,
335 0022, 0142, 0205, 0232, 0333, 0004, 0320, 0152, 0353, 0166, 0315, 0176, 0327, 0155, 0073, 0164,
336 0150, 0015, 0067, 0157, 0156, 0271, 0110, 0200, 0015, 0103, 0202, 0255, 0344, 0240, 0141, 0070,
337 0260, 0115, 0020, 0234, 0237, 0054, 0227, 0313, 0350, 0164, 0072, 0336, 0373, 0261, 0330, 0046,
338 0200, 0226, 0252, 0030, 0210, 0155, 0002, 0030, 0020, 0105, 0045, 0244, 0064, 0330, 0174, 0000,
339 0075, 0111, 0363, 0143, 0357, 0154, 0035, 0014, 0304, 0240, 0373, 0301, 0270, 0204, 0020, 0066,
340 0373, 0106, 0235, 0337, 0070, 0175, 0065, 0233, 0077, 0040, 0356, 0161, 0323, 0332, 0364, 0361,
341 0314, 0015, 0257, 0026, 0100, 0140, 0232, 0266, 0011, 0000, 0120, 0223, 0241, 0335, 0066, 0261,
342 0264, 0044, 0271, 0016, 0161, 0356, 0302, 0131, 0224, 0052, 0045, 0134, 0373, 0340, 0372, 0060,
343 0031, 0150, 0010, 0176, 0373, 0105, 0307, 0004, 0116, 0143, 0124, 0005, 0162, 0020, 0376, 0342,
344 0230, 0000, 0274, 0162, 0140, 0252, 0246, 0361, 0037, 0104, 0214, 0145, 0100, 0101, 0240, 0303,
345 0040, 0242, 0331, 0004, 0272, 0323, 0336, 0213, 0257, 0242, 0063, 0356, 0200, 0015, 0006, 0042,
346 0117, 0225, 0216, 0147, 0323, 0023, 0302, 0022, 0000, 0052, 0374, 0076, 0044, 0151, 0341, 0036,
347 0307, 0246, 0217, 0163, 0270, 0170, 0032, 0006, 0177, 0215, 0077, 0056, 0251, 0010, 0202, 0010,
348 0323, 0064, 0106, 0032, 0000, 0140, 0255, 0102, 0055, 0125, 0044, 0357, 0330, 0306, 0351, 0273,
349 0357, 0304, 0351, 0323, 0167, 0242, 0126, 0257, 0133, 0241, 0300, 0040, 0220, 0045, 0011, 0262,
350 0052, 0103, 0221, 0145, 0253, 0050, 0010, 0010, 0047, 0022, 0320, 0072, 0231, 0122, 0271, 0074,
351 0365, 0214, 0300, 0175, 0137, 0005, 0120, 0171, 0251, 0300, 0054, 0070, 0272, 0312, 0064, 0030,
352 0272, 0135, 0163, 0344, 0004, 0024, 0004, 0141, 0352, 0100, 0217, 0273, 0152, 0301, 0213, 0156,
353 0343, 0223, 0004, 0357, 0234, 0343, 0331, 0310, 0174, 0225, 0336, 0077, 0323, 0047, 0361, 0015,
354 0170, 0162, 0322, 0123, 0202, 0072, 0211, 0166, 0302, 0142, 0237, 0133, 0320, 0276, 0116, 0342,
355 0114, 0003, 0364, 0140, 0015, 0100, 0204, 0141, 0230, 0020, 0105, 0352, 0062, 0101, 0217, 0036,
356 0055, 0363, 0367, 0047, 0014, 0053, 0253, 0325, 0120, 0205, 0324, 0362, 0011, 0370, 0117, 0254,
357 0304, 0237, 0014, 0027, 0312, 0004, 0360, 0327, 0002, 0320, 0224, 0104, 0366, 0277, 0155, 0203,
358 0271, 0175, 0000, 0331, 0201, 0236, 0144, 0240, 0363, 0146, 0260, 0140, 0333, 0072, 0034, 0144,
359 0336, 0302, 0230, 0311, 0374, 0026, 0044, 0144, 0266, 0346, 0357, 0353, 0324, 0044, 0222, 0006,
360 0360, 0044, 0363, 0242, 0007, 0253, 0341, 0161, 0110, 0061, 0310, 0246, 0217, 0046, 0173, 0226,
361 0030, 0344, 0141, 0347, 0153, 0245, 0004, 0023, 0167, 0115, 0000, 0316, 0112, 0100, 0222, 0300,
362 0240, 0221, 0017, 0300, 0023, 0345, 0257, 0225, 0064, 0336, 0175, 0137, 0154, 0037, 0200, 0042,
363 0053, 0211, 0354, 0377, 0106, 0243, 0357, 0000, 0231, 0341, 0163, 0002, 0246, 0125, 0115, 0371,
364 0011, 0105, 0044, 0325, 0100, 0167, 0016, 0362, 0150, 0333, 0072, 0231, 0032, 0036, 0346, 0300,
365 0012, 0272, 0326, 0040, 0007, 0136, 0124, 0124, 0135, 0232, 0331, 0072, 0234, 0144, 0131, 0054,
366 0323, 0204, 0357, 0323, 0011, 0276, 0326, 0174, 0343, 0001, 0334, 0277, 0051, 0212, 0004, 0204,
367 0300, 0243, 0001, 0350, 0361, 0301, 0037, 0360, 0025, 0145, 0014, 0002, 0210, 0353, 0153, 0273,
368 0060, 0250, 0147, 0034, 0056, 0366, 0062, 0040, 0217, 0000, 0202, 0242, 0000, 0235, 0305, 0100,
369 0155, 0037, 0000, 0057, 0264, 0070, 0312, 0336, 0364, 0316, 0304, 0341, 0116, 0263, 0260, 0175,
370 0203, 0154, 0353, 0030, 0043, 0040, 0021, 0160, 0342, 0021, 0021, 0017, 0070, 0101, 0232, 0211,
371 0377, 0167, 0130, 0204, 0017, 0042, 0211, 0243, 0065, 0230, 0210, 0242, 0216, 0231, 0306, 0344,
372 0110, 0027, 0017, 0020, 0175, 0276, 0266, 0155, 0357, 0325, 0000, 0234, 0143, 0060, 0015, 0370,
373 0155, 0055, 0200, 0170, 0306, 0056, 0257, 0052, 0320, 0102, 0151, 0000, 0274, 0152, 0100, 0262,
374 0032, 0257, 0030, 0210, 0375, 0231, 0063, 0014, 0330, 0275, 0014, 0230, 0316, 0031, 0144, 0315,
375 0054, 0044, 0246, 0015, 0032, 0317, 0244, 0210, 0236, 0375, 0131, 0242, 0350, 0107, 0247, 0327,
376 0070, 0171, 0146, 0153, 0322, 0163, 0013, 0162, 0020, 0046, 0135, 0132, 0113, 0355, 0047, 0112,
377 0251, 0231, 0144, 0321, 0000, 0202, 0363, 0014, 0354, 0130, 0000, 0121, 0144, 0016, 0055, 0064,
378 0074, 0034, 0270, 0325, 0154, 0243, 0333, 0356, 0202, 0020, 0002, 0101, 0024, 0241, 0050, 0062,
379 0024, 0125, 0161, 0365, 0300, 0244, 0214, 0102, 0364, 0224, 0005, 0332, 0217, 0252, 0100, 0123,
380 0045, 0000, 0112, 0151, 0325, 0073, 0360, 0171, 0265, 0000, 0302, 0002, 0173, 0232, 0115, 0267,
381 0006, 0140, 0071, 0001, 0303, 0035, 0137, 0321, 0276, 0000, 0066, 0245, 0204, 0226, 0370, 0116,
382 0263, 0344, 0001, 0070, 0321, 0347, 0306, 0327, 0114, 0222, 0230, 0015, 0341, 0316, 0320, 0144,
383 0276, 0230, 0170, 0176, 0223, 0070, 0046, 0107, 0122, 0277, 0111, 0222, 0147, 0155, 0137, 0243,
384 0313, 0004, 0150, 0362, 0303, 0201, 0367, 0166, 0153, 0170, 0365, 0362, 0033, 0240, 0046, 0305,
385 0322, 0122, 0005, 0345, 0162, 0011, 0132, 0271, 0004, 0112, 0255, 0222, 0337, 0114, 0141, 0126,
386 0211, 0160, 0201, 0200, 0122, 0023, 0200, 0074, 0046, 0037, 0000, 0232, 0252, 0361, 0356, 0327,
387 0342, 0230, 0000, 0274, 0136, 0147, 0212, 0042, 0007, 0232, 0000, 0274, 0201, 0343, 0066, 0001,
388 0114, 0227, 0011, 0020, 0354, 0370, 0142, 0251, 0036, 0276, 0227, 0114, 0362, 0012, 0075, 0215,
389 0263, 0036, 0035, 0074, 0330, 0171, 0152, 0163, 0362, 0031, 0061, 0110, 0253, 0211, 0343, 0067,
390 0011, 0132, 0026, 0234, 0205, 0230, 0204, 0070, 0332, 0111, 0120, 0126, 0140, 0030, 0011, 0070,
391 0227, 0001, 0233, 0234, 0242, 0040, 0235, 0166, 0007, 0057, 0174, 0347, 0022, 0030, 0263, 0162,
392 0373, 0051, 0265, 0342, 0000, 0300, 0253, 0305, 0000, 0073, 0032, 0320, 0375, 0343, 0212, 0252,
393 0360, 0046, 0277, 0305, 0136, 0005, 0220, 0170, 0032, 0000, 0015, 0216, 0316, 0162, 0262, 0257,
394 0054, 0263, 0300, 0201, 0023, 0374, 0360, 0343, 0314, 0130, 0011, 0214, 0071, 0304, 0115, 0214,
395 0111, 0226, 0306, 0312, 0367, 0115, 0304, 0263, 0255, 0303, 0146, 0262, 0044, 0332, 0104, 0162,
396 0040, 0116, 0057, 0046, 0041, 0251, 0337, 0044, 0052, 0036, 0203, 0122, 0212, 0166, 0273, 0213,
397 0166, 0273, 0207, 0116, 0247, 0213, 0126, 0253, 0207, 0136, 0257, 0077, 0042, 0104, 0247, 0006,
398 0320, 0342, 0254, 0002, 0264, 0133, 0235, 0321, 0157, 0230, 0246, 0001, 0223, 0072, 0312, 0201,
399 0323, 0141, 0064, 0040, 0330, 0260, 0042, 0260, 0350, 0137, 0351, 0142, 0356, 0045, 0361, 0205,
400 0133, 0005, 0140, 0214, 0221, 0317, 0177, 0376, 0363, 0176, 0002, 0220, 0223, 0246, 0002, 0073,
401 0063, 0001, 0005, 0217, 0343, 0053, 0331, 0132, 0160, 0022, 0147, 0120, 0364, 0161, 0242, 0012,
402 0126, 0004, 0001, 0205, 0305, 0126, 0303, 0263, 0332, 0326, 0101, 0347, 0234, 0046, 0052, 0161,
403 0132, 0061, 0011, 0151, 0257, 0063, 0032, 0360, 0014, 0355, 0166, 0007, 0215, 0106, 0033, 0315,
404 0146, 0007, 0255, 0126, 0167, 0250, 0226, 0363, 0256, 0041, 0270, 0050, 0210, 0375, 0010, 0017,
405 0035, 0076, 0204, 0325, 0265, 0025, 0324, 0366, 0352, 0156, 0360, 0017, 0103, 0200, 0031, 0034,
406 0301, 0155, 0314, 0343, 0260, 0145, 0366, 0170, 0126, 0170, 0347, 0276, 0030, 0004, 0360, 0273,
407 0277, 0373, 0273, 0045, 0370, 0212, 0041, 0173, 0153, 0001, 0014, 0037, 0036, 0215, 0127, 0015,
408 0110, 0121, 0202, 0200, 0236, 0126, 0065, 0215, 0236, 0371, 0202, 0147, 0273, 0360, 0202, 0025,
409 0341, 0100, 0212, 0237, 0240, 0022, 0015, 0160, 0022, 0070, 0133, 0007, 0171, 0376, 0223, 0003,
410 0061, 0277, 0230, 0204, 0264, 0176, 0216, 0240, 0353, 0015, 0233, 0341, 0133, 0255, 0056, 0232,
411 0315, 0066, 0232, 0315, 0366, 0020, 0360, 0321, 0023, 0200, 0175, 0156, 0204, 0260, 0141, 0112,
412 0260, 0060, 0216, 0003, 0160, 0354, 0056, 0010, 0004, 0017, 0077, 0362, 0000, 0256, 0137, 0273,
413 0211, 0133, 0067, 0267, 0060, 0030, 0350, 0043, 0115, 0326, 0052, 0023, 0116, 0101, 0204, 0141,
414 0212, 0261, 0100, 0254, 0111, 0216, 0171, 0315, 0141, 0205, 0107, 0324, 0322, 0063, 0317, 0074,
415 0123, 0172, 0366, 0331, 0147, 0273, 0163, 0115, 0000, 0365, 0172, 0275, 0312, 0253, 0376, 0053,
416 0215, 0152, 0172, 0305, 0053, 0352, 0351, 0254, 0010, 0054, 0313, 0110, 0031, 0056, 0113, 0022,
417 0104, 0351, 0145, 0361, 0007, 0244, 0115, 0214, 0111, 0266, 0164, 0350, 0327, 0022, 0230, 0117,
418 0015, 0217, 0103, 0154, 0331, 0274, 0353, 0054, 0125, 0004, 0141, 0224, 0123, 0057, 0332, 0031,
419 0032, 0114, 0366, 0215, 0106, 0033, 0215, 0106, 0013, 0215, 0106, 0033, 0235, 0116, 0317, 0247,
420 0351, 0304, 0065, 0261, 0306, 0040, 0037, 0022, 0100, 0103, 0347, 0076, 0042, 0102, 0010, 0066,
421 0217, 0035, 0305, 0346, 0261, 0243, 0000, 0003, 0014, 0303, 0200, 0101, 0315, 0221, 0367, 0337,
422 0171, 0117, 0050, 0247, 0261, 0251, 0267, 0103, 0226, 0175, 0276, 0315, 0146, 0263, 0012, 0140,
423 0276, 0011, 0100, 0125, 0325, 0145, 0136, 0022, 0204, 0345, 0304, 0143, 0261, 0115, 0200, 0246,
424 0253, 0040, 0150, 0274, 0331, 0336, 0257, 0232, 0306, 0017, 0263, 0015, 0366, 0007, 0044, 0265,
425 0351, 0371, 0104, 0224, 0034, 0350, 0116, 0207, 0146, 0134, 0317, 0077, 0113, 0011, 0304, 0311,
426 0256, 0323, 0207, 0153, 0047, 0136, 0315, 0052, 0332, 0254, 0243, 0224, 0242, 0136, 0157, 0242,
427 0126, 0153, 0242, 0321, 0150, 0103, 0327, 0015, 0327, 0075, 0116, 0102, 0112, 0274, 0355, 0105,
428 0221, 0302, 0060, 0202, 0053, 0003, 0173, 0037, 0255, 0050, 0213, 0276, 0245, 0076, 0373, 0222,
429 0334, 0076, 0000, 0066, 0064, 0207, 0345, 0040, 0163, 0155, 0031, 0300, 0315, 0271, 0046, 0000,
430 0136, 0136, 0263, 0040, 0010, 0243, 0332, 0353, 0161, 0035, 0066, 0255, 0121, 0061, 0020, 0006,
431 0121, 0024, 0042, 0324, 0162, 0022, 0333, 0141, 0226, 0055, 0025, 0065, 0175, 0004, 0141, 0372,
432 0345, 0107, 0026, 0373, 0172, 0343, 0071, 0034, 0323, 0206, 0102, 0047, 0133, 0247, 0367, 0356,
433 0233, 0066, 0142, 0322, 0376, 0215, 0136, 0157, 0200, 0132, 0315, 0002, 0175, 0263, 0331, 0211,
434 0105, 0260, 0111, 0211, 0140, 0074, 0136, 0115, 0337, 0044, 0024, 0360, 0124, 0043, 0225, 0102,
435 0136, 0135, 0100, 0131, 0226, 0202, 0306, 0376, 0304, 0374, 0000, 0323, 0134, 0005, 0340, 0127,
436 0003, 0342, 0022, 0100, 0164, 0133, 0060, 0102, 0114, 0137, 0071, 0161, 0377, 0140, 0317, 0043,
437 0025, 0065, 0217, 0160, 0131, 0222, 0001, 0350, 0111, 0264, 0004, 0226, 0112, 0245, 0017, 0162,
438 0210, 0362, 0234, 0172, 0301, 0021, 0204, 0116, 0262, 0217, 0367, 0033, 0266, 0046, 0026, 0354,
439 0067, 0341, 0107, 0151, 0016, 0006, 0072, 0166, 0167, 0033, 0330, 0333, 0153, 0240, 0325, 0352,
440 0216, 0100, 0235, 0026, 0330, 0141, 0266, 0277, 0133, 0003, 0140, 0256, 0061, 0230, 0010, 0374,
441 0276, 0322, 0340, 0074, 0155, 0130, 0032, 0126, 0147, 0162, 0337, 0027, 0112, 0151, 0165, 0356,
442 0011, 0200, 0127, 0014, 0104, 0226, 0145, 0010, 0251, 0253, 0001, 0321, 0141, 0175, 0065, 0226,
443 0171, 0240, 0363, 0325, 0346, 0250, 0247, 0310, 0270, 0040, 0341, 0073, 0034, 0203, 0075, 0360,
444 0321, 0347, 0113, 0003, 0006, 0154, 0234, 0232, 0003, 0321, 0116, 0302, 0340, 0343, 0320, 0110,
445 0277, 0111, 0234, 0242, 0040, 0141, 0044, 0026, 0317, 0377, 0141, 0355, 0253, 0353, 0006, 0166,
446 0166, 0152, 0330, 0336, 0256, 0243, 0327, 0353, 0307, 0234, 0315, 0343, 0001, 0073, 0356, 0276,
447 0266, 0006, 0320, 0357, 0123, 0014, 0006, 0046, 0024, 0105, 0114, 0005, 0176, 0140, 0354, 0350,
448 0146, 0314, 0255, 0021, 0113, 0222, 0004, 0135, 0327, 0247, 0266, 0022, 0060, 0115, 0015, 0300,
449 0337, 0022, 0114, 0221, 0371, 0131, 0163, 0274, 0051, 0144, 0170, 0077, 0306, 0325, 0200, 0350,
450 0310, 0201, 0030, 0307, 0356, 0217, 0236, 0255, 0031, 0307, 0151, 0026, 0125, 0235, 0207, 0305,
451 0004, 0137, 0224, 0017, 0041, 0351, 0322, 0027, 0313, 0340, 0320, 0113, 0036, 0013, 0141, 0251,
452 0341, 0361, 0375, 0010, 0161, 0374, 0046, 0356, 0144, 0036, 0022, 0110, 0102, 0265, 0132, 0003,
453 0073, 0073, 0015, 0324, 0353, 0055, 0007, 0161, 0222, 0334, 0100, 0315, 0067, 0021, 0370, 0373,
454 0072, 0303, 0201, 0133, 0055, 0035, 0353, 0353, 0242, 0017, 0374, 0224, 0122, 0154, 0157, 0355,
455 0242, 0325, 0154, 0201, 0061, 0053, 0322, 0125, 0125, 0025, 0224, 0312, 0126, 0161, 0120, 0131,
456 0221, 0106, 0105, 0101, 0274, 0343, 0202, 0010, 0004, 0212, 0242, 0140, 0060, 0030, 0170, 0307,
457 0332, 0142, 0232, 0000, 0166, 0103, 0304, 0110, 0015, 0200, 0215, 0157, 0160, 0253, 0145, 0214,
458 0330, 0330, 0356, 0336, 0032, 0127, 0225, 0016, 0252, 0034, 0344, 0137, 0007, 0147, 0076, 0207,
459 0133, 0374, 0301, 0216, 0320, 0175, 0047, 0021, 0266, 0232, 0326, 0151, 0346, 0057, 0341, 0345,
460 0074, 0137, 0022, 0111, 0070, 0101, 0176, 0223, 0040, 0100, 0072, 0317, 0311, 0257, 0235, 0020,
461 0207, 0231, 0327, 0306, 0316, 0116, 0035, 0365, 0172, 0023, 0246, 0303, 0133, 0036, 0074, 0333,
462 0147, 0003, 0166, 0134, 0361, 0146, 0004, 0256, 0257, 0153, 0256, 0131, 0277, 0327, 0355, 0341,
463 0305, 0357, 0275, 0202, 0116, 0273, 0203, 0162, 0245, 0214, 0345, 0245, 0045, 0220, 0022, 0201,
464 0054, 0113, 0060, 0115, 0012, 0323, 0064, 0101, 0014, 0002, 0111, 0022, 0035, 0143, 0234, 0271,
465 0316, 0244, 0134, 0056, 0243, 0325, 0152, 0271, 0356, 0355, 0044, 0013, 0203, 0116, 0215, 0000,
466 0270, 0325, 0200, 0002, 0313, 0201, 0121, 0056, 0370, 0055, 0002, 0160, 0152, 0000, 0102, 0202,
467 0331, 0077, 0213, 0323, 0214, 0305, 0214, 0133, 0347, 0357, 0033, 0167, 0346, 0214, 0107, 0012,
468 0351, 0234, 0146, 0274, 0175, 0335, 0200, 0267, 0201, 0030, 0237, 0161, 0370, 0171, 0373, 0351,
469 0102, 0171, 0051, 0065, 0261, 0263, 0123, 0307, 0366, 0166, 0015, 0335, 0156, 0077, 0200, 0210,
470 0362, 0007, 0165, 0022, 0007, 0241, 0213, 0000, 0132, 0376, 0204, 0240, 0067, 0257, 0274, 0203,
471 0116, 0273, 0063, 0272, 0130, 0127, 0313, 0072, 0273, 0015, 0032, 0035, 0206, 0007, 0173, 0234,
472 0200, 0366, 0273, 0162, 0271, 0064, 0325, 0214, 0300, 0251, 0372, 0000, 0174, 0032, 0000, 0257,
473 0030, 0210, 0163, 0146, 0361, 0200, 0177, 0060, 0060, 0321, 0357, 0233, 0016, 0037, 0200, 0230,
474 0310, 0336, 0214, 0252, 0101, 0357, 0164, 0300, 0304, 0005, 0154, 0322, 0200, 0224, 0354, 0216,
475 0076, 0104, 0152, 0047, 0151, 0263, 0021, 0243, 0264, 0212, 0164, 0176, 0023, 0257, 0351, 0342,
476 0336, 0260, 0333, 0355, 0341, 0346, 0315, 0075, 0324, 0152, 0015, 0207, 0206, 0106, 0246, 0012,
477 0354, 0370, 0223, 0330, 0230, 0000, 0032, 0234, 0352, 0300, 0116, 0177, 0026, 0245, 0164, 0024,
478 0021, 0150, 0007, 0003, 0071, 0235, 0173, 0006, 0065, 0270, 0124, 0133, 0052, 0227, 0175, 0317,
479 0152, 0222, 0145, 0301, 0366, 0325, 0007, 0300, 0323, 0000, 0154, 0206, 0344, 0071, 0125, 0234,
480 0121, 0200, 0242, 0110, 0041, 0212, 0112, 0100, 0270, 0154, 0332, 0022, 0136, 0223, 0267, 0255,
481 0343, 0331, 0364, 0044, 0206, 0223, 0216, 0277, 0157, 0326, 0354, 0101, 0336, 0014, 0033, 0047,
482 0067, 0042, 0151, 0011, 0257, 0106, 0243, 0215, 0133, 0267, 0366, 0134, 0113, 0167, 0131, 0327,
483 0351, 0263, 0112, 0324, 0361, 0044, 0311, 0021, 0016, 0314, 0131, 0011, 0270, 0373, 0236, 0323,
484 0350, 0367, 0007, 0330, 0333, 0255, 0171, 0302, 0201, 0355, 0104, 0040, 0072, 0052, 0167, 0307,
485 0275, 0377, 0014, 0050, 0115, 0271, 0052, 0320, 0276, 0372, 0000, 0024, 0205, 0137, 0016, 0054,
486 0310, 0233, 0332, 0152, 0046, 0053, 0006, 0342, 0140, 0320, 0110, 0333, 0072, 0172, 0054, 0345,
487 0123, 0302, 0053, 0310, 0341, 0345, 0137, 0141, 0340, 0151, 0030, 0151, 0012, 0214, 0306, 0367,
488 0204, 0007, 0335, 0247, 0274, 0112, 0170, 0231, 0046, 0305, 0316, 0116, 0015, 0073, 0073, 0165,
489 0364, 0373, 0372, 0124, 0200, 0235, 0355, 0130, 0304, 0243, 0001, 0060, 0356, 0130, 0034, 0307,
490 0362, 0113, 0170, 0350, 0103, 0027, 0320, 0150, 0064, 0261, 0273, 0275, 0007, 0223, 0322, 0121,
491 0153, 0060, 0111, 0222, 0040, 0053, 0062, 0144, 0165, 0334, 0010, 0147, 0244, 0211, 0071, 0356,
492 0157, 0111, 0233, 0156, 0125, 0240, 0175, 0325, 0000, 0174, 0004, 0300, 0342, 0107, 0001, 0132,
493 0004, 0340, 0135, 0063, 0115, 0127, 0302, 0313, 0011, 0354, 0260, 0350, 0272, 0144, 0121, 0165,
494 0161, 0200, 0036, 0024, 0101, 0310, 0142, 0150, 0011, 0321, 0100, 0014, 0072, 0337, 0270, 0131,
495 0220, 0174, 0317, 0077, 0341, 0332, 0374, 0141, 0171, 0006, 0326, 0022, 0136, 0035, 0333, 0333,
496 0165, 0230, 0246, 0231, 0013, 0310, 0363, 0004, 0166, 0134, 0315, 0111, 0222, 0070, 0051, 0301,
497 0234, 0133, 0124, 0255, 0056, 0243, 0132, 0135, 0366, 0076, 0075, 0216, 0337, 0203, 0102, 0364,
498 0070, 0262, 0265, 0222, 0306, 0323, 0140, 0347, 0137, 0003, 0160, 0126, 0003, 0262, 0377, 0272,
499 0312, 0201, 0015, 0065, 0377, 0260, 0162, 0340, 0316, 0074, 0000, 0313, 0004, 0020, 0043, 0155,
500 0325, 0340, 0045, 0246, 0344, 0236, 0377, 0154, 0313, 0215, 0274, 0355, 0151, 0200, 0226, 0220,
501 0154, 0140, 0132, 0100, 0045, 0011, 0316, 0055, 0310, 0157, 0102, 0042, 0374, 0034, 0376, 0370,
502 0200, 0060, 0040, 0016, 0006, 0072, 0156, 0334, 0330, 0105, 0255, 0326, 0114, 0140, 0162, 0344,
503 0007, 0354, 0274, 0227, 0007, 0235, 0004, 0320, 0152, 0351, 0261, 0375, 0245, 0101, 0032, 0055,
504 0243, 0024, 0020, 0334, 0176, 0054, 0157, 0231, 0374, 0241, 0226, 0060, 0377, 0004, 0140, 0127,
505 0003, 0162, 0016, 0004, 0131, 0221, 0035, 0366, 0376, 0160, 0273, 0030, 0121, 0200, 0266, 0006,
506 0040, 0010, 0242, 0143, 0220, 0222, 0204, 0203, 0075, 0312, 0176, 0315, 0022, 0105, 0230, 0274,
507 0167, 0136, 0026, 0137, 0102, 0362, 0165, 0372, 0150, 0122, 0214, 0177, 0255, 0376, 0175, 0172,
508 0275, 0001, 0156, 0336, 0334, 0101, 0255, 0326, 0032, 0201, 0172, 0322, 0121, 0172, 0131, 0200,
509 0035, 0327, 0341, 0350, 0014, 0132, 0155, 0306, 0310, 0007, 0210, 0012, 0011, 0346, 0225, 0007,
510 0327, 0024, 0145, 0161, 0115, 0000, 0157, 0072, 0247, 0054, 0313, 0376, 0244, 0332, 0320, 0050,
511 0100, 0303, 0243, 0001, 0220, 0030, 0203, 0075, 0310, 0226, 0117, 0126, 0050, 0043, 0113, 0273,
512 0352, 0264, 0153, 0374, 0336, 0123, 0013, 0063, 0163, 0342, 0347, 0347, 0107, 0337, 0357, 0264,
513 0344, 0145, 0001, 0177, 0027, 0365, 0172, 0053, 0306, 0275, 0235, 0054, 0260, 0047, 0261, 0212,
514 0340, 0162, 0002, 0066, 0122, 0346, 0003, 0170, 0313, 0203, 0173, 0104, 0053, 0225, 0246, 0132,
515 0025, 0150, 0137, 0174, 0000, 0366, 0005, 0362, 0322, 0203, 0131, 0314, 0142, 0040, 0176, 0015,
516 0040, 0131, 0062, 0117, 0320, 0140, 0217, 0243, 0322, 0047, 0357, 0214, 0313, 0037, 0011, 0356,
517 0343, 0022, 0016, 0363, 0363, 0176, 0223, 0005, 0370, 0046, 0242, 0234, 0201, 0371, 0146, 0373,
518 0071, 0245, 0323, 0351, 0341, 0346, 0315, 0135, 0064, 0233, 0135, 0037, 0320, 0366, 0153, 0266,
519 0236, 0204, 0057, 0101, 0020, 0330, 0260, 0264, 0071, 0341, 0126, 0005, 0362, 0202, 0337, 0060,
520 0114, 0030, 0206, 0001, 0106, 0231, 0345, 0010, 0034, 0026, 0030, 0035, 0071, 0001, 0075, 0004,
521 0300, 0340, 0056, 0221, 0267, 0160, 0253, 0000, 0336, 0001, 0067, 0256, 0005, 0340, 0140, 0105,
522 0026, 0335, 0022, 0314, 0322, 0000, 0300, 0315, 0044, 0364, 0017, 0372, 0350, 0102, 0031, 0341,
523 0200, 0363, 0252, 0314, 0311, 0272, 0012, 0005, 0251, 0277, 0376, 0045, 0307, 0164, 0232, 0111,
524 0220, 0255, 0316, 0261, 0043, 0123, 0253, 0364, 0101, 0115, 0071, 0006, 0003, 0035, 0267, 0156,
525 0355, 0242, 0136, 0157, 0207, 0224, 0127, 0237, 0076, 0260, 0047, 0351, 0040, 0024, 0105, 0006,
526 0303, 0040, 0201, 0046, 0000, 0145, 0024, 0327, 0076, 0270, 0201, 0355, 0255, 0035, 0000, 0126,
527 0144, 0137, 0251, 0134, 0202, 0246, 0251, 0120, 0025, 0005, 0212, 0252, 0100, 0226, 0045, 0010,
528 0242, 0140, 0365, 0016, 0364, 0014, 0001, 0136, 0121, 0020, 0114, 0260, 0060, 0350, 0276, 0005,
529 0002, 0061, 0306, 0270, 0004, 0020, 0267, 0032, 0220, 0025, 0012, 0054, 0370, 0354, 0155, 0347,
530 0303, 0162, 0337, 0110, 0306, 0001, 0114, 0176, 0205, 0075, 0202, 0233, 0162, 0344, 0257, 0231,
531 0344, 0323, 0272, 0213, 0204, 0230, 0023, 0101, 0036, 0175, 0173, 0146, 0243, 0043, 0347, 0136,
532 0162, 0225, 0176, 0277, 0202, 0171, 0362, 0061, 0071, 0254, 0232, 0000, 0202, 0257, 0054, 0230,
533 0015, 0345, 0127, 0056, 0275, 0212, 0355, 0133, 0073, 0020, 0105, 0001, 0225, 0245, 0045, 0053,
534 0002, 0320, 0264, 0333, 0204, 0133, 0161, 0001, 0224, 0132, 0325, 0201, 0170, 0135, 0202, 0371,
535 0113, 0343, 0223, 0013, 0004, 0022, 0246, 0001, 0376, 0213, 0027, 0057, 0152, 0260, 0152, 0040,
536 0273, 0006, 0130, 0042, 0015, 0200, 0271, 0173, 0002, 0110, 0222, 0125, 0017, 0140, 0234, 0027,
537 0157, 0275, 0154, 0120, 0173, 0137, 0224, 0216, 0137, 0374, 0136, 0365, 0374, 0356, 0076, 0336,
538 0227, 0065, 0243, 0303, 0367, 0112, 0342, 0064, 0013, 0177, 0361, 0317, 0041, 0376, 0361, 0374,
539 0347, 0074, 0006, 0073, 0161, 0001, 0077, 0150, 0337, 0040, 0061, 0014, 0206, 0033, 0067, 0166,
540 0361, 0306, 0033, 0357, 0241, 0136, 0157, 0172, 0356, 0001, 0361, 0275, 0202, 0176, 0067, 0110,
541 0113, 0212, 0172, 0361, 0201, 0351, 0176, 0005, 0357, 0017, 0337, 0371, 0362, 0317, 0217, 0167,
542 0274, 0361, 0176, 0166, 0070, 0160, 0223, 0323, 0034, 0244, 0337, 0353, 0143, 0373, 0226, 0065,
543 0363, 0233, 0046, 0005, 0033, 0202, 0335, 0171, 0217, 0135, 0164, 0352, 0053, 0012, 0302, 0040,
544 0173, 0012, 0203, 0016, 0367, 0121, 0176, 0361, 0027, 0177, 0121, 0235, 0133, 0015, 0140, 0175,
545 0175, 0175, 0131, 0327, 0165, 0337, 0354, 0302, 0325, 0000, 0030, 0077, 0023, 0220, 0201, 0271,
546 0324, 0056, 0153, 0127, 0167, 0240, 0112, 0334, 0156, 0274, 0136, 0055, 0200, 0067, 0323, 0047,
547 0235, 0154, 0342, 0364, 0041, 0234, 0174, 0353, 0256, 0044, 0151, 0267, 0141, 0232, 0016, 0363,
548 0250, 0376, 0300, 0336, 0136, 0023, 0133, 0133, 0173, 0060, 0014, 0063, 0326, 0114, 0076, 0013,
549 0263, 0365, 0044, 0114, 0216, 0121, 0115, 0200, 0241, 0023, 0320, 0251, 0304, 0053, 0252, 0202,
550 0312, 0122, 0031, 0355, 0126, 0147, 0364, 0374, 0354, 0020, 0140, 0112, 0251, 0217, 0164, 0051,
551 0047, 0037, 0100, 0011, 0250, 0012, 0264, 0275, 0275, 0275, 0014, 0240, 0077, 0227, 0004, 0140,
552 0232, 0346, 0062, 0257, 0052, 0055, 0057, 0222, 0317, 0265, 0235, 0047, 0044, 0330, 0066, 0001,
553 0306, 0325, 0200, 0202, 0173, 0362, 0305, 0005, 0142, 0166, 0240, 0307, 0077, 0100, 0120, 0021,
554 0312, 0170, 0125, 0171, 0323, 0065, 0310, 0110, 0222, 0237, 0317, 0363, 0171, 0264, 0132, 0035,
555 0334, 0274, 0271, 0073, 0212, 0334, 0233, 0345, 0165, 0372, 0151, 0230, 0034, 0366, 0220, 0355,
556 0164, 0254, 0322, 0337, 0166, 0247, 0037, 0173, 0373, 0207, 0076, 0164, 0001, 0157, 0276, 0361,
557 0016, 0266, 0156, 0155, 0217, 0324, 0175, 0253, 0007, 0300, 0220, 0020, 0050, 0203, 0100, 0310,
558 0250, 0253, 0265, 0367, 0311, 0310, 0262, 0314, 0255, 0340, 0054, 0111, 0322, 0062, 0200, 0355,
559 0271, 0044, 0000, 0135, 0327, 0253, 0266, 0303, 0316, 0251, 0376, 0363, 0234, 0170, 0243, 0070,
560 0000, 0026, 0234, 0013, 0040, 0212, 0376, 0162, 0140, 0343, 0207, 0305, 0142, 0014, 0216, 0054,
561 0035, 0144, 0371, 0300, 0014, 0166, 0032, 0222, 0020, 0040, 0006, 0327, 0042, 0010, 0073, 0207,
562 0044, 0015, 0062, 0302, 0262, 0014, 0303, 0362, 0033, 0054, 0007, 0337, 0070, 0126, 0077, 0111,
563 0052, 0356, 0042, 0171, 0376, 0275, 0277, 0151, 0233, 0000, 0224, 0062, 0164, 0072, 0006, 0226,
564 0226, 0144, 0327, 0155, 0225, 0145, 0031, 0147, 0317, 0235, 0301, 0075, 0147, 0117, 0243, 0136,
565 0157, 0200, 0232, 0024, 0204, 0020, 0310, 0212, 0002, 0125, 0121, 0040, 0311, 0242, 0005, 0176,
566 0060, 0230, 0336, 0062, 0344, 0314, 0352, 0223, 0301, 0253, 0012, 0064, 0251, 0130, 0200, 0151,
567 0071, 0001, 0227, 0275, 0040, 0221, 0145, 0231, 0357, 0035, 0267, 0323, 0045, 0071, 0040, 0265,
568 0127, 0001, 0274, 0035, 0201, 0334, 0307, 0316, 0143, 0211, 0056, 0170, 0326, 0014, 0336, 0236,
569 0204, 0356, 0033, 0077, 0246, 0076, 0316, 0154, 0315, 0022, 0125, 0323, 0211, 0163, 0017, 0034,
570 0345, 0247, 0260, 0265, 0125, 0103, 0255, 0326, 0366, 0071, 0074, 0147, 0175, 0235, 0176, 0032,
571 0046, 0207, 0067, 0026, 0140, 0104, 0000, 0236, 0133, 0057, 0010, 0002, 0326, 0326, 0126, 0003,
572 0106, 0026, 0363, 0233, 0273, 0303, 0373, 0057, 0212, 0042, 0104, 0121, 0264, 0226, 0017, 0335,
573 0065, 0001, 0226, 0347, 0226, 0000, 0104, 0121, 0364, 0125, 0004, 0266, 0233, 0056, 0372, 0011,
574 0040, 0044, 0031, 0310, 0123, 0016, 0314, 0276, 0353, 0356, 0352, 0062, 0131, 0147, 0364, 0240,
575 0175, 0363, 0210, 0251, 0017, 0252, 0175, 0107, 0002, 0124, 0172, 0206, 0054, 0021, 0211, 0376,
576 0374, 0174, 0302, 0131, 0225, 0030, 0277, 0257, 0327, 0133, 0330, 0336, 0256, 0217, 0354, 0174,
577 0136, 0234, 0302, 0074, 0003, 0073, 0017, 0002, 0163, 0126, 0005, 0152, 0066, 0007, 0330, 0100,
578 0071, 0321, 0043, 0162, 0216, 0155, 0313, 0044, 0144, 0236, 0376, 0002, 0002, 0144, 0131, 0206,
579 0355, 0063, 0033, 0371, 0022, 0070, 0105, 0165, 0347, 0206, 0000, 0274, 0105, 0015, 0355, 0376,
580 0151, 0274, 0207, 0153, 0306, 0010, 0005, 0026, 0105, 0346, 0062, 0037, 0262, 0264, 0212, 0216,
581 0323, 0047, 0056, 0257, 0332, 0167, 0141, 0041, 0270, 0371, 0344, 0347, 0107, 0305, 0053, 0360,
582 0126, 0073, 0010, 0272, 0335, 0076, 0156, 0335, 0332, 0103, 0257, 0067, 0110, 0070, 0043, 0316,
583 0336, 0072, 0375, 0244, 0115, 0016, 0067, 0001, 0350, 0251, 0301, 0077, 0062, 0167, 0275, 0232,
584 0203, 0050, 0214, 0002, 0344, 0246, 0321, 0044, 0164, 0252, 0046, 0200, 0363, 0242, 0170, 0353,
585 0235, 0076, 0265, 0310, 0253, 0001, 0064, 0235, 0076, 0000, 0061, 0161, 0263, 0310, 0140, 0107,
586 0136, 0072, 0333, 0072, 0252, 0052, 0157, 0222, 0301, 0231, 0054, 0272, 0060, 0252, 0212, 0017,
587 0211, 0125, 0302, 0313, 0126, 0367, 0033, 0215, 0266, 0343, 0134, 0347, 0173, 0235, 0176, 0322,
588 0232, 0211, 0333, 0004, 0060, 0122, 0001, 0177, 0344, 0343, 0012, 0210, 0171, 0051, 0225, 0112,
589 0250, 0325, 0152, 0336, 0173, 0273, 0074, 0327, 0004, 0340, 0035, 0174, 0132, 0111, 0113, 0004,
590 0204, 0156, 0327, 0204, 0151, 0332, 0166, 0222, 0071, 0362, 0276, 0372, 0147, 0125, 0176, 0207,
591 0241, 0154, 0075, 0357, 0130, 0352, 0201, 0036, 0135, 0071, 0210, 0045, 0040, 0207, 0270, 0015,
592 0057, 0203, 0052, 0011, 0217, 0127, 0035, 0352, 0365, 0026, 0166, 0166, 0032, 0303, 0245, 0250,
593 0111, 0055, 0351, 0055, 0236, 0203, 0320, 0111, 0000, 0141, 0341, 0300, 0121, 0340, 0267, 0011,
594 0230, 0067, 0002, 0112, 0345, 0222, 0357, 0071, 0117, 0052, 0030, 0150, 0152, 0046, 0200, 0333,
595 0116, 0147, 0334, 0202, 0240, 0374, 0342, 0035, 0366, 0354, 0357, 0314, 0004, 0164, 0206, 0001,
596 0363, 0233, 0117, 0006, 0105, 0322, 0045, 0055, 0223, 0225, 0266, 0162, 0120, 0360, 0340, 0234,
597 0114, 0235, 0077, 0257, 0132, 0037, 0164, 0215, 0266, 0167, 0077, 0333, 0262, 0336, 0174, 0001,
598 0073, 0117, 0315, 0304, 0147, 0002, 0244, 0004, 0377, 0150, 0034, 0161, 0366, 0053, 0227, 0112,
599 0274, 0361, 0267, 0140, 0046, 0200, 0252, 0044, 0123, 0377, 0175, 0345, 0300, 0304, 0000, 0200,
600 0362, 0324, 0160, 0022, 0023, 0200, 0371, 0125, 0016, 0012, 0313, 0366, 0013, 0046, 0211, 0074,
601 0152, 0021, 0020, 0360, 0303, 0236, 0031, 0266, 0266, 0152, 0150, 0066, 0333, 0123, 0165, 0232,
602 0355, 0347, 0154, 0075, 0011, 0022, 0163, 0306, 0256, 0205, 0265, 0010, 0363, 0101, 0073, 0110,
603 0263, 0164, 0367, 0107, 0033, 0231, 0000, 0323, 0052, 0012, 0262, 0157, 0313, 0200, 0074, 0037,
604 0100, 0234, 0206, 0040, 0143, 0002, 0220, 0175, 0125, 0155, 0343, 0230, 0002, 0223, 0256, 0034,
605 0024, 0116, 0064, 0204, 0163, 0156, 0074, 0100, 0307, 0135, 0316, 0343, 0003, 0335, 0033, 0101,
606 0330, 0156, 0167, 0261, 0275, 0135, 0033, 0226, 0330, 0046, 0013, 0275, 0116, 0077, 0151, 0315,
607 0304, 0105, 0000, 0034, 0023, 0040, 0152, 0326, 0347, 0150, 0307, 0276, 0170, 0230, 0022, 0307,
608 0074, 0236, 0153, 0023, 0000, 0234, 0132, 0000, 0111, 0065, 0000, 0167, 0046, 0040, 0163, 0370,
609 0000, 0202, 0303, 0145, 0343, 0107, 0325, 0345, 0131, 0071, 0210, 0204, 0150, 0024, 0121, 0031,
610 0177, 0321, 0347, 0340, 0136, 0322, 0013, 0037, 0354, 0206, 0141, 0225, 0332, 0356, 0164, 0172,
611 0236, 0357, 0027, 0167, 0235, 0176, 0322, 0044, 0026, 0146, 0002, 0044, 0005, 0277, 0065, 0351,
612 0121, 0010, 0303, 0224, 0034, 0173, 0123, 0115, 0363, 0233, 0000, 0363, 0256, 0001, 0124, 0275,
613 0003, 0131, 0345, 0145, 0075, 0321, 0260, 0104, 0040, 0247, 0006, 0200, 0200, 0246, 0040, 0356,
614 0354, 0077, 0036, 0250, 0363, 0252, 0034, 0024, 0006, 0364, 0350, 0301, 0036, 0264, 0356, 0357,
615 0177, 0317, 0257, 0312, 0313, 0367, 0175, 0214, 0367, 0041, 0250, 0327, 0333, 0330, 0333, 0263,
616 0113, 0155, 0223, 0005, 0003, 0366, 0376, 0151, 0046, 0116, 0015, 0300, 0071, 0051, 0245, 0001,
617 0377, 0150, 0314, 0213, 0356, 0115, 0025, 0115, 0341, 0215, 0253, 0371, 0366, 0001, 0170, 0101,
618 0342, 0252, 0007, 0350, 0140, 0303, 0240, 0233, 0330, 0164, 0021, 0000, 0163, 0244, 0002, 0147,
619 0033, 0044, 0066, 0330, 0342, 0224, 0276, 0216, 0177, 0274, 0370, 0015, 0062, 0202, 0322, 0174,
620 0235, 0204, 0025, 0164, 0034, 0236, 0157, 0103, 0327, 0215, 0141, 0377, 0274, 0001, 0354, 0154,
621 0266, 0203, 0072, 0133, 0117, 0342, 0172, 0255, 0214, 0100, 0006, 0323, 0264, 0152, 0002, 0244,
622 0005, 0376, 0170, 0314, 0233, 0140, 0220, 0135, 0073, 0225, 0124, 0315, 0147, 0266, 0316, 0265,
623 0011, 0300, 0253, 0005, 0020, 0253, 0032, 0220, 0043, 0031, 0310, 0133, 0020, 0324, 0062, 0001,
624 0322, 0170, 0324, 0263, 0003, 0073, 0150, 0046, 0217, 0133, 0014, 0064, 0270, 0105, 0071, 0137,
625 0063, 0211, 0063, 0076, 0115, 0223, 0015, 0133, 0144, 0167, 0023, 0327, 0054, 0230, 0005, 0140,
626 0317, 0223, 0146, 0342, 0044, 0200, 0054, 0340, 0147, 0360, 0147, 0004, 0202, 0001, 0212, 0243,
627 0137, 0306, 0244, 0253, 0002, 0115, 0325, 0004, 0160, 0136, 0220, 0254, 0310, 0034, 0066, 0014,
628 0316, 0004, 0154, 0172, 0114, 0000, 0053, 0141, 0042, 0256, 0047, 0074, 0131, 0220, 0115, 0130,
629 0270, 0154, 0330, 0323, 0366, 0316, 0326, 0301, 0277, 0313, 0167, 0020, 0306, 0131, 0255, 0340,
630 0027, 0341, 0324, 0261, 0263, 0343, 0014, 0341, 0045, 0063, 0001, 0352, 0105, 0065, 0071, 0044,
631 0011, 0030, 0014, 0070, 0253, 0000, 0051, 0242, 0002, 0171, 0143, 0136, 0125, 0325, 0251, 0125,
632 0005, 0332, 0327, 0144, 0040, 0277, 0075, 0104, 0075, 0144, 0070, 0376, 0247, 0335, 0166, 0326,
633 0002, 0260, 0123, 0211, 0371, 0100, 0217, 0337, 0176, 0053, 0176, 0270, 0254, 0327, 0177, 0340,
634 0005, 0172, 0222, 0165, 0172, 0176, 0342, 0120, 0362, 0175, 0051, 0245, 0330, 0331, 0151, 0214,
635 0234, 0174, 0363, 0012, 0354, 0171, 0063, 0071, 0354, 0140, 0240, 0146, 0323, 0310, 0004, 0376,
636 0321, 0230, 0367, 0354, 0077, 0315, 0252, 0100, 0373, 0142, 0002, 0000, 0200, 0304, 0251, 0005,
637 0140, 0347, 0313, 0207, 0145, 0002, 0002, 0343, 0016, 0055, 0101, 0371, 0365, 0161, 0100, 0035,
638 0276, 0116, 0037, 0345, 0215, 0217, 0267, 0116, 0317, 0047, 0233, 0174, 0252, 0020, 0267, 0132,
639 0135, 0324, 0353, 0055, 0253, 0274, 0124, 0114, 0247, 0343, 0301, 0230, 0255, 0047, 0157, 0162,
640 0330, 0053, 0001, 0111, 0172, 0003, 0004, 0215, 0353, 0250, 0262, 0140, 0223, 0066, 0001, 0046,
641 0136, 0022, 0354, 0342, 0305, 0213, 0012, 0000, 0315, 0343, 0320, 0200, 0024, 0340, 0003, 0010,
642 0156, 0013, 0146, 0270, 0030, 0230, 0137, 0020, 0064, 0070, 0306, 0337, 0137, 0046, 0053, 0136,
643 0011, 0060, 0376, 0313, 0135, 0112, 0053, 0272, 0054, 0030, 0343, 0220, 0121, 0160, 0011, 0257,
644 0060, 0377, 0205, 0256, 0033, 0270, 0165, 0153, 0327, 0343, 0341, 0217, 0052, 0153, 0005, 0156,
645 0111, 0254, 0203, 0120, 0302, 0153, 0022, 0327, 0152, 0257, 0004, 0070, 0233, 0325, 0246, 0001,
646 0077, 0070, 0375, 0043, 0030, 0330, 0210, 0000, 0074, 0337, 0225, 0176, 0376, 0347, 0177, 0136,
647 0236, 0073, 0015, 0240, 0132, 0255, 0056, 0365, 0373, 0175, 0337, 0005, 0361, 0353, 0001, 0106,
648 0307, 0001, 0130, 0245, 0231, 0375, 0003, 0054, 0110, 0015, 0017, 0152, 0132, 0031, 0124, 0173,
649 0064, 0270, 0204, 0027, 0343, 0172, 0356, 0335, 0377, 0047, 0055, 0341, 0025, 0177, 0366, 0147,
650 0214, 0241, 0321, 0350, 0240, 0331, 0354, 0204, 0144, 0017, 0026, 0353, 0364, 0223, 0277, 0126,
651 0117, 0076, 0100, 0123, 0207, 0252, 0212, 0251, 0300, 0157, 0217, 0171, 0357, 0367, 0274, 0312,
652 0300, 0214, 0061, 0264, 0132, 0255, 0045, 0000, 0173, 0163, 0105, 0000, 0375, 0176, 0277, 0312,
653 0003, 0226, 0177, 0006, 0147, 0021, 0115, 0101, 0306, 0251, 0300, 0026, 0253, 0013, 0201, 0300,
654 0211, 0352, 0124, 0353, 0165, 0022, 0006, 0015, 0264, 0340, 0362, 0137, 0101, 0125, 0210, 0303,
655 0264, 0021, 0022, 0263, 0056, 0277, 0177, 0337, 0301, 0300, 0304, 0336, 0136, 0023, 0272, 0156,
656 0044, 0036, 0300, 0007, 0155, 0235, 0076, 0117, 0011, 0072, 0236, 0073, 0026, 0100, 0307, 0241,
657 0303, 0132, 0174, 0360, 0173, 0377, 0345, 0304, 0276, 0310, 0262, 0024, 0064, 0116, 0252, 0163,
658 0107, 0000, 0204, 0020, 0127, 0061, 0020, 0273, 0026, 0200, 0073, 0231, 0307, 0141, 0017, 0005,
659 0021, 0300, 0320, 0004, 0260, 0354, 0057, 0002, 0101, 0040, 0036, 0037, 0100, 0234, 0146, 0234,
660 0316, 0033, 0032, 0135, 0302, 0313, 0337, 0156, 0053, 0274, 0374, 0127, 0170, 0276, 0177, 0362,
661 0326, 0135, 0214, 0061, 0324, 0152, 0055, 0237, 0223, 0257, 0130, 0247, 0307, 0076, 0035, 0313,
662 0256, 0011, 0340, 0040, 0200, 0200, 0214, 0300, 0270, 0361, 0001, 0056, 0255, 0227, 0215, 0265,
663 0143, 0273, 0052, 0220, 0123, 0114, 0323, 0314, 0335, 0017, 0060, 0161, 0002, 0060, 0014, 0143,
664 0331, 0056, 0200, 0350, 0124, 0377, 0171, 0263, 0160, 0170, 0062, 0220, 0255, 0001, 0330, 0261,
665 0323, 0161, 0122, 0143, 0343, 0265, 0246, 0362, 0203, 0223, 0104, 0070, 0342, 0110, 0300, 0100,
666 0317, 0332, 0272, 0213, 0214, 0316, 0247, 0323, 0351, 0243, 0136, 0157, 0307, 0164, 0362, 0315,
667 0266, 0323, 0154, 0077, 0147, 0353, 0111, 0220, 0242, 0054, 0207, 0147, 0004, 0046, 0011, 0016,
668 0142, 0034, 0047, 0240, 0040, 0010, 0220, 0044, 0311, 0105, 0000, 0223, 0012, 0006, 0232, 0070,
669 0001, 0210, 0242, 0130, 0365, 0316, 0354, 0101, 0365, 0000, 0151, 0214, 0276, 0200, 0316, 0030,
670 0000, 0347, 0303, 0342, 0253, 0342, 0311, 0112, 0204, 0007, 0023, 0202, 0167, 0220, 0260, 0020,
671 0137, 0100, 0174, 0042, 0342, 0151, 0030, 0246, 0111, 0121, 0257, 0267, 0320, 0355, 0016, 0270,
672 0316, 0251, 0203, 0064, 0133, 0147, 0073, 0336, 0344, 0010, 0321, 0251, 0001, 0070, 0235, 0323,
673 0111, 0301, 0037, 0064, 0346, 0005, 0121, 0204, 0054, 0313, 0350, 0365, 0172, 0136, 0323, 0271,
674 0072, 0167, 0004, 0140, 0232, 0346, 0262, 0267, 0026, 0200, 0044, 0111, 0040, 0002, 0277, 0036,
675 0040, 0367, 0046, 0121, 0066, 0212, 0003, 0260, 0126, 0000, 0310, 0260, 0107, 0033, 0102, 0147,
676 0352, 0350, 0047, 0021, 0277, 0055, 0266, 0067, 0336, 0040, 0231, 0023, 0056, 0132, 0303, 0260,
677 0234, 0074, 0135, 0264, 0333, 0275, 0210, 0022, 0141, 0363, 0347, 0064, 0233, 0015, 0277, 0104,
678 0176, 0367, 0116, 0226, 0211, 0103, 0003, 0030, 0244, 0002, 0176, 0220, 0326, 0313, 0140, 0125,
679 0274, 0226, 0044, 0211, 0347, 0010, 0234, 0077, 0015, 0300, 0231, 0305, 0144, 0137, 0220, 0246,
680 0251, 0334, 0107, 0021, 0264, 0012, 0320, 0151, 0033, 0043, 0173, 0337, 0312, 0003, 0020, 0123,
681 0025, 0371, 0214, 0227, 0361, 0027, 0117, 0335, 0116, 0033, 0121, 0314, 0323, 0022, 0172, 0075,
682 0035, 0215, 0106, 0173, 0230, 0256, 0033, 0246, 0061, 0024, 0152, 0370, 0054, 0020, 0242, 0253,
683 0054, 0130, 0306, 0174, 0000, 0136, 0354, 0013, 0343, 0223, 0232, 0031, 0000, 0000, 0040, 0000,
684 0111, 0104, 0101, 0124, 0001, 0201, 0252, 0252, 0276, 0061, 0072, 0227, 0004, 0300, 0030, 0253,
685 0072, 0353, 0234, 0003, 0200, 0252, 0305, 0054, 0007, 0066, 0012, 0172, 0361, 0146, 0002, 0332,
686 0076, 0000, 0026, 0123, 0245, 0117, 0164, 0276, 0241, 0166, 0173, 0134, 0015, 0303, 0135, 0253,
687 0200, 0237, 0071, 0150, 0030, 0046, 0032, 0215, 0316, 0250, 0002, 0154, 0232, 0052, 0274, 0363,
688 0340, 0064, 0133, 0064, 0023, 0106, 0222, 0034, 0215, 0123, 0262, 0346, 0003, 0170, 0227, 0001,
689 0207, 0157, 0313, 0225, 0262, 0157, 0314, 0314, 0245, 0011, 0100, 0010, 0361, 0145, 0002, 0362,
690 0312, 0201, 0371, 0242, 0372, 0034, 0377, 0066, 0233, 0175, 0007, 0001, 0320, 0204, 0141, 0267,
691 0131, 0132, 0155, 0045, 0365, 0037, 0170, 0375, 0004, 0301, 0235, 0200, 0132, 0255, 0056, 0272,
692 0335, 0101, 0354, 0002, 0045, 0007, 0111, 0015, 0237, 0365, 0210, 0104, 0227, 0023, 0260, 0225,
693 0076, 0037, 0300, 0326, 0172, 0031, 0363, 0217, 0234, 0062, 0247, 0052, 0320, 0134, 0152, 0000,
694 0224, 0322, 0221, 0017, 0300, 0276, 0040, 0257, 0172, 0343, 0263, 0205, 0174, 0055, 0301, 0014,
695 0027, 0373, 0132, 0075, 0001, 0170, 0063, 0164, 0226, 0126, 0133, 0044, 0064, 0045, 0070, 0230,
696 0044, 0370, 0000, 0016, 0312, 0341, 0357, 0365, 0164, 0264, 0132, 0235, 0221, 0272, 0177, 0020,
697 0234, 0146, 0363, 0002, 0354, 0270, 0046, 0007, 0267, 0054, 0130, 0032, 0223, 0324, 0166, 0046,
698 0123, 0152, 0025, 0272, 0164, 0210, 0126, 0052, 0361, 0166, 0231, 0137, 0037, 0200, 0313, 0004,
699 0120, 0103, 0152, 0001, 0170, 0300, 0357, 0164, 0264, 0330, 0076, 0000, 0053, 0202, 0231, 0147,
700 0002, 0104, 0265, 0332, 0112, 0222, 0053, 0300, 0007, 0063, 0077, 0333, 0057, 0272, 0365, 0266,
701 0256, 0033, 0150, 0265, 0072, 0320, 0165, 0063, 0361, 0340, 0055, 0242, 0364, 0146, 0353, 0132,
702 0055, 0063, 0324, 0212, 0046, 0155, 0046, 0314, 0007, 0360, 0216, 0155, 0060, 0153, 0354, 0213,
703 0160, 0307, 0305, 0224, 0070, 0125, 0201, 0346, 0326, 0007, 0340, 0265, 0261, 0171, 0032, 0000,
704 0245, 0214, 0013, 0176, 0277, 0006, 0140, 0071, 0001, 0051, 0015, 0263, 0377, 0375, 0353, 0364,
705 0356, 0104, 0236, 0170, 0276, 0003, 0216, 0015, 0026, 0163, 0320, 0270, 0355, 0374, 0146, 0263,
706 0073, 0212, 0342, 0233, 0324, 0140, 0057, 0146, 0353, 0351, 0232, 0034, 0166, 0112, 0160, 0334,
707 0336, 0000, 0076, 0360, 0063, 0257, 0366, 0353, 0055, 0233, 0257, 0162, 0174, 0122, 0254, 0072,
708 0217, 0004, 0340, 0063, 0001, 0224, 0141, 0055, 0000, 0347, 0162, 0275, 0155, 0002, 0360, 0074,
709 0252, 0356, 0142, 0040, 0200, 0050, 0206, 0055, 0301, 0105, 0325, 0001, 0140, 0201, 0001, 0070,
710 0301, 0124, 0036, 0024, 0030, 0024, 0274, 0346, 0157, 0055, 0135, 0366, 0320, 0357, 0353, 0011,
711 0072, 0377, 0034, 0254, 0106, 0233, 0363, 0174, 0255, 0243, 0232, 0000, 0061, 0172, 0003, 0204,
712 0201, 0337, 0347, 0377, 0032, 0276, 0325, 0074, 0065, 0001, 0030, 0143, 0023, 0351, 0017, 0270,
713 0057, 0116, 0100, 0105, 0121, 0340, 0135, 0015, 0243, 0141, 0075, 0001, 0233, 0272, 0353, 0306,
714 0373, 0355, 0165, 0277, 0012, 0157, 0255, 0074, 0304, 0133, 0227, 0217, 0052, 0341, 0025, 0026,
715 0341, 0307, 0323, 0026, 0072, 0235, 0236, 0303, 0301, 0127, 0070, 0315, 0026, 0321, 0344, 0260,
716 0226, 0002, 0211, 0313, 0074, 0215, 0253, 0362, 0163, 0375, 0137, 0236, 0317, 0235, 0053, 0145,
717 0163, 0155, 0002, 0200, 0123, 0311, 0104, 0226, 0025, 0177, 0122, 0104, 0314, 0236, 0000, 0222,
718 0204, 0121, 0312, 0147, 0230, 0155, 0317, 0130, 0170, 0013, 0260, 0344, 0203, 0063, 0272, 0222,
719 0360, 0140, 0240, 0243, 0323, 0351, 0305, 0160, 0360, 0035, 0334, 0152, 0072, 0213, 0162, 0255,
720 0266, 0043, 0260, 0225, 0244, 0071, 0110, 0300, 0004, 0303, 0063, 0147, 0247, 0125, 0025, 0150,
721 0052, 0046, 0200, 0227, 0311, 0374, 0325, 0200, 0130, 0240, 0115, 0357, 0047, 0000, 0346, 0013,
722 0005, 0316, 0243, 0165, 0127, 0370, 0114, 0037, 0254, 0111, 0060, 0006, 0364, 0373, 0003, 0164,
723 0273, 0003, 0307, 0065, 0220, 0251, 0015, 0366, 0142, 0235, 0176, 0177, 0256, 0325, 0216, 0005,
724 0350, 0164, 0114, 0120, 0072, 0056, 0123, 0037, 0107, 0345, 0347, 0152, 0000, 0236, 0015, 0371,
725 0053, 0145, 0163, 0254, 0001, 0270, 0313, 0201, 0111, 0276, 0273, 0022, 0136, 0013, 0100, 0167,
726 0335, 0170, 0336, 0315, 0216, 0126, 0351, 0371, 0271, 0375, 0356, 0375, 0370, 0340, 0367, 0067,
727 0026, 0261, 0216, 0075, 0030, 0350, 0103, 0340, 0323, 0200, 0242, 0040, 0205, 0323, 0154, 0121,
728 0111, 0314, 0236, 0303, 0254, 0230, 0016, 0003, 0325, 0252, 0234, 0012, 0374, 0343, 0261, 0357,
729 0061, 0223, 0125, 0156, 0125, 0240, 0352, 0074, 0022, 0200, 0317, 0007, 0040, 0112, 0262, 0117,
730 0053, 0212, 0337, 0026, 0314, 0326, 0000, 0306, 0263, 0265, 0023, 0270, 0316, 0207, 0345, 0116,
731 0266, 0141, 0036, 0363, 0040, 0274, 0017, 0340, 0330, 0363, 0357, 0137, 0152, 0354, 0367, 0015,
732 0364, 0172, 0372, 0050, 0175, 0171, 0072, 0113, 0172, 0305, 0072, 0375, 0054, 0231, 0034, 0336,
733 0232, 0000, 0066, 0001, 0304, 0121, 0371, 0175, 0343, 0156, 0024, 0016, 0354, 0366, 0223, 0161,
734 0264, 0333, 0371, 0322, 0000, 0056, 0136, 0274, 0050, 0061, 0306, 0112, 0136, 0220, 0311, 0262,
735 0344, 0137, 0301, 0017, 0063, 0001, 0232, 0003, 0027, 0370, 0275, 0353, 0354, 0156, 0220, 0046,
736 0133, 0367, 0017, 0166, 0324, 0371, 0075, 0377, 0316, 0031, 0277, 0160, 0232, 0035, 0154, 0022,
737 0263, 0010, 0200, 0271, 0046, 0250, 0064, 0340, 0267, 0047, 0077, 0357, 0346, 0212, 0314, 0255,
738 0012, 0124, 0176, 0372, 0351, 0247, 0305, 0057, 0175, 0351, 0113, 0346, 0134, 0020, 0000, 0200,
739 0045, 0347, 0335, 0267, 0057, 0110, 0344, 0025, 0004, 0015, 0322, 0000, 0034, 0135, 0201, 0354,
740 0025, 0000, 0177, 0071, 0260, 0350, 0374, 0374, 0140, 0207, 0140, 0060, 0111, 0020, 0102, 0140,
741 0232, 0126, 0107, 0335, 0301, 0100, 0037, 0331, 0370, 0223, 0135, 0322, 0053, 0326, 0351, 0347,
742 0341, 0132, 0335, 0065, 0001, 0006, 0211, 0124, 0176, 0377, 0330, 0167, 0023, 0207, 0125, 0027,
743 0120, 0346, 0151, 0247, 0144, 0210, 0251, 0372, 0134, 0020, 0200, 0044, 0111, 0313, 0246, 0151,
744 0372, 0212, 0201, 0270, 0312, 0201, 0261, 0020, 0023, 0300, 0223, 0014, 0144, 0325, 0002, 0010,
745 0036, 0134, 0174, 0317, 0277, 0333, 0037, 0340, 0175, 0370, 0101, 0225, 0172, 0014, 0203, 0242,
746 0337, 0327, 0241, 0353, 0346, 0324, 0226, 0363, 0026, 0331, 0151, 0266, 0150, 0044, 0346, 0062,
747 0001, 0032, 0331, 0302, 0201, 0255, 0174, 0000, 0367, 0316, 0322, 0260, 0146, 0206, 0127, 0333,
748 0034, 0126, 0005, 0232, 0017, 0002, 0240, 0224, 0126, 0275, 0166, 0365, 0250, 0032, 0120, 0130,
749 0060, 0204, 0347, 0146, 0066, 0233, 0343, 0132, 0000, 0266, 0372, 0357, 0335, 0176, 0374, 0360,
750 0111, 0300, 0154, 0316, 0367, 0005, 0270, 0325, 0175, 0206, 0176, 0137, 0307, 0140, 0140, 0270,
751 0010, 0051, 0174, 0140, 0025, 0116, 0263, 0203, 0150, 0162, 0130, 0065, 0001, 0314, 0361, 0004,
752 0225, 0065, 0027, 0300, 0043, 0242, 0050, 0102, 0222, 0044, 0014, 0006, 0003, 0227, 0006, 0113,
753 0051, 0315, 0325, 0021, 0070, 0151, 0002, 0340, 0056, 0001, 0362, 0042, 0357, 0030, 0243, 0134,
754 0026, 0265, 0332, 0202, 0215, 0115, 0000, 0167, 0131, 0147, 0170, 0300, 0034, 0356, 0013, 0340,
755 0233, 0010, 0200, 0151, 0232, 0030, 0014, 0234, 0263, 0075, 0071, 0100, 0300, 0056, 0114, 0216,
756 0170, 0327, 0113, 0074, 0004, 0340, 0060, 0001, 0022, 0206, 0003, 0273, 0374, 0005, 0214, 0037,
757 0007, 0040, 0015, 0213, 0202, 0014, 0006, 0203, 0211, 0072, 0002, 0047, 0112, 0000, 0336, 0202,
758 0240, 0143, 0023, 0300, 0037, 0217, 0117, 0031, 0343, 0202, 0337, 0064, 0031, 0172, 0075, 0163,
759 0310, 0212, 0121, 0340, 0014, 0217, 0374, 0163, 0332, 0373, 0246, 0111, 0075, 0240, 0037, 0037,
760 0243, 0160, 0232, 0025, 0046, 0107, 0264, 0171, 0073, 0176, 0237, 0044, 0034, 0330, 0013, 0176,
761 0237, 0371, 0073, 0374, 0114, 0224, 0044, 0310, 0262, 0314, 0363, 0135, 0315, 0017, 0001, 0230,
762 0246, 0131, 0365, 0016, 0010, 0253, 0034, 0030, 0247, 0244, 0267, 0263, 0162, 0260, 0203, 0011,
763 0132, 0055, 0175, 0164, 0023, 0044, 0211, 0104, 0372, 0000, 0202, 0076, 0267, 0332, 0154, 0123,
764 0350, 0272, 0011, 0135, 0067, 0206, 0321, 0172, 0044, 0365, 0240, 0055, 0234, 0146, 0007, 0333,
765 0344, 0360, 0231, 0000, 0111, 0200, 0357, 0121, 0126, 0031, 0145, 0356, 0304, 0230, 0241, 0011,
766 0340, 0165, 0226, 0017, 0253, 0002, 0315, 0217, 0011, 0040, 0010, 0302, 0262, 0267, 0137, 0237,
767 0252, 0362, 0313, 0201, 0215, 0266, 0363, 0145, 0002, 0272, 0243, 0000, 0155, 0015, 0200, 0237,
768 0237, 0357, 0167, 0326, 0121, 0152, 0165, 0323, 0321, 0165, 0323, 0343, 0120, 0041, 0205, 0323,
769 0254, 0060, 0071, 0122, 0137, 0253, 0263, 0175, 0137, 0326, 0174, 0000, 0136, 0040, 0220, 0100,
770 0010, 0064, 0155, 0362, 0135, 0202, 0047, 0356, 0003, 0360, 0226, 0003, 0163, 0136, 0224, 0207,
771 0331, 0370, 0231, 0200, 0276, 0050, 0100, 0041, 0160, 0326, 0267, 0125, 0174, 0323, 0244, 0060,
772 0115, 0023, 0206, 0141, 0302, 0064, 0251, 0243, 0334, 0066, 0131, 0170, 0140, 0027, 0046, 0307,
773 0164, 0256, 0325, 0136, 0221, 0142, 0314, 0235, 0256, 0036, 0107, 0345, 0347, 0216, 0177, 0370,
774 0023, 0325, 0113, 0245, 0362, 0174, 0233, 0000, 0000, 0252, 0376, 0114, 0100, 0325, 0007, 0334,
775 0320, 0114, 0300, 0226, 0356, 0263, 0273, 0274, 0113, 0172, 0224, 0322, 0021, 0330, 0115, 0223,
776 0306, 0054, 0362, 0131, 0070, 0315, 0246, 0351, 0064, 0133, 0264, 0153, 0045, 0304, 0032, 0217,
777 0272, 0316, 0357, 0015, 0020, 0027, 0374, 0256, 0031, 0336, 0163, 0242, 0132, 0111, 0343, 0155,
778 0127, 0235, 0047, 0002, 0130, 0366, 0136, 0244, 0246, 0251, 0276, 0004, 0234, 0360, 0176, 0000,
779 0376, 0114, 0100, 0112, 0031, 0114, 0223, 0007, 0170, 0377, 0122, 0140, 0061, 0203, 0025, 0046,
780 0307, 0244, 0256, 0125, 0222, 0010, 0164, 0235, 0105, 0067, 0007, 0211, 0123, 0036, 0234, 0122,
781 0020, 0217, 0315, 0137, 0056, 0225, 0346, 0333, 0004, 0160, 0326, 0002, 0340, 0327, 0003, 0264,
782 0277, 0213, 0233, 0010, 0144, 0315, 0376, 0235, 0116, 0337, 0023, 0363, 0137, 0254, 0323, 0027,
783 0046, 0307, 0364, 0237, 0255, 0054, 0023, 0164, 0273, 0314, 0227, 0022, 0234, 0046, 0052, 0220,
784 0062, 0346, 0152, 0325, 0155, 0125, 0316, 0322, 0274, 0340, 0167, 0225, 0331, 0237, 0171, 0002,
785 0140, 0214, 0371, 0213, 0201, 0214, 0262, 0234, 0142, 0366, 0004, 0164, 0124, 0003, 0262, 0064,
786 0200, 0142, 0006, 0053, 0110, 0154, 0066, 0114, 0016, 0073, 0045, 0270, 0351, 0350, 0016, 0224,
787 0066, 0044, 0330, 0131, 0024, 0304, 0076, 0206, 0126, 0322, 0174, 0011, 0152, 0363, 0106, 0000,
788 0125, 0257, 0012, 0143, 0145, 0071, 0061, 0227, 0016, 0020, 0232, 0011, 0330, 0160, 0152, 0000,
789 0002, 0202, 0122, 0171, 0213, 0031, 0254, 0060, 0071, 0362, 0175, 0266, 0321, 0307, 0263, 0123,
790 0202, 0133, 0055, 0075, 0165, 0042, 0320, 0170, 0022, 0144, 0136, 0303, 0141, 0344, 0060, 0237,
791 0144, 0135, 0300, 0251, 0370, 0000, 0134, 0265, 0000, 0354, 0162, 0140, 0036, 0365, 0207, 0143,
792 0104, 0001, 0000, 0332, 0155, 0303, 0165, 0303, 0343, 0076, 0324, 0142, 0006, 0053, 0114, 0216,
793 0111, 0037, 0317, 0156, 0021, 0146, 0030, 0024, 0275, 0236, 0011, 0115, 0023, 0123, 0201, 0337,
794 0302, 0200, 0351, 0333, 0125, 0323, 0264, 0371, 0136, 0005, 0340, 0125, 0060, 0121, 0174, 0325,
795 0200, 0070, 0261, 0320, 0256, 0074, 0000, 0167, 0101, 0320, 0142, 0006, 0053, 0114, 0216, 0131,
796 0271, 0167, 0316, 0241, 0334, 0154, 0350, 0320, 0124, 0061, 0035, 0116, 0300, 0334, 0351, 0360,
797 0266, 0277, 0114, 0121, 0274, 0170, 0232, 0057, 0002, 0200, 0247, 0202, 0211, 0125, 0013, 0100,
798 0346, 0072, 0100, 0202, 0324, 0047, 0347, 0052, 0200, 0263, 0051, 0343, 0301, 0234, 0301, 0016,
799 0266, 0032, 0076, 0153, 0367, 0116, 0226, 0005, 0307, 0104, 0245, 0343, 0310, 0021, 0055, 0025,
800 0370, 0141, 0147, 0261, 0172, 0073, 0150, 0225, 0374, 0205, 0101, 0221, 0163, 0125, 0240, 0351,
801 0233, 0000, 0074, 0015, 0040, 0044, 0021, 0310, 0156, 0275, 0144, 0255, 0273, 0222, 0005, 0035,
802 0350, 0007, 0311, 0344, 0230, 0257, 0173, 0027, 0066, 0116, 0234, 0004, 0220, 0064, 0037, 0300,
803 0011, 0176, 0153, 0022, 0244, 0276, 0071, 0120, 0221, 0047, 0137, 0025, 0150, 0342, 0004, 0340,
804 0265, 0141, 0134, 0004, 0140, 0057, 0021, 0122, 0176, 0042, 0020, 0000, 0264, 0133, 0356, 0142,
805 0040, 0363, 0003, 0354, 0302, 0151, 0266, 0350, 0367, 0316, 0331, 0045, 0270, 0325, 0064, 0222,
806 0001, 0337, 0063, 0341, 0331, 0321, 0200, 0056, 0163, 0131, 0221, 0047, 0336, 0037, 0160, 0142,
807 0004, 0160, 0361, 0342, 0105, 0101, 0327, 0365, 0045, 0257, 0011, 0040, 0331, 0213, 0371, 0056,
808 0023, 0200, 0362, 0157, 0220, 0303, 0007, 0140, 0047, 0002, 0035, 0314, 0331, 0172, 0277, 0114,
809 0216, 0342, 0336, 0205, 0211, 0242, 0210, 0211, 0065, 0000, 0347, 0254, 0357, 0372, 0234, 0263,
810 0024, 0156, 0307, 0001, 0170, 0314, 0000, 0273, 0312, 0026, 0233, 0151, 0002, 0350, 0164, 0072,
811 0025, 0331, 0141, 0264, 0017, 0073, 0233, 0100, 0344, 0146, 0002, 0062, 0056, 0370, 0255, 0033,
812 0153, 0304, 0326, 0000, 0012, 0247, 0331, 0274, 0001, 0173, 0276, 0315, 0065, 0247, 0117, 0052,
813 0166, 0102, 0120, 0104, 0373, 0071, 0267, 0266, 0054, 0361, 0252, 0002, 0011, 0077, 0370, 0203,
814 0077, 0130, 0171, 0356, 0271, 0347, 0132, 0063, 0115, 0000, 0262, 0054, 0373, 0142, 0000, 0044,
815 0111, 0002, 0021, 0005, 0256, 0017, 0040, 0052, 0027, 0300, 0016, 0003, 0056, 0324, 0360, 0142,
816 0266, 0236, 0025, 0223, 0303, 0115, 0000, 0106, 0152, 0360, 0133, 0132, 0260, 0247, 0321, 0054,
817 0263, 0360, 0042, 0212, 0342, 0210, 0000, 0154, 0034, 0125, 0253, 0325, 0052, 0200, 0331, 0046,
818 0000, 0147, 0133, 0360, 0261, 0315, 0044, 0101, 0040, 0202, 0327, 0374, 0201, 0031, 0026, 0010,
819 0064, 0052, 0007, 0106, 0366, 0171, 0160, 0026, 0116, 0263, 0042, 0254, 0332, 0113, 0000, 0202,
820 0157, 0234, 0046, 0005, 0276, 0163, 0022, 0364, 0232, 0306, 0166, 0115, 0000, 0135, 0327, 0135,
821 0032, 0302, 0140, 0060, 0310, 0315, 0017, 0060, 0061, 0002, 0340, 0065, 0005, 0265, 0212, 0201,
822 0020, 0117, 0137, 0100, 0306, 0265, 0177, 0254, 0013, 0065, 0061, 0030, 0230, 0303, 0233, 0275,
823 0150, 0255, 0266, 0366, 0177, 0006, 0133, 0004, 0065, 0174, 0077, 0115, 0016, 0105, 0041, 0241,
824 0076, 0200, 0270, 0340, 0347, 0231, 0000, 0014, 0200, 0050, 0133, 0165, 0001, 0275, 0337, 0345,
825 0331, 0044, 0164, 0142, 0004, 0040, 0010, 0002, 0247, 0043, 0220, 0154, 0151, 0000, 0236, 0352,
826 0047, 0101, 0045, 0273, 0335, 0155, 0301, 0203, 0113, 0201, 0025, 0116, 0263, 0331, 0000, 0366,
827 0101, 0063, 0071, 0024, 0105, 0010, 0064, 0001, 0222, 0200, 0037, 0260, 0374, 0140, 0136, 0012,
828 0220, 0004, 0311, 0162, 0232, 0373, 0211, 0242, 0072, 0363, 0004, 0300, 0133, 0256, 0020, 0105,
829 0161, 0130, 0320, 0043, 0136, 0133, 0260, 0226, 0303, 0261, 0042, 0313, 0044, 0323, 0000, 0053,
830 0234, 0146, 0105, 0214, 0103, 0336, 0327, 0112, 0210, 0325, 0252, 0336, 0064, 0231, 0277, 0071,
831 0110, 0102, 0037, 0075, 0327, 0007, 0040, 0217, 0011, 0140, 0122, 0031, 0201, 0223, 0214, 0003,
832 0360, 0325, 0002, 0120, 0024, 0305, 0367, 0260, 0130, 0230, 0006, 0320, 0164, 0152, 0000, 0223,
833 0007, 0166, 0341, 0064, 0053, 0256, 0065, 0351, 0365, 0312, 0262, 0105, 0000, 0243, 0346, 0040,
834 0051, 0027, 0347, 0230, 0135, 0026, 0314, 0161, 0010, 0101, 0020, 0240, 0050, 0376, 0016, 0101,
835 0316, 0152, 0333, 0063, 0113, 0000, 0204, 0220, 0252, 0135, 0352, 0313, 0026, 0115, 0323, 0002,
836 0056, 0234, 0353, 0075, 0101, 0323, 0225, 0012, 0234, 0136, 0003, 0050, 0234, 0146, 0205, 0311,
837 0061, 0251, 0153, 0225, 0145, 0202, 0136, 0017, 0150, 0265, 0314, 0114, 0053, 0363, 0243, 0174,
838 0000, 0317, 0111, 0250, 0234, 0022, 0172, 0163, 0143, 0002, 0170, 0231, 0153, 0224, 0336, 0350,
839 0261, 0175, 0170, 0340, 0007, 0306, 0121, 0200, 0366, 0215, 0056, 0146, 0260, 0302, 0344, 0230,
840 0265, 0147, 0153, 0217, 0313, 0070, 0161, 0000, 0141, 0340, 0007, 0033, 0026, 0005, 0361, 0234,
841 0254, 0263, 0052, 0320, 0102, 0230, 0000, 0376, 0124, 0140, 0177, 0115, 0364, 0221, 0011, 0340,
842 0040, 0200, 0255, 0055, 0023, 0375, 0076, 0233, 0340, 0351, 0146, 0031, 0354, 0223, 0375, 0315,
843 0374, 0007, 0372, 0376, 0234, 0163, 0372, 0363, 0233, 0374, 0205, 0245, 0045, 0261, 0301, 0200,
844 0371, 0046, 0253, 0104, 0300, 0167, 0232, 0375, 0214, 0002, 0356, 0272, 0100, 0320, 0264, 0122,
845 0044, 0266, 0146, 0236, 0000, 0106, 0345, 0300, 0174, 0352, 0014, 0013, 0114, 0004, 0002, 0200,
846 0116, 0147, 0334, 0004, 0365, 0352, 0125, 0023, 0127, 0257, 0232, 0050, 0244, 0220, 0131, 0224,
847 0156, 0227, 0202, 0122, 0066, 0154, 0172, 0023, 0177, 0326, 0367, 0116, 0222, 0360, 0024, 0026,
848 0051, 0225, 0265, 0211, 0152, 0000, 0302, 0004, 0115, 0000, 0337, 0062, 0240, 0125, 0017, 0220,
849 0301, 0331, 0236, 0233, 0327, 0021, 0310, 0226, 0207, 0036, 0136, 0207, 0232, 0062, 0307, 0272,
850 0220, 0102, 0246, 0051, 0117, 0074, 0171, 0044, 0023, 0370, 0201, 0141, 0151, 0074, 0067, 0074,
851 0202, 0064, 0200, 0371, 0133, 0006, 0264, 0115, 0000, 0257, 0255, 0037, 0024, 0004, 0304, 0300,
852 0160, 0357, 0331, 0065, 0174, 0371, 0153, 0177, 0011, 0273, 0173, 0375, 0240, 0073, 0031, 0172,
853 0233, 0143, 0074, 0011, 0144, 0072, 0002, 0213, 0361, 0240, 0063, 0234, 0136, 0344, 0061, 0262,
854 0354, 0317, 0222, 0035, 0045, 0313, 0376, 0054, 0363, 0357, 0043, 0163, 0311, 0055, 0226, 0103,
855 0356, 0114, 0320, 0022, 0237, 0044, 0022, 0334, 0175, 0246, 0232, 0172, 0177, 0257, 0246, 0354,
856 0274, 0314, 0200, 0076, 0032, 0363, 0143, 0002, 0070, 0057, 0112, 0121, 0224, 0000, 0265, 0047,
857 0370, 0101, 0155, 0154, 0126, 0260, 0261, 0131, 0211, 0075, 0200, 0130, 0174, 0144, 0145, 0033,
858 0054, 0131, 0366, 0147, 0323, 0001, 0157, 0036, 0340, 0147, 0231, 0301, 0317, 0362, 0003, 0077,
859 0313, 0027, 0270, 0211, 0217, 0061, 0341, 0375, 0171, 0051, 0301, 0232, 0252, 0316, 0255, 0017,
860 0240, 0032, 0132, 0013, 0300, 0251, 0366, 0344, 0004, 0336, 0105, 0001, 0177, 0126, 0315, 0041,
861 0017, 0315, 0203, 0173, 0234, 0054, 0263, 0166, 0326, 0231, 0173, 0301, 0301, 0317, 0233, 0014,
862 0001, 0100, 0325, 0264, 0371, 0064, 0001, 0300, 0131, 0005, 0160, 0022, 0000, 0363, 0134, 0364,
863 0302, 0203, 0277, 0230, 0365, 0367, 0117, 0345, 0237, 0003, 0360, 0003, 0336, 0210, 0130, 0273,
864 0217, 0206, 0062, 0237, 0032, 0200, 0323, 0116, 0261, 0101, 0056, 0313, 0062, 0167, 0031, 0060,
865 0013, 0360, 0362, 0000, 0176, 0036, 0063, 0367, 0254, 0202, 0377, 0037, 0376, 0352, 0077, 0302,
866 0035, 0247, 0356, 0300, 0221, 0043, 0207, 0361, 0340, 0303, 0017, 0340, 0153, 0137, 0376, 0217,
867 0220, 0044, 0011, 0347, 0316, 0337, 0007, 0111, 0222, 0360, 0307, 0317, 0175, 0035, 0077, 0367,
868 0251, 0237, 0305, 0277, 0371, 0127, 0377, 0026, 0047, 0117, 0236, 0300, 0162, 0165, 0031, 0365,
869 0132, 0035, 0153, 0353, 0153, 0170, 0374, 0311, 0017, 0037, 0130, 0360, 0357, 0207, 0346, 0341,
870 0133, 0005, 0200, 0267, 0221, 0116, 0376, 0004, 0060, 0261, 0125, 0000, 0333, 0004, 0010, 0257,
871 0007, 0310, 0102, 0173, 0002, 0114, 0153, 0326, 0317, 0002, 0376, 0310, 0375, 0367, 0171, 0346,
872 0027, 0104, 0021, 0167, 0237, 0071, 0215, 0017, 0076, 0270, 0212, 0077, 0373, 0326, 0267, 0361,
873 0370, 0223, 0217, 0341, 0307, 0377, 0372, 0137, 0305, 0037, 0077, 0367, 0165, 0000, 0100, 0251,
874 0244, 0341, 0073, 0337, 0376, 0056, 0000, 0340, 0207, 0376, 0302, 0047, 0360, 0342, 0013, 0057,
875 0341, 0372, 0365, 0033, 0170, 0354, 0211, 0107, 0367, 0337, 0336, 0317, 0152, 0062, 0144, 0001,
876 0357, 0076, 0354, 0317, 0063, 0001, 0174, 0216, 0363, 0071, 0061, 0001, 0010, 0143, 0314, 0125,
877 0016, 0214, 0020, 0062, 0316, 0154, 0142, 0316, 0256, 0100, 0154, 0137, 0301, 0277, 0350, 0052,
878 0277, 0050, 0010, 0070, 0166, 0154, 0023, 0217, 0374, 0300, 0303, 0370, 0346, 0067, 0276, 0205,
879 0233, 0067, 0157, 0242, 0124, 0322, 0260, 0262, 0142, 0215, 0241, 0373, 0316, 0235, 0305, 0233,
880 0127, 0336, 0262, 0006, 0203, 0054, 0341, 0314, 0075, 0167, 0143, 0145, 0165, 0005, 0004, 0044,
881 0333, 0071, 0024, 0366, 0176, 0032, 0255, 0331, 0167, 0376, 0001, 0004, 0260, 0064, 0323, 0032,
882 0300, 0257, 0374, 0312, 0257, 0224, 0001, 0210, 0316, 0013, 0023, 0004, 0301, 0312, 0004, 0364,
883 0027, 0071, 0014, 0036, 0300, 0054, 0043, 0160, 0263, 0072, 0353, 0026, 0300, 0336, 0377, 0350,
884 0307, 0076, 0202, 0323, 0167, 0337, 0205, 0112, 0245, 0202, 0117, 0374, 0320, 0123, 0020, 0105,
885 0021, 0257, 0277, 0376, 0006, 0176, 0342, 0047, 0237, 0306, 0306, 0306, 0355, 0070, 0171, 0307,
886 0011, 0374, 0360, 0217, 0374, 0167, 0170, 0360, 0241, 0013, 0000, 0200, 0123, 0167, 0336, 0201,
887 0215, 0215, 0243, 0123, 0237, 0365, 0263, 0200, 0067, 0353, 0376, 0263, 0000, 0176, 0140, 0270,
888 0044, 0316, 0334, 0241, 0000, 0222, 0344, 0117, 0011, 0006, 0040, 0375, 0350, 0217, 0376, 0150,
889 0171, 0146, 0065, 0000, 0147, 0244, 0222, 0015, 0160, 0121, 0024, 0041, 0004, 0224, 0003, 0363,
890 0021, 0102, 0141, 0357, 0347, 0266, 0377, 0123, 0237, 0370, 0230, 0353, 0031, 0174, 0342, 0223,
891 0117, 0215, 0365, 0310, 0325, 0261, 0046, 0171, 0374, 0304, 0061, 0060, 0306, 0160, 0372, 0364,
892 0135, 0341, 0304, 0134, 0330, 0373, 0271, 0357, 0077, 0052, 0234, 0303, 0271, 0243, 0262, 0054,
893 0163, 0163, 0043, 0206, 0030, 0353, 0314, 0252, 0011, 0340, 0213, 0001, 0240, 0224, 0016, 0153,
894 0001, 0370, 0357, 0023, 0245, 0024, 0355, 0126, 0033, 0272, 0141, 0000, 0001, 0046, 0301, 0324,
895 0124, 0376, 0011, 0022, 0107, 0036, 0344, 0061, 0261, 0045, 0276, 0304, 0373, 0043, 0077, 0360,
896 0317, 0261, 0312, 0217, 0314, 0373, 0003, 0242, 0044, 0242, 0122, 0251, 0100, 0226, 0375, 0352,
897 0276, 0044, 0211, 0134, 0062, 0356, 0367, 0373, 0313, 0000, 0156, 0316, 0044, 0001, 0120, 0112,
898 0253, 0116, 0326, 0142, 0214, 0215, 0010, 0200, 0171, 0236, 0230, 0040, 0210, 0250, 0355, 0325,
899 0320, 0357, 0367, 0263, 0217, 0353, 0005, 0267, 0367, 0261, 0040, 0113, 0174, 0271, 0222, 0161,
900 0046, 0360, 0357, 0067, 0171, 0014, 0145, 0000, 0364, 0173, 0175, 0034, 0077, 0161, 0302, 0167,
901 0103, 0105, 0111, 0202, 0151, 0162, 0163, 0140, 0162, 0161, 0004, 0116, 0312, 0004, 0220, 0274,
902 0032, 0200, 0141, 0030, 0303, 0013, 0361, 0004, 0007, 0111, 0062, 0132, 0255, 0026, 0030, 0233,
903 0014, 0160, 0363, 0231, 0271, 0027, 0145, 0175, 0037, 0371, 0200, 0156, 0316, 0125, 0176, 0314,
904 0200, 0346, 0341, 0025, 0035, 0260, 0034, 0257, 0336, 0152, 0131, 0324, 0014, 0062, 0307, 0244,
905 0231, 0045, 0000, 0306, 0130, 0223, 0367, 0171, 0257, 0327, 0105, 0251, 0344, 0216, 0154, 0122,
906 0125, 0015, 0204, 0020, 0364, 0172, 0275, 0264, 0310, 0230, 0340, 0254, 0237, 0017, 0242, 0146,
907 0041, 0236, 0077, 0073, 0170, 0363, 0000, 0077, 0366, 0035, 0170, 0271, 0074, 0213, 0011, 0144,
908 0245, 0113, 0242, 0204, 0122, 0251, 0354, 0301, 0021, 0320, 0151, 0167, 0203, 0046, 0331, 0372,
909 0314, 0022, 0200, 0151, 0232, 0173, 0242, 0050, 0272, 0114, 0000, 0000, 0270, 0171, 0363, 0046,
910 0326, 0326, 0326, 0134, 0043, 0102, 0024, 0104, 0334, 0175, 0372, 0036, 0274, 0370, 0342, 0013,
911 0060, 0115, 0143, 0076, 0124, 0376, 0074, 0006, 0033, 0313, 0174, 0201, 0351, 0241, 0273, 0237,
912 0041, 0275, 0373, 0250, 0362, 0043, 0263, 0227, 0037, 0023, 0001, 0277, 0040, 0012, 0070, 0173,
913 0357, 0131, 0010, 0002, 0361, 0151, 0302, 0357, 0277, 0377, 0136, 0220, 0231, 0275, 0227, 0213,
914 0266, 0216, 0311, 0010, 0371, 0345, 0137, 0376, 0345, 0253, 0000, 0066, 0234, 0352, 0313, 0351,
915 0273, 0357, 0302, 0137, 0373, 0361, 0247, 0055, 0257, 0046, 0363, 0153, 0007, 0273, 0265, 0135,
916 0364, 0372, 0335, 0302, 0336, 0307, 0042, 0205, 0364, 0346, 0110, 0034, 0163, 0274, 0304, 0027,
917 0060, 0213, 0103, 0125, 0125, 0254, 0256, 0254, 0102, 0222, 0370, 0115, 0163, 0377, 0331, 0077,
918 0375, 0035, 0274, 0366, 0352, 0353, 0336, 0257, 0076, 0370, 0352, 0127, 0277, 0172, 0142, 0146,
919 0065, 0000, 0153, 0322, 0147, 0137, 0001, 0360, 0163, 0316, 0017, 0337, 0274, 0362, 0026, 0256,
920 0137, 0273, 0216, 0315, 0315, 0115, 0337, 0016, 0252, 0246, 0141, 0343, 0350, 0346, 0310, 0141,
921 0030, 0070, 0214, 0042, 0307, 0003, 0313, 0250, 0176, 0206, 0300, 0177, 0142, 0340, 0145, 0021,
922 0063, 0015, 0113, 0101, 0142, 0234, 0015, 0022, 0114, 0242, 0171, 0230, 0014, 0054, 0203, 0275,
923 0315, 0022, 0114, 0267, 0054, 0106, 0132, 0070, 0113, 0311, 0104, 0054, 0323, 0371, 0207, 0355,
924 0110, 0206, 0365, 0003, 0110, 0340, 0057, 0277, 0371, 0346, 0133, 0170, 0375, 0265, 0067, 0170,
925 0304, 0361, 0345, 0334, 0114, 0217, 0011, 0021, 0000, 0010, 0041, 0137, 0142, 0214, 0375, 0234,
926 0327, 0014, 0370, 0367, 0377, 0356, 0017, 0360, 0163, 0237, 0372, 0133, 0050, 0071, 0012, 0035,
927 0070, 0007, 0033, 0041, 0004, 0242, 0050, 0306, 0034, 0363, 0054, 0212, 0205, 0222, 0060, 0126,
928 0046, 0177, 0122, 0036, 0332, 0103, 0274, 0175, 0131, 0214, 0303, 0261, 0114, 0263, 0157, 0242,
929 0131, 0227, 0163, 0337, 0130, 0014, 0237, 0001, 0313, 0025, 0170, 0054, 0306, 0251, 0245, 0071,
930 0237, 0361, 0254, 0317, 0110, 0372, 0363, 0210, 0107, 0124, 0356, 0375, 0033, 0315, 0006, 0276,
931 0370, 0173, 0277, 0317, 0035, 0227, 0224, 0322, 0077, 0310, 0013, 0247, 0023, 0053, 0267, 0363,
932 0374, 0363, 0317, 0277, 0371, 0304, 0023, 0117, 0374, 0010, 0143, 0354, 0270, 0133, 0325, 0357,
933 0341, 0355, 0267, 0337, 0301, 0075, 0367, 0234, 0201, 0254, 0050, 0261, 0106, 0305, 0244, 0100,
934 0077, 0036, 0143, 0054, 0023, 0350, 0263, 0250, 0354, 0361, 0126, 0050, 0130, 0334, 0253, 0317,
935 0244, 0162, 0307, 0006, 0135, 0040, 0350, 0323, 0150, 0154, 0151, 0317, 0203, 0105, 0074, 0323,
936 0254, 0044, 0304, 0300, 0330, 0164, 0101, 0157, 0313, 0366, 0366, 0066, 0376, 0371, 0077, 0375,
937 0277, 0260, 0263, 0263, 0313, 0333, 0341, 0317, 0276, 0366, 0265, 0257, 0375, 0375, 0231, 0047,
938 0000, 0000, 0170, 0374, 0361, 0307, 0257, 0000, 0370, 0031, 0133, 0317, 0261, 0301, 0331, 0152,
939 0265, 0160, 0351, 0322, 0313, 0130, 0133, 0133, 0303, 0362, 0362, 0062, 0044, 0121, 0234, 0072,
940 0350, 0023, 0073, 0247, 0322, 0370, 0014, 0062, 0105, 0064, 0262, 0164, 0052, 0173, 0326, 0070,
941 0364, 0324, 0240, 0347, 0243, 0213, 0245, 0041, 0240, 0300, 0035, 0243, 0357, 0163, 0230, 0351,
942 0023, 0357, 0174, 0130, 0014, 0147, 0137, 0376, 0240, 0007, 0200, 0166, 0253, 0215, 0077, 0375,
943 0306, 0363, 0370, 0275, 0377, 0347, 0213, 0250, 0327, 0033, 0274, 0115, 0050, 0200, 0237, 0274,
944 0162, 0345, 0312, 0173, 0271, 0151, 0352, 0230, 0260, 0074, 0363, 0314, 0063, 0277, 0306, 0030,
945 0373, 0137, 0203, 0006, 0334, 0321, 0243, 0107, 0161, 0376, 0374, 0375, 0070, 0162, 0344, 0310,
946 0050, 0122, 0060, 0216, 0015, 0312, 0270, 0266, 0035, 0307, 0346, 0363, 0126, 0131, 0141, 0234,
947 0331, 0064, 0150, 0160, 0063, 0346, 0173, 0037, 0246, 0352, 0262, 0330, 0171, 0016, 0314, 0365,
948 0104, 0235, 0237, 0217, 0276, 0241, 0041, 0360, 0362, 0134, 0023, 0367, 0167, 0042, 0256, 0323,
949 0175, 0175, 0054, 0204, 0203, 0170, 0225, 0153, 0303, 0207, 0264, 0057, 0301, 0053, 0344, 0031,
950 0104, 0335, 0157, 0026, 0245, 0336, 0073, 0217, 0315, 0050, 0037, 0142, 0214, 0005, 0376, 0226,
951 0165, 0253, 0131, 0064, 0170, 0143, 0334, 0253, 0260, 0261, 0033, 0146, 0216, 0364, 0373, 0175,
952 0134, 0275, 0172, 0015, 0227, 0136, 0272, 0204, 0166, 0273, 0035, 0006, 0247, 0277, 0367, 0325,
953 0257, 0176, 0365, 0263, 0171, 0342, 0123, 0232, 0064, 0001, 0254, 0254, 0254, 0374, 0152, 0275,
954 0136, 0077, 0315, 0030, 0173, 0232, 0067, 0140, 0157, 0334, 0270, 0201, 0353, 0327, 0257, 0103,
955 0121, 0024, 0254, 0256, 0256, 0102, 0323, 0064, 0136, 0362, 0003, 0167, 0220, 0063, 0226, 0014,
956 0174, 0141, 0333, 0007, 0155, 0023, 0066, 0063, 0006, 0035, 0057, 0352, 0267, 0343, 0236, 0163,
957 0232, 0153, 0212, 0232, 0311, 0203, 0266, 0011, 0373, 0054, 0316, 0161, 0171, 0307, 0241, 0224,
958 0306, 0332, 0076, 0315, 0165, 0173, 0217, 0235, 0346, 0232, 0222, 0074, 0323, 0274, 0175, 0110,
959 0214, 0061, 0014, 0006, 0003, 0364, 0373, 0175, 0064, 0032, 0215, 0070, 0373, 0177, 0041, 0157,
960 0360, 0117, 0105, 0003, 0000, 0200, 0247, 0237, 0176, 0132, 0334, 0334, 0334, 0374, 0077, 0000,
961 0374, 0162, 0126, 0020, 0344, 0005, 0366, 0111, 0354, 0223, 0027, 0320, 0213, 0153, 0232, 0215,
962 0153, 0232, 0041, 0371, 0354, 0322, 0322, 0322, 0337, 0377, 0322, 0227, 0276, 0144, 0316, 0045,
963 0001, 0330, 0362, 0231, 0317, 0174, 0346, 0257, 0021, 0102, 0376, 0117, 0000, 0047, 0246, 0365,
964 0360, 0147, 0171, 0360, 0116, 0212, 0360, 0212, 0153, 0312, 0176, 0115, 0063, 0042, 0357, 0021,
965 0102, 0376, 0227, 0257, 0174, 0345, 0053, 0377, 0156, 0122, 0077, 0100, 0246, 0175, 0105, 0077,
966 0373, 0263, 0077, 0253, 0255, 0254, 0254, 0174, 0232, 0122, 0372, 0077, 0023, 0102, 0356, 0236,
967 0324, 0303, 0237, 0265, 0301, 0073, 0113, 0263, 0135, 0161, 0115, 0063, 0017, 0376, 0067, 0030,
968 0143, 0277, 0323, 0353, 0365, 0176, 0347, 0271, 0347, 0236, 0353, 0115, 0362, 0207, 0310, 0176,
969 0136, 0345, 0247, 0077, 0375, 0351, 0173, 0010, 0041, 0377, 0075, 0041, 0344, 0056, 0000, 0107,
970 0010, 0041, 0022, 0317, 0156, 0344, 0074, 0110, 0342, 0371, 0073, 0172, 0017, 0200, 0070, 0216,
971 0341, 0332, 0316, 0363, 0336, 0265, 0335, 0360, 0075, 0167, 0073, 0347, 0147, 0316, 0337, 0032,
972 0236, 0027, 0157, 0037, 0327, 0157, 0073, 0354, 0116, 0342, 0271, 0036, 0337, 0276, 0204, 0220,
973 0052, 0021, 0310, 0072, 0030, 0133, 0045, 0202, 0120, 0305, 0260, 0150, 0213, 0252, 0252, 0050,
974 0225, 0112, 0211, 0154, 0321, 0064, 0166, 0173, 0232, 0175, 0342, 0354, 0147, 0030, 0072, 0032,
975 0215, 0346, 0320, 0174, 0247, 0165, 0312, 0150, 0335, 0324, 0315, 0135, 0112, 0151, 0223, 0020,
976 0302, 0170, 0336, 0061, 0373, 0163, 0112, 0051, 0367, 0075, 0147, 0037, 0146, 0357, 0147, 0077,
977 0133, 0357, 0173, 0317, 0076, 0314, 0373, 0133, 0336, 0343, 0160, 0176, 0207, 0267, 0117, 0340,
978 0147, 0236, 0143, 0004, 0336, 0036, 0000, 0133, 0224, 0322, 0067, 0045, 0111, 0372, 0352, 0037,
979 0376, 0341, 0037, 0276, 0061, 0055, 0014, 0022, 0314, 0227, 0020, 0307, 0113, 0310, 0370, 0177,
980 0234, 0317, 0170, 0337, 0307, 0371, 0056, 0366, 0113, 0222, 0044, 0361, 0236, 0263, 0367, 0074,
981 0160, 0370, 0310, 0341, 0217, 0126, 0312, 0245, 0217, 0013, 0202, 0170, 0073, 0357, 0302, 0067,
982 0067, 0067, 0160, 0354, 0330, 0061, 0314, 0253, 0064, 0032, 0015, 0274, 0366, 0332, 0353, 0176,
983 0147, 0236, 0111, 0157, 0264, 0333, 0235, 0257, 0157, 0157, 0155, 0177, 0343, 0365, 0327, 0137,
984 0277, 0144, 0030, 0306, 0260, 0117, 0166, 0254, 0027, 0315, 0270, 0035, 0215, 0330, 0046, 0316,
985 0147, 0111, 0376, 0237, 0111, 0100, 0035, 0004, 0360, 0047, 0335, 0106, 0110, 0010, 0372, 0304,
986 0144, 0160, 0354, 0344, 0261, 0215, 0073, 0117, 0335, 0371, 0227, 0227, 0227, 0227, 0376, 0222,
987 0040, 0010, 0207, 0243, 0056, 0376, 0330, 0261, 0015, 0034, 0077, 0176, 0174, 0342, 0067, 0171,
988 0122, 0032, 0161, 0243, 0321, 0300, 0253, 0257, 0276, 0026, 0272, 0215, 0151, 0322, 0255, 0166,
989 0253, 0371, 0225, 0067, 0257, 0274, 0375, 0325, 0153, 0327, 0256, 0335, 0110, 0011, 0366, 0250,
990 0155, 0151, 0102, 0042, 0310, 0112, 0002, 0336, 0357, 0012, 0002, 0110, 0051, 0102, 0202, 0231,
991 0072, 0313, 0377, 0151, 0064, 0205, 0330, 0337, 0135, 0170, 0360, 0302, 0243, 0107, 0157, 0277,
992 0355, 0307, 0145, 0105, 0171, 0224, 0044, 0350, 0203, 0175, 0354, 0330, 0046, 0116, 0234, 0070,
993 0216, 0171, 0022, 0047, 0231, 0324, 0033, 0015, 0274, 0372, 0375, 0127, 0343, 0232, 0027, 0114,
994 0037, 0014, 0276, 0175, 0343, 0346, 0255, 0177, 0175, 0351, 0305, 0113, 0377, 0065, 0307, 0131,
995 0076, 0055, 0150, 0151, 0216, 0004, 0060, 0123, 0044, 0040, 0315, 0311, 0130, 0042, 0123, 0172,
996 0345, 0141, 0066, 0370, 0276, 0223, 0044, 0111, 0174, 0350, 0103, 0017, 0375, 0205, 0103, 0207,
997 0326, 0177, 0102, 0222, 0244, 0323, 0111, 0057, 0136, 0126, 0144, 0254, 0256, 0254, 0202, 0020,
998 0141, 0256, 0010, 0300, 0111, 0157, 0242, 0040, 0044, 0330, 0217, 0020, 0105, 0125, 0077, 0174,
999 0362, 0344, 0211, 0017, 0157, 0156, 0156, 0134, 0331, 0336, 0336, 0371, 0127, 0337, 0371, 0366,
1000 0167, 0376, 0177, 0016, 0260, 0274, 0023, 0004, 0357, 0073, 0041, 0144, 0173, 0032, 0360, 0077,
1001 0211, 0230, 0050, 0223, 0374, 0357, 0375, 0216, 0315, 0032, 0260, 0346, 0125, 0365, 0317, 0113,
1002 0043, 0020, 0162, 0066, 0043, 0134, 0237, 0237, 0177, 0340, 0374, 0043, 0307, 0216, 0155, 0176,
1003 0132, 0222, 0244, 0063, 0011, 0000, 0200, 0043, 0107, 0016, 0343, 0304, 0311, 0023, 0330, 0330,
1004 0330, 0300, 0341, 0303, 0207, 0120, 0333, 0335, 0303, 0326, 0326, 0166, 0176, 0263, 0363, 0224,
1005 0037, 0142, 0245, 0134, 0206, 0132, 0322, 0160, 0375, 0332, 0165, 0274, 0367, 0336, 0373, 0330,
1006 0336, 0336, 0116, 0344, 0201, 0067, 0164, 0343, 0265, 0253, 0037, 0174, 0360, 0317, 0137, 0176,
1007 0371, 0362, 0367, 0162, 0232, 0345, 0243, 0266, 0111, 0253, 0021, 0304, 0375, 0256, 0040, 0200,
1008 0024, 0252, 0277, 0060, 0001, 0102, 0020, 0060, 0001, 0247, 0342, 0261, 0223, 0307, 0066, 0316,
1009 0235, 0075, 0373, 0214, 0242, 0252, 0117, 0306, 0271, 0110, 0121, 0024, 0261, 0261, 0161, 0024,
1010 0047, 0357, 0070, 0211, 0223, 0047, 0117, 0242, 0134, 0166, 0173, 0374, 0167, 0167, 0166, 0261,
1011 0275, 0275, 0075, 0223, 0017, 0050, 0016, 0216, 0313, 0225, 0262, 0313, 0204, 0351, 0264, 0073,
1012 0170, 0357, 0375, 0367, 0360, 0316, 0073, 0357, 0343, 0306, 0365, 0353, 0261, 0242, 0006, 0001,
1013 0240, 0337, 0353, 0375, 0351, 0367, 0057, 0277, 0366, 0233, 0127, 0257, 0136, 0275, 0076, 0141,
1014 0247, 0035, 0315, 0031, 0360, 0063, 0151, 0012, 0314, 0072, 0001, 0144, 0001, 0172, 0122, 0320,
1015 0347, 0346, 0107, 0170, 0354, 0211, 0107, 0377, 0312, 0241, 0103, 0207, 0177, 0221, 0020, 0122,
1016 0211, 0272, 0300, 0303, 0207, 0017, 0343, 0314, 0231, 0323, 0270, 0353, 0364, 0135, 0101, 0155,
1017 0240, 0000, 0000, 0173, 0273, 0273, 0330, 0336, 0336, 0231, 0333, 0125, 0200, 0162, 0271, 0214,
1018 0143, 0307, 0371, 0253, 0030, 0375, 0176, 0037, 0157, 0276, 0371, 0026, 0256, 0274, 0161, 0045,
1019 0326, 0065, 0062, 0312, 0332, 0333, 0133, 0133, 0277, 0371, 0347, 0177, 0376, 0137, 0277, 0226,
1020 0263, 0275, 0036, 0207, 0000, 0322, 0000, 0076, 0150, 0237, 0202, 0000, 0122, 0316, 0376, 0151,
1021 0110, 0200, 0267, 0117, 0256, 0032, 0305, 0312, 0112, 0245, 0374, 0350, 0207, 0037, 0373, 0337,
1022 0124, 0115, 0173, 0052, 0112, 0305, 0277, 0363, 0316, 0123, 0270, 0360, 0300, 0005, 0034, 0072,
1023 0264, 0036, 0353, 0106, 0354, 0355, 0356, 0005, 0245, 0207, 0316, 0205, 0224, 0312, 0045, 0034,
1024 0073, 0266, 0031, 0271, 0335, 0316, 0366, 0056, 0136, 0172, 0351, 0045, 0274, 0375, 0366, 0073,
1025 0221, 0333, 0366, 0272, 0275, 0077, 0372, 0326, 0363, 0177, 0366, 0153, 0355, 0166, 0273, 0223,
1026 0223, 0103, 0217, 0367, 0135, 0126, 0300, 0107, 0375, 0176, 0101, 0000, 0051, 0147, 0377, 0254,
1027 0044, 0040, 0040, 0107, 0063, 0142, 0163, 0163, 0363, 0266, 0013, 0017, 0235, 0377, 0254, 0044,
1028 0006, 0333, 0372, 0202, 0040, 0340, 0314, 0231, 0273, 0361, 0300, 0003, 0347, 0261, 0134, 0115,
1029 0126, 0325, 0271, 0266, 0127, 0303, 0356, 0356, 0376, 0023, 0100, 0332, 0145, 0302, 0122, 0271,
1030 0204, 0315, 0315, 0215, 0330, 0333, 0327, 0353, 0015, 0134, 0172, 0351, 0022, 0256, 0134, 0171,
1031 0063, 0324, 0074, 0060, 0164, 0343, 0265, 0027, 0136, 0172, 0361, 0357, 0335, 0274, 0166, 0163,
1032 0073, 0343, 0214, 0315, 0373, 0056, 0117, 0360, 0317, 0244, 0057, 0140, 0326, 0011, 0100, 0310,
1033 0001, 0340, 0111, 0201, 0237, 0230, 0020, 0116, 0235, 0072, 0165, 0362, 0276, 0373, 0317, 0376,
1034 0266, 0040, 0010, 0107, 0202, 0056, 0346, 0330, 0261, 0115, 0074, 0366, 0370, 0207, 0261, 0272,
1035 0272, 0232, 0352, 0146, 0324, 0367, 0152, 0330, 0335, 0333, 0303, 0274, 0112, 0251, 0244, 0341,
1036 0350, 0306, 0106, 0342, 0375, 0166, 0367, 0366, 0360, 0347, 0337, 0372, 0163, 0134, 0273, 0166,
1037 0075, 0160, 0033, 0323, 0244, 0267, 0136, 0271, 0374, 0312, 0147, 0336, 0177, 0347, 0375, 0017,
1038 0062, 0330, 0344, 0121, 0333, 0321, 0011, 0021, 0301, 0276, 0212, 0070, 0303, 0340, 0047, 0063,
1039 0110, 0002, 0076, 0102, 0070, 0162, 0344, 0310, 0332, 0003, 0017, 0075, 0360, 0333, 0242, 0050,
1040 0160, 0107, 0267, 0252, 0052, 0370, 0330, 0307, 0077, 0212, 0107, 0037, 0375, 0001, 0150, 0232,
1041 0226, 0372, 0206, 0364, 0373, 0175, 0364, 0172, 0175, 0020, 0102, 0042, 0136, 0210, 0261, 0315,
1042 0364, 0137, 0222, 0054, 0143, 0151, 0151, 0051, 0005, 0161, 0224, 0160, 0367, 0231, 0273, 0261,
1043 0134, 0135, 0306, 0365, 0153, 0067, 0140, 0122, 0223, 0243, 0131, 0221, 0312, 0341, 0303, 0207,
1044 0037, 0253, 0355, 0325, 0377, 0163, 0247, 0323, 0351, 0005, 0054, 0166, 0260, 0230, 0213, 0042,
1045 0336, 0367, 0054, 0346, 0166, 0151, 0337, 0027, 0004, 0220, 0121, 0375, 0117, 0363, 0076, 0063,
1046 0360, 0001, 0020, 0115, 0323, 0224, 0307, 0077, 0362, 0330, 0263, 0222, 0044, 0335, 0355, 0265,
1047 0361, 0011, 0041, 0330, 0334, 0334, 0300, 0137, 0374, 0213, 0077, 0214, 0333, 0156, 0073, 0062,
1048 0372, 0234, 0061, 0206, 0004, 0361, 0077, 0016, 0002, 0260, 0162, 0307, 0247, 0012, 0134, 0344,
1049 0107, 0046, 0162, 0012, 0002, 0260, 0357, 0025, 0143, 0014, 0353, 0353, 0153, 0070, 0175, 0372,
1050 0064, 0166, 0166, 0167, 0321, 0156, 0267, 0175, 0367, 0120, 0020, 0204, 0225, 0333, 0217, 0336,
1051 0176, 0376, 0352, 0007, 0127, 0377, 0223, 0043, 0234, 0070, 0117, 0200, 0056, 0044, 0021, 0314,
1052 0062, 0001, 0314, 0042, 0370, 0135, 0357, 0237, 0374, 0350, 0023, 0237, 0052, 0225, 0112, 0077,
1053 0354, 0004, 0276, 0050, 0210, 0040, 0204, 0340, 0301, 0207, 0037, 0300, 0023, 0117, 0074, 0016,
1054 0131, 0226, 0135, 0353, 0335, 0151, 0300, 0017, 0000, 0203, 0176, 0037, 0203, 0151, 0023, 0100,
1055 0236, 0032, 0200, 0044, 0241, 0262, 0124, 0111, 0066, 0010, 0206, 0340, 0147, 0324, 0052, 0032,
1056 0042, 0313, 0022, 0116, 0237, 0276, 0013, 0202, 0040, 0340, 0326, 0315, 0055, 0010, 0104, 0160,
1057 0101, 0110, 0024, 0205, 0333, 0017, 0035, 0076, 0104, 0337, 0173, 0367, 0275, 0357, 0345, 0014,
1058 0120, 0266, 0250, 0044, 0040, 0314, 0060, 0001, 0114, 0362, 0175, 0226, 0375, 0011, 0000, 0162,
1059 0307, 0035, 0167, 0154, 0056, 0055, 0055, 0375, 0204, 0363, 0200, 0222, 0044, 0102, 0020, 0011,
1060 0356, 0077, 0177, 0037, 0316, 0237, 0277, 0177, 0124, 0342, 0234, 0061, 0313, 0001, 0230, 0026,
1061 0374, 0143, 0255, 0102, 0160, 0274, 0346, 0214, 0004, 0004, 0222, 0372, 0272, 0355, 0256, 0322,
1062 0326, 0275, 0144, 0070, 0177, 0376, 0176, 0234, 0273, 0377, 0136, 0010, 0042, 0201, 0044, 0273,
1063 0347, 0260, 0152, 0165, 0371, 0257, 0037, 0077, 0176, 0374, 0350, 0214, 0215, 0231, 0231, 0365,
1064 0267, 0315, 0127, 0154, 0351, 0154, 0200, 0037, 0000, 0160, 0327, 0231, 0273, 0376, 0046, 0041,
1065 0104, 0165, 0172, 0370, 0005, 0101, 0304, 0311, 0073, 0356, 0300, 0205, 0013, 0027, 0100, 0115,
1066 0012, 0152, 0132, 0375, 0336, 0105, 0061, 0237, 0333, 0354, 0006, 0225, 0220, 0343, 0153, 0072,
1067 0044, 0220, 0151, 0240, 0012, 0326, 0154, 0157, 0337, 0327, 0007, 0036, 0170, 0020, 0047, 0116,
1068 0234, 0204, 0040, 0210, 0020, 0004, 0321, 0171, 0217, 0264, 0063, 0147, 0317, 0374, 0114, 0316,
1069 0023, 0107, 0336, 0140, 0237, 0031, 0142, 0220, 0346, 0024, 0334, 0171, 0035, 0043, 0325, 0303,
1070 0134, 0132, 0132, 0052, 0225, 0264, 0322, 0047, 0335, 0263, 0277, 0204, 0245, 0245, 0045, 0174,
1071 0350, 0221, 0207, 0141, 0072, 0212, 0123, 0312, 0222, 0234, 0171, 0360, 0217, 0300, 0057, 0220,
1072 0051, 0334, 0362, 0214, 0022, 0260, 0116, 0110, 0062, 0376, 0206, 0335, 0057, 0102, 0037, 0266,
1073 0217, 0003, 0200, 0107, 0036, 0175, 0030, 0265, 0132, 0015, 0355, 0126, 0033, 0375, 0301, 0330,
1074 0071, 0130, 0322, 0264, 0037, 0132, 0132, 0132, 0372, 0315, 0126, 0253, 0325, 0165, 0250, 0330,
1075 0044, 0341, 0173, 0336, 0115, 0142, 0051, 0157, 0056, 0313, 0170, 0214, 0102, 0003, 0310, 0161,
1076 0024, 0223, 0254, 0307, 0277, 0357, 0376, 0373, 0076, 0106, 0010, 0134, 0261, 0272, 0242, 0044,
1077 0342, 0334, 0375, 0367, 0201, 0200, 0270, 0146, 0177, 0101, 0310, 0153, 0366, 0007, 0004, 0102,
1078 0146, 0377, 0045, 0010, 0334, 0127, 0036, 0344, 0065, 0062, 0005, 0206, 0367, 0227, 0100, 0300,
1079 0175, 0347, 0356, 0033, 0175, 0356, 0040, 0213, 0312, 0275, 0367, 0335, 0373, 0144, 0136, 0317,
1080 0173, 0102, 0063, 0370, 0114, 0230, 0004, 0322, 0001, 0001, 0175, 0256, 0307, 0057, 0227, 0313,
1081 0147, 0175, 0237, 0225, 0064, 0334, 0166, 0333, 0021, 0060, 0146, 0216, 0146, 0054, 0105, 0121,
1082 0041, 0211, 0222, 0257, 0114, 0064, 0277, 0375, 0131, 0304, 0203, 0222, 0144, 0150, 0132, 0051,
1083 0207, 0113, 0332, 0237, 0011, 0210, 0127, 0351, 0071, 0355, 0003, 0261, 0357, 0061, 0000, 0334,
1084 0176, 0364, 0010, 0112, 0145, 0015, 0335, 0156, 0327, 0243, 0245, 0125, 0356, 0003, 0360, 0237,
1085 0163, 0034, 0007, 0014, 0013, 0050, 0363, 0116, 0000, 0154, 0302, 0044, 0340, 0074, 0376, 0350,
1086 0275, 0044, 0371, 0253, 0366, 0254, 0256, 0256, 0203, 0061, 0300, 0064, 0231, 0153, 0163, 0131,
1087 0221, 0271, 0175, 0052, 0114, 0323, 0204, 0141, 0350, 0261, 0063, 0342, 0124, 0115, 0205, 0252,
1088 0251, 0130, 0164, 0041, 0204, 0130, 0336, 0175, 0327, 0375, 0162, 0226, 0032, 0147, 0216, 0173,
1089 0154, 0141, 0163, 0165, 0165, 0015, 0273, 0073, 0173, 0136, 0302, 0071, 0232, 0043, 0343, 0261,
1090 0224, 0337, 0025, 0004, 0060, 0105, 0120, 0163, 0301, 0232, 0141, 0273, 0100, 0021, 0005, 0321,
1091 0027, 0300, 0257, 0252, 0062, 0250, 0047, 0110, 0245, 0325, 0152, 0141, 0145, 0145, 0005, 0042,
1092 0247, 0363, 0021, 0030, 0003, 0143, 0052, 0272, 0275, 0056, 0014, 0303, 0300, 0101, 0027, 0073,
1093 0126, 0140, 0354, 0320, 0143, 0076, 0327, 0302, 0140, 0320, 0207, 0256, 0017, 0174, 0332, 0223,
1094 0242, 0050, 0261, 0236, 0121, 0014, 0000, 0207, 0055, 0317, 0345, 0261, 0164, 0067, 0163, 0301,
1095 0100, 0263, 0256, 0001, 0004, 0201, 0065, 0011, 0160, 0263, 0022, 0203, 0357, 0075, 0145, 0146,
1096 0035, 0160, 0267, 0163, 0356, 0365, 0007, 0060, 0075, 0035, 0161, 0114, 0152, 0140, 0157, 0157,
1097 0017, 0107, 0157, 0077, 0072, 0354, 0004, 0353, 0177, 0372, 0212, 0252, 0102, 0037, 0014, 0320,
1098 0351, 0164, 0140, 0230, 0306, 0201, 0004, 0276, 0242, 0250, 0120, 0071, 0040, 0166, 0112, 0267,
1099 0327, 0105, 0247, 0323, 0201, 0156, 0370, 0043, 0001, 0007, 0375, 0276, 0357, 0063, 0112, 0315,
1100 0072, 0322, 0257, 0275, 0247, 0001, 0352, 0314, 0107, 0375, 0315, 0023, 0001, 0044, 0001, 0173,
1101 0154, 0340, 0146, 0330, 0307, 0365, 0336, 0320, 0351, 0015, 0157, 0346, 0356, 0366, 0366, 0266,
1102 0117, 0003, 0000, 0200, 0132, 0275, 0016, 0105, 0121, 0160, 0333, 0221, 0043, 0020, 0105, 0376,
1103 0355, 0126, 0144, 0005, 0225, 0312, 0022, 0172, 0375, 0036, 0332, 0355, 0026, 0006, 0203, 0301,
1104 0302, 0003, 0137, 0020, 0004, 0224, 0112, 0045, 0150, 0252, 0066, 0132, 0045, 0341, 0165, 0171,
1105 0143, 0140, 0150, 0265, 0232, 0350, 0166, 0273, 0150, 0066, 0133, 0034, 0177, 0012, 0270, 0205,
1106 0122, 0014, 0323, 0274, 0236, 0020, 0234, 0054, 0341, 0147, 0101, 0340, 0236, 0253, 0100, 0240,
1107 0131, 0326, 0000, 0170, 0000, 0314, 0004, 0134, 0317, 0061, 0322, 0056, 0017, 0221, 0136, 0277,
1108 0163, 0245, 0262, 0124, 0166, 0235, 0154, 0243, 0336, 0100, 0273, 0331, 0104, 0271, 0122, 0361,
1109 0134, 0004, 0305, 0255, 0133, 0067, 0101, 0251, 0211, 0215, 0243, 0033, 0320, 0324, 0122, 0240,
1110 0175, 0053, 0313, 0062, 0226, 0227, 0226, 0061, 0030, 0014, 0320, 0152, 0065, 0321, 0356, 0264,
1111 0147, 0271, 0151, 0105, 0052, 0121, 0125, 0025, 0345, 0122, 0045, 0126, 0136, 0204, 0151, 0232,
1112 0330, 0253, 0355, 0241, 0333, 0353, 0140, 0167, 0157, 0227, 0353, 0070, 0155, 0065, 0133, 0150,
1113 0066, 0233, 0176, 0215, 0241, 0323, 0273, 0002, 0167, 0054, 0177, 0334, 0367, 0131, 0300, 0135,
1114 0204, 0002, 0347, 0245, 0031, 0302, 0023, 0171, 0347, 0170, 0217, 0220, 0367, 0044, 0346, 0373,
1115 0044, 0333, 0372, 0336, 0167, 0332, 0335, 0233, 0307, 0117, 0036, 0373, 0011, 0002, 0342, 0272,
1116 0177, 0255, 0166, 0033, 0267, 0037, 0335, 0000, 0143, 0160, 0275, 0050, 0145, 0350, 0164, 0273,
1117 0350, 0367, 0173, 0220, 0145, 0011, 0113, 0225, 0045, 0210, 0222, 0010, 0121, 0024, 0041, 0012,
1118 0303, 0277, 0303, 0227, 0040, 0212, 0120, 0024, 0005, 0113, 0113, 0313, 0130, 0135, 0135, 0205,
1119 0242, 0252, 0020, 0010, 0201, 0141, 0030, 0163, 0111, 0006, 0204, 0020, 0150, 0232, 0206, 0352,
1120 0162, 0025, 0353, 0353, 0207, 0120, 0255, 0256, 0100, 0125, 0325, 0361, 0065, 0373, 0256, 0137,
1121 0200, 0050, 0212, 0350, 0367, 0373, 0330, 0331, 0335, 0106, 0273, 0323, 0306, 0366, 0366, 0056,
1122 0114, 0203, 0372, 0356, 0053, 0000, 0174, 0367, 0205, 0027, 0320, 0353, 0372, 0172, 0147, 0014,
1123 0136, 0172, 0361, 0322, 0377, 0336, 0355, 0166, 0007, 0041, 0140, 0117, 0002, 0322, 0054, 0344,
1124 0061, 0323, 0246, 0301, 0274, 0231, 0000, 0161, 0146, 0367, 0070, 0063, 0171, 0026, 0015, 0000,
1125 0273, 0273, 0273, 0365, 0101, 0177, 0360, 0015, 0125, 0125, 0077, 0341, 0062, 0003, 0266, 0166,
1126 0160, 0375, 0372, 0165, 0034, 0075, 0352, 0057, 0355, 0117, 0015, 0023, 0133, 0073, 0073, 0350,
1127 0164, 0273, 0150, 0267, 0333, 0330, 0330, 0330, 0104, 0245, 0022, 0220, 0034, 0343, 0000, 0272,
1128 0252, 0250, 0130, 0137, 0135, 0007, 0143, 0014, 0235, 0156, 0007, 0235, 0116, 0033, 0355, 0116,
1129 0007, 0275, 0136, 0167, 0146, 0011, 0101, 0121, 0024, 0224, 0264, 0022, 0112, 0245, 0062, 0312,
1130 0345, 0062, 0104, 0101, 0014, 0234, 0106, 0275, 0237, 0350, 0272, 0216, 0355, 0235, 0155, 0064,
1131 0233, 0015, 0324, 0033, 0015, 0264, 0332, 0155, 0176, 0160, 0021, 0041, 0270, 0366, 0336, 0125,
1132 0354, 0355, 0370, 0123, 0244, 0173, 0375, 0376, 0237, 0354, 0354, 0354, 0064, 0043, 0200, 0037,
1133 0127, 0063, 0130, 0350, 0154, 0300, 0171, 0063, 0001, 0220, 0105, 0165, 0347, 0260, 0165, 0232,
1134 0350, 0060, 0002, 0200, 0275, 0377, 0356, 0007, 0377, 0342, 0356, 0173, 0116, 0077, 0005, 0117,
1135 0060, 0325, 0245, 0027, 0057, 0015, 0147, 0274, 0145, 0356, 0105, 0065, 0033, 0115, 0164, 0333,
1136 0035, 0354, 0325, 0152, 0330, 0334, 0330, 0300, 0346, 0306, 0061, 0250, 0252, 0346, 0033, 0023,
1137 0074, 0173, 0130, 0121, 0124, 0254, 0256, 0254, 0331, 0116, 0056, 0164, 0173, 0135, 0164, 0273,
1138 0135, 0164, 0273, 0035, 0164, 0173, 0135, 0364, 0373, 0375, 0251, 0223, 0202, 0054, 0053, 0320,
1139 0206, 0135, 0213, 0064, 0255, 0204, 0222, 0126, 0202, 0044, 0111, 0321, 0043, 0234, 0171, 0035,
1140 0246, 0024, 0073, 0073, 0333, 0330, 0331, 0335, 0106, 0263, 0325, 0102, 0155, 0257, 0006, 0323,
1141 0014, 0356, 0205, 0331, 0250, 0067, 0360, 0312, 0053, 0227, 0171, 0243, 0306, 0170, 0357, 0355,
1142 0267, 0277, 0020, 0001, 0350, 0244, 0263, 0072, 0233, 0360, 0373, 0175, 0125, 0265, 0147, 0126,
1143 0173, 0304, 0144, 0253, 0002, 0145, 0075, 0046, 0371, 0304, 0047, 0237, 0172, 0246, 0134, 0251,
1144 0374, 0044, 0357, 0344, 0057, 0134, 0270, 0037, 0207, 0216, 0034, 0016, 0015, 0003, 0226, 0144,
1145 0031, 0153, 0053, 0053, 0070, 0176, 0354, 0204, 0245, 0021, 0224, 0053, 0041, 0154, 0310, 0020,
1146 0061, 0215, 0202, 0201, 0141, 0320, 0037, 0140, 0240, 0367, 0061, 0030, 0350, 0320, 0365, 0001,
1147 0006, 0203, 0001, 0006, 0372, 0000, 0206, 0141, 0300, 0064, 0115, 0230, 0246, 0365, 0067, 0054,
1148 0020, 0311, 0016, 0273, 0265, 0136, 0022, 0044, 0121, 0204, 0044, 0313, 0120, 0024, 0005, 0212,
1149 0254, 0100, 0226, 0144, 0310, 0262, 0014, 0125, 0325, 0106, 0253, 0033, 0321, 0274, 0303, 0047,
1150 0070, 0303, 0060, 0260, 0275, 0175, 0013, 0133, 0333, 0133, 0150, 0064, 0232, 0250, 0325, 0366,
1151 0240, 0207, 0054, 0213, 0062, 0306, 0260, 0275, 0265, 0205, 0227, 0057, 0135, 0346, 0176, 0337,
1152 0152, 0065, 0377, 0345, 0037, 0377, 0321, 0327, 0377, 0031, 0362, 0251, 0014, 0224, 0127, 0341,
1153 0217, 0242, 0042, 0120, 0206, 0363, 0233, 0164, 0135, 0300, 0324, 0004, 0260, 0162, 0150, 0245,
1154 0372, 0304, 0143, 0217, 0177, 0121, 0024, 0305, 0023, 0274, 0223, 0277, 0367, 0276, 0263, 0070,
1155 0172, 0364, 0266, 0310, 0307, 0054, 0212, 0042, 0252, 0325, 0145, 0154, 0156, 0154, 0142, 0163,
1156 0363, 0030, 0016, 0037, 0072, 0302, 0215, 0040, 0214, 0236, 0124, 0347, 0143, 0173, 0306, 0030,
1157 0352, 0215, 0072, 0266, 0167, 0266, 0260, 0263, 0275, 0215, 0275, 0172, 0015, 0215, 0106, 0303,
1158 0012, 0237, 0216, 0030, 0015, 0327, 0257, 0335, 0300, 0353, 0234, 0026, 0143, 0103, 0247, 0341,
1159 0273, 0337, 0372, 0346, 0237, 0375, 0315, 0132, 0255, 0326, 0106, 0076, 0325, 0174, 0363, 0250,
1160 0376, 0073, 0263, 0325, 0200, 0346, 0205, 0000, 0246, 0131, 0031, 0070, 0361, 0377, 0167, 0335,
1161 0165, 0307, 0311, 0263, 0347, 0316, 0375, 0013, 0102, 0010, 0267, 0326, 0327, 0332, 0332, 0072,
1162 0316, 0137, 0270, 0057, 0026, 0224, 0011, 0054, 0207, 0331, 0312, 0312, 0012, 0116, 0335, 0161,
1163 0012, 0267, 0337, 0166, 0073, 0326, 0327, 0016, 0215, 0302, 0150, 0131, 0304, 0254, 0032, 0255,
1164 0044, 0260, 0044, 0132, 0171, 0256, 0333, 0333, 0240, 0337, 0335, 0335, 0301, 0315, 0133, 0067,
1165 0260, 0273, 0273, 0213, 0106, 0263, 0211, 0176, 0257, 0037, 0213, 0350, 0010, 0010, 0136, 0172,
1166 0351, 0022, 0352, 0265, 0072, 0377, 0370, 0224, 0355, 0275, 0362, 0362, 0345, 0277, 0375, 0356,
1167 0273, 0357, 0176, 0200, 0374, 0252, 0003, 0117, 0242, 0034, 0370, 0114, 0365, 0006, 0230, 0227,
1168 0306, 0040, 0171, 0000, 0176, 0142, 0375, 0000, 0316, 0235, 0077, 0367, 0300, 0251, 0123, 0167,
1169 0374, 0066, 0041, 0244, 0034, 0244, 0122, 0237, 0073, 0167, 0037, 0126, 0327, 0327, 0022, 0315,
1170 0242, 0252, 0246, 0142, 0171, 0151, 0011, 0167, 0234, 0070, 0211, 0315, 0315, 0143, 0130, 0133,
1171 0135, 0307, 0362, 0162, 0065, 0062, 0050, 0042, 0002, 0245, 0311, 0110, 0202, 0245, 0337, 0276,
1172 0333, 0353, 0242, 0126, 0333, 0303, 0136, 0155, 0017, 0037, 0134, 0375, 0000, 0173, 0265, 0032,
1173 0332, 0355, 0066, 0372, 0234, 0300, 0235, 0060, 0163, 0144, 0167, 0147, 0027, 0337, 0277, 0374,
1174 0375, 0060, 0046, 0152, 0275, 0375, 0326, 0273, 0237, 0271, 0174, 0371, 0362, 0053, 0310, 0277,
1175 0237, 0137, 0336, 0375, 0001, 0146, 0146, 0366, 0237, 0027, 0002, 0000, 0246, 0327, 0034, 0044,
1176 0165, 0107, 0240, 0263, 0147, 0317, 0336, 0163, 0347, 0335, 0247, 0236, 0025, 0210, 0160, 0133,
1177 0030, 0240, 0317, 0237, 0277, 0037, 0252, 0252, 0202, 0046, 0124, 0247, 0005, 0042, 0100, 0053,
1178 0153, 0130, 0251, 0256, 0340, 0304, 0361, 0343, 0270, 0355, 0360, 0155, 0130, 0133, 0137, 0307,
1179 0152, 0165, 0025, 0212, 0242, 0306, 0262, 0267, 0343, 0176, 0220, 0146, 0173, 0152, 0232, 0150,
1180 0064, 0033, 0150, 0064, 0352, 0330, 0331, 0333, 0301, 0365, 0033, 0327, 0261, 0273, 0273, 0207,
1181 0156, 0247, 0203, 0156, 0267, 0233, 0374, 0172, 0005, 0001, 0275, 0156, 0027, 0257, 0134, 0272,
1182 0214, 0376, 0040, 0230, 0060, 0250, 0111, 0257, 0137, 0171, 0343, 0315, 0137, 0171, 0343, 0215,
1183 0067, 0256, 0144, 0000, 0177, 0220, 0332, 0077, 0251, 0016, 0101, 0105, 0147, 0240, 0051, 0230,
1184 0002, 0131, 0232, 0202, 0246, 0352, 0011, 0170, 0374, 0370, 0361, 0333, 0356, 0277, 0160, 0377,
1185 0077, 0221, 0044, 0361, 0134, 0330, 0305, 0150, 0212, 0206, 0173, 0357, 0277, 0007, 0225, 0112,
1186 0045, 0123, 0036, 0000, 0021, 0004, 0150, 0232, 0206, 0043, 0207, 0017, 0343, 0360, 0241, 0333,
1187 0160, 0370, 0320, 0041, 0254, 0256, 0256, 0141, 0251, 0122, 0201, 0246, 0152, 0320, 0064, 0015,
1188 0252, 0043, 0322, 0056, 0211, 0103, 0221, 0267, 0101, 0177, 0060, 0030, 0026, 0047, 0355, 0242,
1189 0327, 0353, 0241, 0336, 0250, 0143, 0157, 0157, 0017, 0073, 0273, 0073, 0330, 0331, 0336, 0102,
1190 0253, 0143, 0315, 0356, 0111, 0063, 0035, 0275, 0216, 0321, 0126, 0263, 0211, 0327, 0136, 0175,
1191 0035, 0375, 0136, 0270, 0246, 0240, 0033, 0372, 0313, 0057, 0175, 0357, 0322, 0337, 0275, 0161,
1192 0343, 0306, 0066, 0322, 0165, 0002, 0116, 0002, 0376, 0074, 0233, 0204, 0242, 0040, 0200, 0374,
1193 0115, 0201, 0151, 0374, 0037, 0335, 0010, 0264, 0044, 0311, 0037, 0171, 0374, 0211, 0117, 0055,
1194 0055, 0055, 0377, 0064, 0042, 0002, 0255, 0104, 0111, 0304, 0135, 0167, 0336, 0211, 0103, 0107,
1195 0016, 0015, 0075, 0363, 0371, 0215, 0015, 0121, 0020, 0040, 0311, 0022, 0044, 0111, 0302, 0241,
1196 0365, 0303, 0250, 0224, 0104, 0034, 0164, 0140, 0000, 0000, 0006, 0051, 0111, 0104, 0101, 0124,
1197 0113, 0320, 0112, 0326, 0062, 0235, 0246, 0151, 0276, 0265, 0171, 0257, 0364, 0372, 0075, 0364,
1198 0172, 0175, 0164, 0173, 0326, 0014, 0136, 0157, 0064, 0320, 0355, 0166, 0140, 0030, 0006, 0014,
1199 0335, 0200, 0111, 0363, 0323, 0142, 0005, 0301, 0132, 0165, 0330, 0336, 0332, 0301, 0333, 0157,
1200 0275, 0035, 0272, 0374, 0147, 0373, 0373, 0132, 0315, 0346, 0027, 0376, 0364, 0033, 0317, 0377,
1201 0236, 0141, 0061, 0150, 0036, 0135, 0202, 0363, 0154, 0053, 0026, 0106, 0000, 0050, 0010, 0040,
1202 0037, 0123, 0040, 0117, 0000, 0013, 0051, 0101, 0037, 0110, 0006, 0347, 0056, 0234, 0273, 0160,
1203 0362, 0370, 0211, 0137, 0025, 0045, 0061, 0126, 0067, 0340, 0245, 0245, 0012, 0116, 0235, 0072,
1204 0205, 0245, 0352, 0062, 0014, 0323, 0004, 0215, 0006, 0301, 0134, 0213, 0050, 0212, 0220, 0104,
1205 0021, 0215, 0106, 0003, 0357, 0276, 0375, 0036, 0132, 0355, 0126, 0254, 0375, 0014, 0323, 0170,
1206 0343, 0375, 0167, 0076, 0370, 0265, 0313, 0227, 0057, 0277, 0214, 0364, 0055, 0303, 0343, 0364,
1207 0355, 0313, 0322, 0130, 0164, 0056, 0132, 0203, 0317, 0043, 0001, 0354, 0047, 0011, 0304, 0371,
1208 0316, 0265, 0235, 0054, 0313, 0342, 0043, 0217, 0076, 0362, 0143, 0353, 0153, 0153, 0077, 0117,
1209 0004, 0162, 0070, 0266, 0363, 0117, 0121, 0161, 0307, 0251, 0223, 0130, 0133, 0137, 0003, 0010,
1210 0301, 0140, 0060, 0230, 0373, 0234, 0000, 0102, 0010, 0024, 0125, 0005, 0050, 0303, 0356, 0356,
1211 0056, 0336, 0171, 0347, 0035, 0350, 0003, 0075, 0366, 0376, 0224, 0322, 0255, 0275, 0235, 0275,
1212 0377, 0373, 0073, 0337, 0371, 0356, 0227, 0165, 0135, 0067, 0023, 0202, 0075, 0157, 0240, 0057,
1213 0004, 0370, 0347, 0225, 0000, 0110, 0016, 0000, 0117, 0062, 0263, 0307, 0006, 0174, 0320, 0167,
1214 0253, 0253, 0113, 0225, 0013, 0017, 0076, 0374, 0077, 0055, 0057, 0057, 0075, 0035, 0264, 0134,
1215 0030, 0046, 0053, 0325, 0052, 0216, 0156, 0156, 0240, 0132, 0255, 0102, 0226, 0145, 0230, 0246,
1216 0201, 0201, 0256, 0317, 0054, 0051, 0020, 0142, 0025, 0102, 0021, 0005, 0011, 0246, 0241, 0243,
1217 0136, 0153, 0340, 0372, 0265, 0353, 0150, 0064, 0033, 0211, 0217, 0305, 0050, 0333, 0153, 0064,
1218 0233, 0377, 0346, 0205, 0357, 0276, 0360, 0377, 0072, 0152, 0374, 0061, 0144, 0233, 0375, 0263,
1219 0000, 0077, 0355, 0276, 0050, 0010, 0140, 0066, 0111, 0040, 0355, 0214, 0037, 0227, 0030, 0106,
1220 0257, 0345, 0345, 0145, 0355, 0374, 0003, 0347, 0377, 0362, 0352, 0312, 0312, 0117, 0012, 0242,
1221 0160, 0107, 0172, 0233, 0131, 0300, 0341, 0303, 0207, 0260, 0276, 0276, 0216, 0112, 0245, 0002,
1222 0111, 0125, 0040, 0016, 0153, 0350, 0367, 0246, 0030, 0016, 0054, 0010, 0002, 0124, 0105, 0001,
1223 0021, 0254, 0072, 0210, 0203, 0201, 0216, 0116, 0247, 0143, 0205, 0364, 0156, 0355, 0202, 0262,
1224 0364, 0176, 0002, 0323, 0064, 0337, 0255, 0327, 0033, 0377, 0337, 0013, 0337, 0175, 0341, 0313,
1225 0335, 0156, 0267, 0237, 0000, 0370, 0131, 0234, 0201, 0151, 0374, 0010, 0163, 0013, 0376, 0171,
1226 0046, 0000, 0044, 0000, 0345, 0276, 0202, 0076, 0350, 0365, 0340, 0203, 0017, 0076, 0162, 0370,
1227 0366, 0303, 0377, 0203, 0246, 0252, 0237, 0004, 0240, 0344, 0165, 0123, 0112, 0345, 0022, 0252,
1228 0313, 0125, 0124, 0052, 0126, 0042, 0216, 0242, 0052, 0220, 0044, 0011, 0242, 0044, 0016, 0173,
1229 0023, 0010, 0040, 0144, 0030, 0245, 0307, 0340, 0363, 0330, 0013, 0202, 0000, 0020, 0273, 0051,
1230 0007, 0300, 0030, 0005, 0245, 0024, 0246, 0141, 0302, 0060, 0014, 0014, 0372, 0003, 0264, 0073,
1231 0155, 0164, 0332, 0035, 0064, 0232, 0115, 0164, 0073, 0335, 0334, 0036, 0050, 0143, 0254, 0337,
1232 0357, 0367, 0377, 0313, 0255, 0133, 0133, 0377, 0341, 0322, 0213, 0227, 0136, 0210, 0251, 0326,
1233 0317, 0072, 0031, 0240, 0040, 0200, 0351, 0222, 0100, 0336, 0240, 0317, 0233, 0000, 0134, 0347,
1234 0175, 0350, 0320, 0241, 0352, 0351, 0063, 0247, 0077, 0126, 0135, 0136, 0372, 0230, 0242, 0252,
1235 0117, 0004, 0005, 0023, 0055, 0252, 0060, 0306, 0332, 0203, 0176, 0377, 0133, 0315, 0106, 0363,
1236 0117, 0256, 0134, 0171, 0353, 0117, 0167, 0166, 0166, 0032, 0010, 0116, 0326, 0311, 0033, 0370,
1237 0131, 0235, 0207, 0163, 0015, 0376, 0105, 0040, 0200, 0040, 0307, 0140, 0134, 0300, 0046, 0005,
1238 0264, 0220, 0047, 0370, 0275, 0237, 0227, 0112, 0045, 0365, 0276, 0373, 0356, 0175, 0164, 0155,
1239 0175, 0355, 0007, 0025, 0105, 0375, 0260, 0020, 0320, 0160, 0164, 0336, 0205, 0122, 0172, 0265,
1240 0337, 0353, 0175, 0173, 0267, 0126, 0173, 0356, 0265, 0313, 0257, 0175, 0307, 0241, 0342, 0007,
1241 0201, 0075, 0057, 0022, 0110, 0103, 0010, 0064, 0345, 0167, 0050, 0010, 0140, 0177, 0264, 0001,
1242 0041, 0047, 0000, 0347, 0246, 0356, 0307, 0001, 0077, 0357, 0377, 0123, 0247, 0116, 0155, 0036,
1243 0335, 0074, 0372, 0150, 0245, 0134, 0172, 0110, 0126, 0324, 0373, 0104, 0121, 0070, 0205, 0371,
1244 0353, 0345, 0100, 0115, 0323, 0170, 0147, 0060, 0060, 0056, 0167, 0072, 0255, 0027, 0257, 0136,
1245 0273, 0376, 0355, 0367, 0337, 0171, 0377, 0232, 0007, 0324, 0210, 0001, 0370, 0111, 0220, 0300,
1246 0044, 0010, 0141, 0356, 0100, 0203, 0005, 0044, 0201, 0124, 0313, 0166, 0071, 0003, 0076, 0065,
1247 0360, 0021, 0120, 0221, 0150, 0165, 0165, 0265, 0174, 0362, 0316, 0223, 0347, 0252, 0313, 0325,
1248 0373, 0025, 0125, 0271, 0123, 0226, 0344, 0123, 0242, 0050, 0234, 0232, 0025, 0263, 0201, 0061,
1249 0326, 0066, 0114, 0363, 0075, 0303, 0060, 0336, 0036, 0364, 0373, 0157, 0067, 0353, 0255, 0227,
1250 0337, 0175, 0367, 0335, 0127, 0207, 0331, 0171, 0100, 0362, 0042, 0034, 0323, 0046, 0201, 0254,
1251 0313, 0212, 0050, 0010, 0140, 0166, 0375, 0002, 0323, 0002, 0174, 0126, 0360, 0107, 0275, 0367,
1252 0375, 0075, 0171, 0162, 0363, 0350, 0372, 0372, 0241, 0223, 0152, 0251, 0174, 0233, 0242, 0050,
1253 0033, 0262, 0044, 0036, 0021, 0105, 0351, 0210, 0040, 0212, 0267, 0023, 0001, 0145, 0201, 0010,
1254 0313, 0103, 0222, 0110, 0133, 0002, 0316, 0144, 0214, 0165, 0030, 0143, 0015, 0312, 0150, 0207,
1255 0032, 0364, 0226, 0151, 0032, 0267, 0014, 0303, 0330, 0352, 0017, 0364, 0233, 0335, 0156, 0367,
1256 0306, 0316, 0326, 0316, 0173, 0127, 0257, 0136, 0275, 0205, 0340, 0216, 0272, 0054, 0047, 0022,
1257 0230, 0066, 0021, 0304, 0045, 0003, 0024, 0004, 0060, 0333, 0104, 0040, 0114, 0021, 0354, 0102,
1258 0300, 0071, 0104, 0175, 0026, 0006, 0370, 0120, 0022, 0210, 0170, 0017, 0130, 0313, 0220, 0152,
1259 0145, 0245, 0262, 0274, 0266, 0274, 0026, 0053, 0050, 0151, 0257, 0271, 0267, 0335, 0256, 0267,
1260 0233, 0315, 0146, 0263, 0357, 0001, 0057, 0070, 0377, 0307, 0151, 0253, 0235, 0246, 0142, 0116,
1261 0224, 0066, 0100, 0367, 0131, 0073, 0230, 0173, 0220, 0340, 0000, 0221, 0300, 0264, 0147, 0372,
1262 0114, 0052, 0177, 0014, 0022, 0210, 0103, 0004, 0141, 0317, 0071, 0121, 0146, 0161, 0002, 0022,
1263 0210, 0042, 0203, 0074, 0265, 0201, 0375, 0324, 0014, 0120, 0020, 0300, 0301, 0046, 0002, 0344,
1264 0360, 0135, 0142, 0225, 0077, 0201, 0026, 0020, 0364, 0214, 0223, 0074, 0167, 0226, 0221, 0004,
1265 0302, 0212, 0161, 0002, 0371, 0233, 0001, 0050, 0200, 0137, 0020, 0300, 0064, 0210, 0040, 0011,
1266 0370, 0171, 0377, 0013, 0031, 0125, 0376, 0050, 0055, 0040, 0017, 0360, 0347, 0115, 0002, 0131,
1267 0374, 0001, 0263, 0340, 0043, 0130, 0110, 0100, 0034, 0104, 0231, 0226, 0163, 0057, 0211, 0303,
1268 0057, 0053, 0370, 0243, 0064, 0201, 0074, 0236, 0067, 0213, 0371, 0177, 0126, 0177, 0100, 0126,
1269 0142, 0110, 0113, 0004, 0070, 0110, 0340, 0077, 0310, 0004, 0220, 0205, 0010, 0322, 0202, 0077,
1270 0010, 0354, 0121, 0132, 0100, 0032, 0273, 0237, 0114, 0360, 0131, 0247, 0165, 0004, 0206, 0201,
1271 0077, 0017, 0237, 0100, 0036, 0044, 0200, 0203, 0002, 0374, 0202, 0000, 0322, 0021, 0101, 0134,
1272 0360, 0307, 0235, 0365, 0323, 0330, 0374, 0211, 0275, 0377, 0011, 0307, 0001, 0233, 0020, 0011,
1273 0244, 0365, 0005, 0044, 0365, 0017, 0040, 0003, 0011, 0340, 0240, 0000, 0277, 0040, 0200, 0144,
1274 0104, 0060, 0011, 0225, 0037, 0310, 0346, 0370, 0343, 0275, 0117, 0002, 0176, 0222, 0002, 0350,
1275 0121, 0044, 0220, 0145, 0131, 0060, 0211, 0006, 0060, 0051, 0155, 0340, 0100, 0016, 0370, 0102,
1276 0302, 0211, 0040, 0217, 0131, 0077, 0111, 0137, 0302, 0064, 0016, 0277, 0151, 0251, 0377, 0161,
1277 0034, 0202, 0171, 0220, 0300, 0264, 0115, 0202, 0003, 0075, 0320, 0013, 0111, 0256, 0025, 0114,
1278 0122, 0345, 0217, 0003, 0372, 0044, 0052, 0077, 0111, 0061, 0006, 0330, 0004, 0110, 0040, 0056,
1279 0031, 0044, 0371, 0054, 0255, 0203, 0020, 0007, 0035, 0370, 0005, 0001, 0244, 0277, 0127, 0151,
1280 0034, 0175, 0171, 0250, 0374, 0151, 0226, 0375, 0110, 0016, 0317, 0075, 0115, 0100, 0120, 0134,
1281 0300, 0307, 0001, 0172, 0336, 0046, 0101, 0041, 0005, 0001, 0114, 0204, 0014, 0200, 0351, 0007,
1282 0372, 0220, 0011, 0203, 0077, 0057, 0022, 0310, 0323, 0037, 0220, 0206, 0004, 0012, 0051, 0010,
1283 0140, 0152, 0144, 0020, 0027, 0360, 0223, 0264, 0373, 0047, 0345, 0007, 0110, 0033, 0020, 0224,
1284 0067, 0011, 0304, 0355, 0352, 0133, 0110, 0101, 0000, 0373, 0346, 0063, 0100, 0006, 0022, 0110,
1285 0253, 0005, 0114, 0022, 0374, 0171, 0222, 0100, 0226, 0100, 0041, 0024, 0263, 0174, 0101, 0000,
1286 0213, 0100, 0010, 0171, 0330, 0375, 0323, 0006, 0377, 0044, 0110, 0040, 0213, 0077, 0240, 0220,
1287 0202, 0000, 0346, 0332, 0144, 0310, 0323, 0356, 0117, 0003, 0176, 0222, 0002, 0350, 0151, 0174,
1288 0000, 0171, 0371, 0003, 0012, 0051, 0010, 0340, 0100, 0220, 0102, 0026, 0042, 0210, 0172, 0266,
1289 0171, 0072, 0001, 0263, 0372, 0000, 0012, 0260, 0027, 0004, 0120, 0110, 0314, 0347, 0263, 0137,
1290 0340, 0217, 0103, 0004, 0131, 0111, 0240, 0220, 0202, 0000, 0012, 0311, 0351, 0371, 0355, 0207,
1291 0023, 0060, 0216, 0071, 0120, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110,
1292 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041,
1293 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205,
1294 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024, 0122, 0110, 0041, 0205, 0024,
1295 0122, 0110, 0106, 0371, 0157, 0300, 0217, 0357, 0273, 0256, 0250, 0302, 0177, 0000, 0000, 0000,
1296 0000, 0111, 0105, 0116, 0104, 0256, 0102, 0140, 0202, 0000, 0000, 0050, 0165, 0165, 0141, 0171,
1297 0051, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0055, 0141, 0165, 0164,
1298 0150, 0056, 0165, 0151, 0000, 0000, 0000, 0000, 0005, 0034, 0000, 0000, 0000, 0000, 0000, 0000,
1299 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145, 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061,
1300 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157, 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124,
1301 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143,
1302 0145, 0076, 0012, 0040, 0040, 0074, 0041, 0055, 0055, 0040, 0151, 0156, 0164, 0145, 0162, 0146,
1303 0141, 0143, 0145, 0055, 0162, 0145, 0161, 0165, 0151, 0162, 0145, 0163, 0040, 0147, 0164, 0153,
1304 0053, 0040, 0062, 0056, 0061, 0062, 0040, 0055, 0055, 0076, 0012, 0040, 0040, 0074, 0157, 0142,
1305 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0104,
1306 0151, 0141, 0154, 0157, 0147, 0042, 0040, 0151, 0144, 0075, 0042, 0141, 0165, 0164, 0150, 0042,
1307 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1308 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
1309 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1310 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1311 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0162, 0144, 0145, 0162, 0137, 0167, 0151, 0144,
1312 0164, 0150, 0042, 0076, 0065, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
1313 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
1314 0141, 0155, 0145, 0075, 0042, 0164, 0151, 0164, 0154, 0145, 0042, 0040, 0164, 0162, 0141, 0156,
1315 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0101,
1316 0165, 0164, 0150, 0145, 0156, 0164, 0151, 0143, 0141, 0164, 0151, 0157, 0156, 0040, 0162, 0145,
1317 0161, 0165, 0151, 0162, 0145, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1318 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1319 0156, 0141, 0155, 0145, 0075, 0042, 0155, 0157, 0144, 0141, 0154, 0042, 0076, 0124, 0162, 0165,
1320 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
1321 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1322 0042, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156,
1323 0042, 0076, 0143, 0145, 0156, 0164, 0145, 0162, 0055, 0157, 0156, 0055, 0160, 0141, 0162, 0145,
1324 0156, 0164, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1325 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1326 0075, 0042, 0144, 0145, 0163, 0164, 0162, 0157, 0171, 0137, 0167, 0151, 0164, 0150, 0137, 0160,
1327 0141, 0162, 0145, 0156, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
1328 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
1329 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0171, 0160, 0145, 0137,
1330 0150, 0151, 0156, 0164, 0042, 0076, 0144, 0151, 0141, 0154, 0157, 0147, 0074, 0057, 0160, 0162,
1331 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1332 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0153, 0151, 0160,
1333 0137, 0164, 0141, 0163, 0153, 0142, 0141, 0162, 0137, 0150, 0151, 0156, 0164, 0042, 0076, 0124,
1334 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
1335 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1336 0145, 0075, 0042, 0163, 0153, 0151, 0160, 0137, 0160, 0141, 0147, 0145, 0162, 0137, 0150, 0151,
1337 0156, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
1338 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0151,
1339 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042, 0166,
1340 0142, 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152,
1341 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0157,
1342 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147, 0055, 0166, 0142,
1343 0157, 0170, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1344 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151,
1345 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
1346 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1347 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
1348 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
1349 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1350 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1351 0145, 0075, 0042, 0157, 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151, 0157, 0156, 0042, 0076,
1352 0166, 0145, 0162, 0164, 0151, 0143, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
1353 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1354 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143,
1355 0151, 0156, 0147, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1356 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144,
1357 0040, 0151, 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075,
1358 0042, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0042, 0076, 0012, 0040,
1359 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164,
1360 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157,
1361 0156, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147,
1362 0055, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0061, 0042, 0076, 0012,
1363 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1364 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
1365 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
1366 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1367 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1368 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163,
1369 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
1370 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1371 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0171, 0157, 0165, 0164, 0137,
1372 0163, 0164, 0171, 0154, 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160,
1373 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1374 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1375 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
1376 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156,
1377 0042, 0040, 0151, 0144, 0075, 0042, 0142, 0165, 0164, 0164, 0157, 0156, 0055, 0143, 0141, 0156,
1378 0143, 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1379 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1380 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141,
1381 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076,
1382 0137, 0103, 0141, 0156, 0143, 0145, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1383 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1384 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1385 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145,
1386 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
1387 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1388 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
1389 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
1390 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1391 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1392 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163, 0137,
1393 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
1394 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1395 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1396 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164,
1397 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076,
1398 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
1399 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1400 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1401 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076,
1402 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1403 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
1404 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1405 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012,
1406 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1407 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
1408 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
1409 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1410 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1411 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0106,
1412 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1413 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1414 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
1415 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157,
1416 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1417 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012,
1418 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150,
1419 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1420 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1421 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
1422 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0042,
1423 0040, 0151, 0144, 0075, 0042, 0142, 0165, 0164, 0164, 0157, 0156, 0055, 0157, 0153, 0042, 0076,
1424 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1425 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1426 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164,
1427 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0117, 0113, 0074, 0057,
1428 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1429 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
1430 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
1431 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1432 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1433 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1434 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162,
1435 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1436 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1437 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141,
1438 0156, 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
1439 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1440 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
1441 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0150, 0141, 0163, 0137, 0144,
1442 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
1443 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1444 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1445 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163,
1446 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
1447 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1448 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
1449 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143,
1450 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042,
1451 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1452 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1453 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1454 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042,
1455 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
1456 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1457 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1458 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076,
1459 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1460 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1461 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057,
1462 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1463 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
1464 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076,
1465 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
1466 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1467 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1468 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0063, 0074, 0057, 0160, 0162,
1469 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1470 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076,
1471 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
1472 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1473 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1474 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
1475 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
1476 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144,
1477 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1478 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1479 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146,
1480 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
1481 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1482 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1483 0042, 0160, 0141, 0143, 0153, 0137, 0164, 0171, 0160, 0145, 0042, 0076, 0145, 0156, 0144, 0074,
1484 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1485 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1486 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042,
1487 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1488 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156,
1489 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151,
1490 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
1491 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
1492 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
1493 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0163, 0163, 0141,
1494 0147, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1495 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1496 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
1497 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1498 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1499 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
1500 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1501 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1502 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0141,
1503 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1504 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1505 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0171,
1506 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
1507 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1508 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
1509 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141,
1510 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0154, 0141, 0142, 0145, 0154, 0074,
1511 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1512 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1513 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0155, 0141, 0162, 0153, 0165,
1514 0160, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1515 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157,
1516 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1517 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1518 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1519 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106,
1520 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1521 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1522 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154,
1523 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1524 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1525 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157,
1526 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
1527 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1528 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1529 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1530 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1531 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141,
1532 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0124, 0141, 0142, 0154, 0145, 0042, 0040, 0151, 0144,
1533 0075, 0042, 0164, 0141, 0142, 0154, 0145, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1534 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1535 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076,
1536 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1537 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1538 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
1539 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
1540 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1541 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
1542 0155, 0145, 0075, 0042, 0156, 0137, 0162, 0157, 0167, 0163, 0042, 0076, 0062, 0074, 0057, 0160,
1543 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1544 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
1545 0141, 0155, 0145, 0075, 0042, 0156, 0137, 0143, 0157, 0154, 0165, 0155, 0156, 0163, 0042, 0076,
1546 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
1547 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1548 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0157, 0154, 0165, 0155, 0156, 0137,
1549 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160,
1550 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1551 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1552 0075, 0042, 0162, 0157, 0167, 0137, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0066,
1553 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
1554 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
1555 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
1556 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
1557 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0160, 0162, 0157, 0155, 0160,
1558 0164, 0055, 0160, 0141, 0163, 0163, 0167, 0157, 0162, 0144, 0042, 0076, 0012, 0040, 0040, 0040,
1559 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
1560 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163,
1561 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
1562 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1563 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1564 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
1565 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1566 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1567 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1568 0075, 0042, 0170, 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157,
1569 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1570 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1571 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162,
1572 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042,
1573 0076, 0120, 0141, 0163, 0163, 0167, 0157, 0162, 0144, 0072, 0074, 0057, 0160, 0162, 0157, 0160,
1574 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1575 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040,
1576 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143,
1577 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1578 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1579 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0157, 0160, 0137, 0141, 0164, 0164, 0141, 0143, 0150,
1580 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
1581 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1582 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142,
1583 0157, 0164, 0164, 0157, 0155, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074,
1584 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1585 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151,
1586 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1587 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1588 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
1589 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
1590 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142,
1591 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0160, 0162, 0157, 0155, 0160, 0164, 0055, 0165,
1592 0163, 0145, 0162, 0156, 0141, 0155, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1593 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
1594 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
1595 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1596 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1597 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1598 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141,
1599 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
1600 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1601 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170,
1602 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
1603 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1604 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
1605 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163,
1606 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0125, 0163,
1607 0145, 0162, 0156, 0141, 0155, 0145, 0072, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1608 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1609 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1610 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
1611 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
1612 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1613 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
1614 0042, 0107, 0164, 0153, 0105, 0156, 0164, 0162, 0171, 0042, 0040, 0151, 0144, 0075, 0042, 0143,
1615 0162, 0145, 0144, 0055, 0165, 0163, 0145, 0162, 0156, 0141, 0155, 0145, 0042, 0076, 0012, 0040,
1616 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1617 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166,
1618 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
1619 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1620 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1621 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165,
1622 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1623 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1624 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1625 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156,
1626 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1627 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1628 0145, 0075, 0042, 0154, 0145, 0146, 0164, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076,
1629 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
1630 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
1631 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0151, 0147,
1632 0150, 0164, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162,
1633 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1634 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076,
1635 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
1636 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1637 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1638 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
1639 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0105, 0156, 0164, 0162, 0171, 0042,
1640 0040, 0151, 0144, 0075, 0042, 0143, 0162, 0145, 0144, 0055, 0160, 0141, 0163, 0163, 0167, 0157,
1641 0162, 0144, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1642 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
1643 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162,
1644 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1645 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1646 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141,
1647 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
1648 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1649 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1650 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0151, 0154,
1651 0151, 0164, 0171, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
1652 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1653 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1654 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0163, 0137,
1655 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
1656 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1657 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
1658 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1659 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1660 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1661 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0145, 0146, 0164, 0137, 0141, 0164,
1662 0164, 0141, 0143, 0150, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1663 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1664 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1665 0145, 0075, 0042, 0162, 0151, 0147, 0150, 0164, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042,
1666 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1667 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1668 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0157,
1669 0160, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157,
1670 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1671 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1672 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0164, 0164, 0157, 0155, 0137, 0141, 0164,
1673 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1674 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1675 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040,
1676 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076,
1677 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150,
1678 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1679 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163,
1680 0075, 0042, 0107, 0164, 0153, 0103, 0150, 0145, 0143, 0153, 0102, 0165, 0164, 0164, 0157, 0156,
1681 0042, 0040, 0151, 0144, 0075, 0042, 0163, 0150, 0157, 0167, 0055, 0160, 0141, 0163, 0163, 0167,
1682 0157, 0162, 0144, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1683 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1684 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124,
1685 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
1686 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1687 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
1688 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
1689 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1690 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
1691 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0145,
1692 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1693 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1694 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1695 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154,
1696 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0123, 0150, 0157,
1697 0167, 0040, 0160, 0141, 0163, 0163, 0167, 0157, 0162, 0144, 0074, 0057, 0160, 0162, 0157, 0160,
1698 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1699 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040,
1700 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143,
1701 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1702 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1703 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0145, 0146, 0164, 0137, 0141, 0164, 0164, 0141, 0143,
1704 0150, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1705 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1706 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
1707 0162, 0151, 0147, 0150, 0164, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074,
1708 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1709 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
1710 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0157, 0160, 0137, 0141,
1711 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
1712 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1713 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
1714 0155, 0145, 0075, 0042, 0142, 0157, 0164, 0164, 0157, 0155, 0137, 0141, 0164, 0164, 0141, 0143,
1715 0150, 0042, 0076, 0063, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1716 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
1717 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1718 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
1719 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164,
1720 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143,
1721 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1722 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1723 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
1724 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1725 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1726 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165,
1727 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
1728 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1729 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157,
1730 0156, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1731 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153,
1732 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
1733 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142,
1734 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154,
1735 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167,
1736 0151, 0144, 0147, 0145, 0164, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141,
1737 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0040, 0162, 0145, 0163,
1738 0160, 0157, 0156, 0163, 0145, 0075, 0042, 0055, 0066, 0042, 0076, 0142, 0165, 0164, 0164, 0157,
1739 0156, 0055, 0143, 0141, 0156, 0143, 0145, 0154, 0074, 0057, 0141, 0143, 0164, 0151, 0157, 0156,
1740 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1741 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0040, 0162, 0145,
1742 0163, 0160, 0157, 0156, 0163, 0145, 0075, 0042, 0055, 0065, 0042, 0076, 0142, 0165, 0164, 0164,
1743 0157, 0156, 0055, 0157, 0153, 0074, 0057, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151,
1744 0144, 0147, 0145, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0057, 0141, 0143, 0164, 0151,
1745 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0163, 0076, 0012, 0040, 0040, 0074, 0057,
1746 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0074, 0057, 0151, 0156, 0164, 0145, 0162, 0146,
1747 0141, 0143, 0145, 0076, 0012, 0000, 0000, 0050, 0165, 0165, 0141, 0171, 0051, 0166, 0151, 0162,
1748 0164, 0055, 0155, 0141, 0156, 0141, 0147, 0145, 0162, 0057, 0000, 0000, 0024, 0000, 0000, 0000,
1749 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0056, 0160, 0156, 0147, 0000,
1750 0306, 0003, 0000, 0000, 0000, 0000, 0000, 0000, 0211, 0120, 0116, 0107, 0015, 0012, 0032, 0012,
1751 0000, 0000, 0000, 0015, 0111, 0110, 0104, 0122, 0000, 0000, 0000, 0026, 0000, 0000, 0000, 0026,
1752 0010, 0006, 0000, 0000, 0000, 0304, 0264, 0154, 0073, 0000, 0000, 0000, 0004, 0163, 0102, 0111,
1753 0124, 0010, 0010, 0010, 0010, 0174, 0010, 0144, 0210, 0000, 0000, 0000, 0011, 0160, 0110, 0131,
1754 0163, 0000, 0000, 0015, 0327, 0000, 0000, 0015, 0327, 0001, 0102, 0050, 0233, 0170, 0000, 0000,
1755 0000, 0031, 0164, 0105, 0130, 0164, 0123, 0157, 0146, 0164, 0167, 0141, 0162, 0145, 0000, 0167,
1756 0167, 0167, 0056, 0151, 0156, 0153, 0163, 0143, 0141, 0160, 0145, 0056, 0157, 0162, 0147, 0233,
1757 0356, 0074, 0032, 0000, 0000, 0003, 0103, 0111, 0104, 0101, 0124, 0070, 0215, 0265, 0225, 0301,
1758 0153, 0044, 0105, 0024, 0207, 0277, 0252, 0352, 0164, 0117, 0047, 0146, 0263, 0272, 0201, 0215,
1759 0010, 0046, 0233, 0015, 0021, 0365, 0354, 0305, 0233, 0053, 0330, 0254, 0316, 0105, 0020, 0374,
1760 0007, 0274, 0010, 0236, 0005, 0157, 0202, 0007, 0117, 0336, 0005, 0361, 0266, 0240, 0242, 0040,
1761 0271, 0145, 0216, 0256, 0222, 0243, 0054, 0254, 0254, 0353, 0146, 0020, 0223, 0135, 0115, 0202,
1762 0146, 0234, 0154, 0046, 0125, 0335, 0063, 0375, 0252, 0074, 0114, 0317, 0114, 0317, 0104, 0274,
1763 0004, 0037, 0074, 0272, 0253, 0250, 0372, 0352, 0367, 0136, 0075, 0136, 0251, 0054, 0313, 0370,
1764 0077, 0054, 0002, 0150, 0066, 0233, 0357, 0213, 0310, 0107, 0041, 0204, 0370, 0042, 0060, 0245,
1765 0224, 0304, 0161, 0374, 0351, 0326, 0326, 0326, 0173, 0052, 0313, 0062, 0232, 0315, 0146, 0367,
1766 0346, 0033, 0257, 0055, 0055, 0055, 0055, 0135, 0110, 0145, 0277, 0350, 0363, 0315, 0327, 0337,
1767 0016, 0032, 0215, 0306, 0345, 0010, 0040, 0204, 0220, 0244, 0151, 0312, 0233, 0157, 0175, 0311,
1768 0374, 0122, 0230, 0132, 0034, 0246, 0207, 0204, 0000, 0212, 0060, 0376, 0317, 0117, 0025, 0137,
1769 0175, 0361, 0066, 0161, 0254, 0211, 0223, 0030, 0245, 0224, 0267, 0326, 0306, 0321, 0324, 0256,
1770 0271, 0202, 0253, 0353, 0163, 0050, 0324, 0050, 0070, 0224, 0032, 0205, 0071, 0073, 0126, 0020,
1771 0140, 0377, 0101, 0037, 0347, 0006, 0264, 0167, 0177, 0145, 0165, 0165, 0155, 0214, 0032, 0203,
1772 0105, 0074, 0245, 0200, 0165, 0045, 0112, 0115, 0000, 0347, 0340, 0101, 0115, 0035, 0122, 0364,
1773 0005, 0200, 0027, 0136, 0174, 0176, 0112, 0143, 0005, 0016, 0303, 0270, 0202, 0242, 0220, 0131,
1774 0225, 0241, 0006, 0003, 0245, 0002, 0203, 0322, 0323, 0175, 0174, 0306, 0161, 0367, 0024, 0071,
1775 0136, 0100, 0304, 0363, 0323, 0335, 0173, 0254, 0255, 0315, 0050, 0016, 0200, 0047, 0020, 0264,
1776 0246, 0022, 0060, 0046, 0117, 0224, 0103, 0321, 0057, 0071, 0072, 0076, 0301, 0272, 0076, 0041,
1777 0004, 0100, 0021, 0353, 0010, 0357, 0205, 0315, 0347, 0066, 0060, 0306, 0114, 0203, 0235, 0165,
1778 0004, 0037, 0360, 0101, 0121, 0010, 0323, 0171, 0254, 0354, 0161, 0317, 0161, 0322, 0313, 0011,
1779 0101, 0023, 0305, 0215, 0361, 0274, 0161, 0021, 0042, 0302, 0317, 0367, 0176, 0141, 0175, 0175,
1780 0235, 0074, 0317, 0261, 0326, 0126, 0140, 0347, 0010, 0301, 0103, 0320, 0014, 0274, 0042, 0324,
1781 0362, 0052, 0342, 0071, 0265, 0005, 0042, 0012, 0063, 0227, 0062, 0153, 0132, 0153, 0104, 0204,
1782 0353, 0033, 0327, 0110, 0222, 0004, 0347, 0134, 0115, 0261, 0163, 0125, 0052, 0015, 0375, 0240,
1783 0307, 0151, 0057, 0305, 0063, 0050, 0101, 0105, 0011, 0121, 0164, 0216, 0071, 0134, 0146, 0074,
1784 0042, 0045, 0273, 0017, 0366, 0271, 0276, 0261, 0201, 0265, 0147, 0024, 0105, 0177, 0010, 0266,
1785 0326, 0016, 0053, 0123, 0033, 0006, 0114, 0362, 0204, 0201, 0310, 0374, 0073, 0160, 0144, 0245,
1786 0051, 0020, 0361, 0254, 0136, 0173, 0226, 0106, 0043, 0301, 0271, 0034, 0255, 0365, 0020, 0234,
1787 0347, 0371, 0220, 0143, 0064, 0041, 0236, 0377, 0157, 0322, 0254, 0142, 0135, 0342, 0275, 0040,
1788 0122, 0002, 0012, 0353, 0054, 0345, 0240, 0234, 0050, 0006, 0305, 0245, 0071, 0303, 0337, 0373,
1789 0275, 0163, 0233, 0033, 0015, 0103, 0043, 0061, 0344, 0271, 0220, 0027, 0223, 0262, 0121, 0100,
1790 0052, 0201, 0070, 0001, 0021, 0101, 0051, 0310, 0135, 0116, 0257, 0327, 0233, 0050, 0126, 0012,
1791 0076, 0371, 0370, 0045, 0274, 0227, 0031, 0254, 0042, 0135, 0230, 0107, 0033, 0115, 0360, 0036,
1792 0167, 0146, 0153, 0330, 0311, 0307, 0373, 0200, 0102, 0125, 0042, 0253, 0313, 0053, 0245, 0054,
1793 0072, 0307, 0235, 0106, 0232, 0246, 0030, 0175, 0376, 0226, 0312, 0276, 0000, 0303, 0003, 0243,
1794 0050, 0231, 0122, 0134, 0267, 0116, 0247, 0103, 0121, 0024, 0132, 0153, 0335, 0127, 0131, 0226,
1795 0221, 0246, 0351, 0007, 0145, 0131, 0176, 0050, 0042, 0027, 0156, 0233, 0111, 0222, 0174, 0146,
1796 0255, 0175, 0127, 0215, 0032, 0175, 0253, 0325, 0122, 0300, 0034, 0220, 0246, 0151, 0172, 0351,
1797 0365, 0346, 0315, 0366, 0215, 0033, 0257, 0304, 0233, 0233, 0233, 0030, 0143, 0010, 0004, 0010,
1798 0303, 0272, 0365, 0301, 0263, 0367, 0333, 0036, 0333, 0333, 0333, 0362, 0343, 0235, 0073, 0257,
1799 0266, 0357, 0267, 0333, 0200, 0003, 0054, 0120, 0144, 0131, 0026, 0352, 0161, 0067, 0200, 0005,
1800 0140, 0301, 0071, 0367, 0304, 0301, 0301, 0341, 0347, 0337, 0335, 0276, 0375, 0316, 0336, 0303,
1801 0075, 0263, 0262, 0362, 0264, 0136, 0271, 0272, 0202, 0321, 0206, 0303, 0243, 0103, 0376, 0070,
1802 0070, 0010, 0217, 0036, 0076, 0222, 0303, 0203, 0243, 0235, 0366, 0375, 0266, 0001, 0226, 0201,
1803 0136, 0045, 0254, 0007, 0234, 0325, 0301, 0123, 0235, 0167, 0347, 0207, 0235, 0133, 0313, 0313,
1804 0313, 0273, 0127, 0226, 0257, 0274, 0274, 0270, 0270, 0270, 0361, 0344, 0123, 0227, 0237, 0061,
1805 0332, 0104, 0235, 0116, 0347, 0257, 0223, 0156, 0367, 0367, 0156, 0267, 0173, 0367, 0350, 0350,
1806 0317, 0357, 0201, 0242, 0266, 0067, 0000, 0003, 0000, 0125, 0177, 0363, 0132, 0255, 0126, 0124,
1807 0127, 0016, 0044, 0063, 0343, 0010, 0310, 0107, 0041, 0127, 0356, 0200, 0323, 0152, 0056, 0317,
1808 0262, 0114, 0316, 0201, 0153, 0271, 0256, 0273, 0001, 0164, 0345, 0012, 0360, 0214, 0032, 0342,
1809 0260, 0124, 0002, 0340, 0263, 0054, 0233, 0212, 0370, 0037, 0346, 0371, 0225, 0163, 0333, 0170,
1810 0275, 0033, 0000, 0000, 0000, 0000, 0111, 0105, 0116, 0104, 0256, 0102, 0140, 0202, 0000, 0000,
1811 0050, 0165, 0165, 0141, 0171, 0051, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145,
1812 0162, 0056, 0160, 0156, 0147, 0000, 0000, 0000, 0235, 0004, 0000, 0000, 0000, 0000, 0000, 0000,
1813 0211, 0120, 0116, 0107, 0015, 0012, 0032, 0012, 0000, 0000, 0000, 0015, 0111, 0110, 0104, 0122,
1814 0000, 0000, 0000, 0030, 0000, 0000, 0000, 0030, 0010, 0006, 0000, 0000, 0000, 0340, 0167, 0075,
1815 0370, 0000, 0000, 0000, 0006, 0142, 0113, 0107, 0104, 0000, 0377, 0000, 0377, 0000, 0377, 0240,
1816 0275, 0247, 0223, 0000, 0000, 0000, 0011, 0160, 0110, 0131, 0163, 0000, 0000, 0015, 0327, 0000,
1817 0000, 0015, 0327, 0001, 0102, 0050, 0233, 0170, 0000, 0000, 0003, 0266, 0111, 0104, 0101, 0124,
1818 0110, 0307, 0335, 0325, 0333, 0117, 0333, 0145, 0034, 0307, 0161, 0164, 0306, 0215, 0315, 0104,
1819 0143, 0230, 0134, 0030, 0135, 0342, 0130, 0012, 0043, 0331, 0324, 0265, 0143, 0224, 0156, 0034,
1820 0132, 0350, 0012, 0155, 0051, 0035, 0164, 0033, 0343, 0320, 0261, 0342, 0066, 0355, 0010, 0062,
1821 0126, 0342, 0164, 0001, 0056, 0146, 0112, 0327, 0063, 0254, 0130, 0263, 0030, 0143, 0242, 0161,
1822 0331, 0077, 0240, 0166, 0135, 0301, 0073, 0335, 0072, 0260, 0140, 0111, 0107, 0151, 0313, 0241,
1823 0100, 0146, 0064, 0273, 0153, 0101, 0364, 0343, 0267, 0355, 0117, 0266, 0337, 0050, 0323, 0205,
1824 0170, 0343, 0223, 0274, 0322, 0323, 0323, 0347, 0375, 0173, 0236, 0137, 0322, 0146, 0144, 0374,
1825 0157, 0106, 0177, 0177, 0277, 0316, 0152, 0265, 0056, 0131, 0054, 0026, 0154, 0004, 0255, 0261,
1826 0342, 0160, 0070, 0006, 0322, 0005, 0036, 0004, 0103, 0001, 0374, 0362, 0353, 0342, 0206, 0104,
1827 0347, 0147, 0140, 0263, 0331, 0226, 0235, 0116, 0347, 0126, 0126, 0300, 0156, 0267, 0307, 0242,
1828 0013, 0063, 0020, 0224, 0132, 0121, 0241, 0260, 0260, 0224, 0127, 0263, 0211, 0344, 0364, 0050,
1829 0067, 0047, 0211, 0144, 0146, 0010, 0112, 0054, 0210, 0056, 0314, 0257, 0106, 0150, 0255, 0070,
1830 0355, 0346, 0245, 0364, 0201, 0212, 0076, 0064, 0166, 0230, 0321, 0324, 0141, 0141, 0130, 0321,
1831 0174, 0076, 0105, 0335, 0231, 0140, 0303, 0311, 0013, 0051, 0055, 0072, 0073, 0132, 0056, 0330,
1832 0041, 0252, 0066, 0042, 0030, 0232, 0306, 0360, 0367, 0036, 0104, 0246, 0303, 0353, 0007, 0146,
1833 0346, 0042, 0070, 0040, 0354, 0303, 0221, 0263, 0006, 0324, 0276, 0173, 0005, 0165, 0357, 0375,
1834 0315, 0010, 0225, 0066, 0345, 0350, 0071, 0242, 0065, 0341, 0330, 0271, 0004, 0063, 0216, 0267,
1835 0231, 0161, 0120, 0322, 0227, 0014, 0374, 0303, 0016, 0154, 0261, 0231, 0331, 0060, 0016, 0224,
1836 0031, 0040, 0175, 0347, 0012, 0144, 0247, 0123, 0344, 0147, 0030, 0247, 0215, 0250, 0076, 0223,
1837 0242, 0070, 0153, 0104, 0125, 0253, 0001, 0105, 0107, 0273, 0221, 0053, 0356, 0300, 0056, 0356,
1838 0045, 0004, 0046, 0303, 0360, 0014, 0335, 0102, 0070, 0022, 0112, 0037, 0260, 0121, 0040, 0062,
1839 0033, 0102, 0201, 0310, 0210, 0212, 0123, 0217, 0320, 0230, 0040, 0156, 0175, 0250, 0244, 0271,
1840 0017, 0171, 0322, 0213, 0330, 0041, 0354, 0304, 0353, 0145, 0347, 0223, 0162, 0366, 0367, 0142,
1841 0042, 0020, 0104, 0342, 0210, 0027, 0357, 0107, 0323, 0007, 0364, 0172, 0175, 0054, 0074, 0075,
1842 0005, 0236, 0320, 0204, 0142, 0065, 0055, 0164, 0062, 0245, 0264, 0305, 0274, 0152, 0237, 0352,
1843 0062, 0162, 0052, 0057, 0141, 0247, 0344, 0043, 0026, 0116, 0341, 0145, 0214, 0373, 0003, 0270,
1844 0351, 0166, 0041, 0024, 0236, 0202, 0301, 0140, 0210, 0367, 0364, 0364, 0260, 0003, 0335, 0335,
1845 0335, 0261, 0120, 0144, 0022, 0274, 0062, 0013, 0370, 0115, 0126, 0024, 0066, 0331, 0300, 0157,
1846 0116, 0051, 0150, 0260, 0140, 0267, 0122, 0017, 0116, 0365, 0307, 0151, 0345, 0025, 0351, 0361,
1847 0323, 0230, 0037, 0341, 0351, 0040, 0346, 0027, 0347, 0320, 0333, 0333, 0273, 0066, 0240, 0323,
1848 0351, 0142, 0241, 0360, 0044, 0270, 0102, 0073, 0270, 0215, 0003, 0253, 0336, 0254, 0267, 0043,
1849 0137, 0145, 0171, 0242, 0335, 0207, 0114, 0270, 0073, 0352, 0303, 0167, 0256, 0157, 0060, 0025,
1850 0016, 0242, 0253, 0113, 0027, 0157, 0157, 0157, 0147, 0007, 0264, 0132, 0155, 0154, 0052, 0021,
1851 0050, 0277, 0212, 0275, 0215, 0237, 0074, 0225, 0374, 0122, 0033, 0156, 0173, 0107, 0021, 0010,
1852 0372, 0351, 0076, 0314, 0242, 0255, 0255, 0155, 0155, 0100, 0243, 0321, 0044, 0003, 0005, 0207,
1853 0007, 0261, 0357, 0324, 0027, 0117, 0145, 0217, 0160, 0000, 0077, 0334, 0366, 0302, 0037, 0360,
1854 0121, 0140, 0016, 0232, 0126, 0115, 0134, 0255, 0126, 0263, 0003, 0365, 0365, 0365, 0261, 0304,
1855 0366, 0312, 0145, 0237, 0322, 0056, 0034, 0153, 0010, 0144, 0116, 0210, 0152, 0257, 0101, 0040,
1856 0165, 0262, 0336, 0347, 0221, 0202, 0222, 0176, 0214, 0370, 0274, 0030, 0363, 0217, 0044, 0357,
1857 0101, 0103, 0103, 0103, 0134, 0241, 0120, 0260, 0003, 0112, 0245, 0222, 0156, 0162, 0020, 0276,
1858 0361, 0021, 0214, 0372, 0356, 0074, 0306, 0213, 0300, 0324, 0004, 0046, 0043, 0001, 0334, 0013,
1859 0115, 0320, 0015, 0365, 0062, 0356, 0246, 0214, 0077, 0264, 0260, 0030, 0005, 0255, 0265, 0066,
1860 0040, 0257, 0226, 0077, 0270, 0343, 0375, 0021, 0077, 0373, 0307, 0322, 0233, 0030, 0117, 0313,
1861 0377, 0230, 0304, 0334, 0252, 0252, 0252, 0145, 0231, 0114, 0306, 0376, 0261, 0243, 0342, 0007,
1862 0122, 0251, 0164, 0111, 0042, 0221, 0140, 0043, 0052, 0053, 0053, 0127, 0152, 0152, 0152, 0006,
1863 0327, 0373, 0133, 0170, 0206, 0074, 0117, 0136, 0314, 0314, 0314, 0174, 0355, 0110, 0235, 0162,
1864 0351, 0352, 0140, 0077, 0134, 0356, 0157, 0161, 0153, 0350, 0046, 0334, 0103, 0056, 0270, 0075,
1865 0056, 0170, 0206, 0335, 0311, 0347, 0237, 0175, 0176, 0015, 0252, 0143, 0265, 0053, 0071, 0271,
1866 0071, 0305, 0364, 0235, 0127, 0311, 0313, 0144, 0013, 0263, 0116, 0332, 0221, 0111, 0262, 0310,
1867 0016, 0222, 0317, 0027, 0360, 0035, 0252, 0343, 0165, 0313, 0272, 0213, 0235, 0177, 0230, 0355,
1868 0046, 0174, 0165, 0375, 0113, 0134, 0277, 0361, 0065, 0154, 0003, 0126, 0164, 0175, 0330, 0365,
1869 0347, 0211, 0246, 0023, 0277, 0037, 0052, 0076, 0070, 0114, 0163, 0313, 0310, 0136, 0262, 0223,
1870 0144, 0223, 0155, 0353, 0005, 0266, 0074, 0032, 0040, 0374, 0254, 0254, 0254, 0367, 0071, 0271,
1871 0234, 0033, 0134, 0036, 0167, 0244, 0134, 0054, 0272, 0177, 0130, 0042, 0376, 0155, 0177, 0001,
1872 0357, 0036, 0207, 0263, 0313, 0223, 0235, 0275, 0335, 0116, 0163, 0352, 0110, 0021, 0331, 0303,
1873 0004, 0136, 0141, 0116, 0141, 0335, 0361, 0034, 0171, 0201, 0271, 0222, 0067, 0110, 0036, 0171,
1874 0213, 0010, 0210, 0230, 0124, 0021, 0041, 0051, 0044, 0157, 0063, 0027, 0222, 0230, 0267, 0235,
1875 0271, 0362, 0115, 0031, 0377, 0142, 0044, 0316, 0360, 0131, 0146, 0162, 0042, 0270, 0231, 0071,
1876 0276, 0155, 0114, 0174, 0053, 0363, 0172, 0063, 0363, 0371, 0246, 0047, 0235, 0373, 0177, 0072,
1877 0376, 0002, 0050, 0171, 0234, 0031, 0067, 0145, 0234, 0200, 0000, 0000, 0000, 0045, 0164, 0105,
1878 0130, 0164, 0144, 0141, 0164, 0145, 0072, 0143, 0162, 0145, 0141, 0164, 0145, 0000, 0062, 0060,
1879 0061, 0061, 0055, 0061, 0062, 0055, 0061, 0061, 0124, 0061, 0070, 0072, 0062, 0061, 0072, 0061,
1880 0065, 0053, 0060, 0060, 0072, 0060, 0060, 0273, 0174, 0223, 0267, 0000, 0000, 0000, 0045, 0164,
1881 0105, 0130, 0164, 0144, 0141, 0164, 0145, 0072, 0155, 0157, 0144, 0151, 0146, 0171, 0000, 0062,
1882 0060, 0060, 0070, 0055, 0060, 0061, 0055, 0060, 0063, 0124, 0061, 0067, 0072, 0060, 0070, 0072,
1883 0062, 0060, 0053, 0060, 0060, 0072, 0060, 0060, 0146, 0260, 0277, 0252, 0000, 0000, 0000, 0031,
1884 0164, 0105, 0130, 0164, 0123, 0157, 0146, 0164, 0167, 0141, 0162, 0145, 0000, 0167, 0167, 0167,
1885 0056, 0151, 0156, 0153, 0163, 0143, 0141, 0160, 0145, 0056, 0157, 0162, 0147, 0233, 0356, 0074,
1886 0032, 0000, 0000, 0000, 0000, 0111, 0105, 0116, 0104, 0256, 0102, 0140, 0202, 0000, 0000, 0050,
1887 0165, 0165, 0141, 0171, 0051, 0162, 0145, 0155, 0157, 0164, 0145, 0055, 0166, 0151, 0145, 0167,
1888 0145, 0162, 0055, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0056, 0165, 0151, 0000, 0000, 0000,
1889 0013, 0033, 0000, 0000, 0000, 0000, 0000, 0000, 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145,
1890 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061, 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157,
1891 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124, 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074,
1892 0041, 0055, 0055, 0040, 0107, 0145, 0156, 0145, 0162, 0141, 0164, 0145, 0144, 0040, 0167, 0151,
1893 0164, 0150, 0040, 0147, 0154, 0141, 0144, 0145, 0040, 0063, 0056, 0061, 0070, 0056, 0063, 0040,
1894 0055, 0055, 0076, 0012, 0074, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012,
1895 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
1896 0042, 0107, 0164, 0153, 0127, 0151, 0156, 0144, 0157, 0167, 0042, 0040, 0151, 0144, 0075, 0042,
1897 0162, 0145, 0155, 0157, 0164, 0145, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0055, 0143, 0157,
1898 0156, 0156, 0145, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0156, 0144, 0157, 0167, 0042,
1899 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1900 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
1901 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1902 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1903 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0151, 0164, 0154, 0145, 0042, 0040, 0164, 0162, 0141,
1904 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076,
1905 0103, 0157, 0156, 0156, 0145, 0143, 0164, 0151, 0157, 0156, 0040, 0144, 0145, 0164, 0141, 0151,
1906 0154, 0163, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1907 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1908 0075, 0042, 0167, 0151, 0156, 0144, 0157, 0167, 0055, 0160, 0157, 0163, 0151, 0164, 0151, 0157,
1909 0156, 0042, 0076, 0063, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1910 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
1911 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
1912 0042, 0107, 0164, 0153, 0126, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0141,
1913 0151, 0156, 0055, 0142, 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1914 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1915 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
1916 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
1917 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1918 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154,
1919 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1920 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
1921 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0162, 0144, 0145, 0162, 0137, 0167, 0151, 0144,
1922 0164, 0150, 0042, 0076, 0061, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1923 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
1924 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156,
1925 0147, 0042, 0076, 0062, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
1926 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076,
1927 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
1928 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0126, 0102, 0157,
1929 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0151, 0157,
1930 0156, 0055, 0141, 0144, 0144, 0162, 0145, 0163, 0163, 0055, 0142, 0157, 0170, 0042, 0076, 0012,
1931 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1932 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
1933 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
1934 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1935 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
1936 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163,
1937 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
1938 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1939 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156, 0147,
1940 0042, 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
1941 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154,
1942 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1943 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042,
1944 0107, 0164, 0153, 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0157,
1945 0156, 0156, 0145, 0143, 0164, 0151, 0157, 0156, 0055, 0141, 0144, 0144, 0162, 0145, 0163, 0163,
1946 0055, 0154, 0141, 0142, 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1947 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
1948 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145,
1949 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
1950 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1951 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
1952 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154,
1953 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1954 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1955 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0141,
1956 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
1957 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1958 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
1959 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154,
1960 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0103, 0157, 0156,
1961 0156, 0145, 0143, 0164, 0151, 0157, 0156, 0040, 0137, 0101, 0144, 0144, 0162, 0145, 0163, 0163,
1962 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
1963 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
1964 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137,
1965 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
1966 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1967 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
1968 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0155, 0156, 0145, 0155, 0157,
1969 0156, 0151, 0143, 0137, 0167, 0151, 0144, 0147, 0145, 0164, 0042, 0076, 0143, 0157, 0156, 0156,
1970 0145, 0143, 0164, 0151, 0157, 0156, 0055, 0141, 0144, 0144, 0162, 0145, 0163, 0163, 0055, 0145,
1971 0156, 0164, 0162, 0171, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
1972 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1973 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040,
1974 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
1975 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
1976 0167, 0145, 0151, 0147, 0150, 0164, 0042, 0040, 0166, 0141, 0154, 0165, 0145, 0075, 0042, 0142,
1977 0157, 0154, 0144, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1978 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0141, 0164, 0164, 0162, 0151, 0142, 0165,
1979 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1980 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040,
1981 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153,
1982 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1983 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
1984 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154,
1985 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
1986 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
1987 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151,
1988 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
1989 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1990 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
1991 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074,
1992 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
1993 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151,
1994 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1995 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
1996 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
1997 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
1998 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0105, 0156, 0164,
1999 0162, 0171, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0151,
2000 0157, 0156, 0055, 0141, 0144, 0144, 0162, 0145, 0163, 0163, 0055, 0145, 0156, 0164, 0162, 0171,
2001 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2002 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2003 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145,
2004 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2005 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2006 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
2007 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
2008 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2009 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
2010 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141,
2011 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2012 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2013 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106,
2014 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2015 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2016 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2017 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
2018 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2019 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2020 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076,
2021 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2022 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143,
2023 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2024 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2025 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
2026 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142,
2027 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114,
2028 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0145, 0170, 0141, 0155, 0160, 0154,
2029 0145, 0055, 0154, 0141, 0142, 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2030 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2031 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
2032 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2033 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2034 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2035 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141,
2036 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2037 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2038 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170,
2039 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
2040 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2041 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2042 0155, 0145, 0075, 0042, 0163, 0145, 0156, 0163, 0151, 0164, 0151, 0166, 0145, 0042, 0076, 0106,
2043 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2044 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2045 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2046 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141,
2047 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0106, 0157, 0162, 0040, 0145, 0170,
2048 0141, 0155, 0160, 0154, 0145, 0054, 0040, 0163, 0160, 0151, 0143, 0145, 0072, 0057, 0057, 0146,
2049 0157, 0157, 0056, 0145, 0170, 0141, 0155, 0160, 0154, 0145, 0056, 0157, 0162, 0147, 0072, 0065,
2050 0071, 0060, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2051 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157,
2052 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2053 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040,
2054 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2055 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145,
2056 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
2057 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2058 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2059 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162,
2060 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2061 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2062 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157,
2063 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2064 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2065 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
2066 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154,
2067 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157,
2068 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2069 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2070 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2071 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106,
2072 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2073 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2074 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154,
2075 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2076 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2077 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157,
2078 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2079 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2080 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2081 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2082 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2083 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141,
2084 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0126, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075,
2085 0042, 0162, 0145, 0143, 0145, 0156, 0164, 0055, 0143, 0150, 0157, 0157, 0163, 0145, 0162, 0055,
2086 0142, 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2087 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2088 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
2089 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2090 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2091 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163,
2092 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2093 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2094 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163,
2095 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2096 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2097 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2098 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
2099 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145, 0154, 0042, 0040,
2100 0151, 0144, 0075, 0042, 0162, 0145, 0143, 0145, 0156, 0164, 0055, 0143, 0150, 0157, 0157, 0163,
2101 0145, 0162, 0055, 0154, 0141, 0142, 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2102 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2103 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142,
2104 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
2105 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2106 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2107 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106,
2108 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2109 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2110 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2111 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141,
2112 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0122, 0145, 0143, 0145, 0156, 0164,
2113 0040, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0151, 0157, 0156, 0163, 0074, 0057, 0160, 0162,
2114 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2115 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2116 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0141, 0154, 0151, 0147, 0156, 0042, 0076,
2117 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2118 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0164,
2119 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2120 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164,
2121 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0167, 0145, 0151,
2122 0147, 0150, 0164, 0042, 0040, 0166, 0141, 0154, 0165, 0145, 0075, 0042, 0142, 0157, 0154, 0144,
2123 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2124 0040, 0040, 0040, 0040, 0074, 0057, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163,
2125 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2126 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2127 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147,
2128 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2129 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2130 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
2131 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2132 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2133 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042,
2134 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2135 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2136 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
2137 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162,
2138 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2139 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076,
2140 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
2141 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2142 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2143 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
2144 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0122, 0145, 0143, 0145, 0156, 0164,
2145 0103, 0150, 0157, 0157, 0163, 0145, 0162, 0127, 0151, 0144, 0147, 0145, 0164, 0042, 0040, 0151,
2146 0144, 0075, 0042, 0162, 0145, 0143, 0145, 0156, 0164, 0055, 0143, 0150, 0157, 0157, 0163, 0145,
2147 0162, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2148 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2149 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106,
2150 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2151 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2152 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2153 0154, 0151, 0155, 0151, 0164, 0042, 0076, 0062, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2154 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2155 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2156 0141, 0155, 0145, 0075, 0042, 0154, 0157, 0143, 0141, 0154, 0137, 0157, 0156, 0154, 0171, 0042,
2157 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2158 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2159 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2160 0075, 0042, 0163, 0150, 0157, 0167, 0137, 0151, 0143, 0157, 0156, 0163, 0042, 0076, 0106, 0141,
2161 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2162 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2163 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163,
2164 0157, 0162, 0164, 0137, 0164, 0171, 0160, 0145, 0042, 0076, 0155, 0162, 0165, 0074, 0057, 0160,
2165 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2166 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
2167 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2168 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2169 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2170 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042,
2171 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2172 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2173 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
2174 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
2175 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2176 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2177 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042,
2178 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2179 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141,
2180 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2181 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
2182 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
2183 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151,
2184 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2185 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2186 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
2187 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2188 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2189 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
2190 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2191 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2192 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076,
2193 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2194 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147,
2195 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154,
2196 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154,
2197 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142,
2198 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0110,
2199 0102, 0165, 0164, 0164, 0157, 0156, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0142,
2200 0165, 0164, 0164, 0157, 0156, 0055, 0142, 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
2201 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2202 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042,
2203 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2204 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
2205 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
2206 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
2207 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2208 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2209 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0163, 0151, 0172, 0145, 0137, 0155, 0157, 0144, 0145,
2210 0042, 0076, 0151, 0155, 0155, 0145, 0144, 0151, 0141, 0164, 0145, 0074, 0057, 0160, 0162, 0157,
2211 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2212 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2213 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0066, 0074, 0057, 0160,
2214 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2215 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2216 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0171, 0157, 0165, 0164, 0137, 0163, 0164, 0171, 0154,
2217 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2218 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
2219 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2220 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163,
2221 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0042, 0040, 0151, 0144,
2222 0075, 0042, 0143, 0141, 0156, 0143, 0145, 0154, 0055, 0142, 0165, 0164, 0164, 0157, 0156, 0042,
2223 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2224 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2225 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141,
2226 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0103, 0141, 0156,
2227 0143, 0145, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2228 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2229 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166,
2230 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
2231 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2232 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2233 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165,
2234 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2235 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2236 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2237 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163, 0137, 0144, 0145, 0146, 0141,
2238 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2239 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2240 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2241 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151,
2242 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
2243 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2244 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
2245 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151,
2246 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2247 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2248 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145,
2249 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2250 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2251 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154,
2252 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2253 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2254 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2255 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160,
2256 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2257 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147,
2258 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
2259 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2260 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2261 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164,
2262 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157,
2263 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0055, 0142,
2264 0165, 0164, 0164, 0157, 0156, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2265 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2266 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164,
2267 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163,
2268 0042, 0076, 0103, 0137, 0157, 0156, 0156, 0145, 0143, 0164, 0074, 0057, 0160, 0162, 0157, 0160,
2269 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2270 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2271 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124,
2272 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2273 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2274 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
2275 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
2276 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2277 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2278 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166,
2279 0145, 0163, 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145,
2280 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2281 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2282 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137,
2283 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
2284 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2285 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143,
2286 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2287 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2288 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2289 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156,
2290 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2291 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2292 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2293 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
2294 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2295 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2296 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157,
2297 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2298 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
2299 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2300 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
2301 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164,
2302 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143,
2303 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2304 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2305 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
2306 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2307 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2308 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0106, 0141, 0154,
2309 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2310 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2311 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0141, 0143, 0153, 0137, 0164,
2312 0171, 0160, 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
2313 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2314 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2315 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0063, 0074, 0057, 0160, 0162, 0157,
2316 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2317 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040,
2318 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
2319 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040,
2320 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0074, 0057, 0157, 0142,
2321 0152, 0145, 0143, 0164, 0076, 0012, 0074, 0057, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143,
2322 0145, 0076, 0012, 0000, 0000, 0050, 0165, 0165, 0141, 0171, 0051, 0166, 0151, 0162, 0164, 0055,
2323 0166, 0151, 0145, 0167, 0145, 0162, 0056, 0160, 0156, 0147, 0000, 0000, 0000, 0000, 0000, 0000,
2324 0226, 0002, 0000, 0000, 0000, 0000, 0000, 0000, 0211, 0120, 0116, 0107, 0015, 0012, 0032, 0012,
2325 0000, 0000, 0000, 0015, 0111, 0110, 0104, 0122, 0000, 0000, 0000, 0020, 0000, 0000, 0000, 0020,
2326 0010, 0006, 0000, 0000, 0000, 0037, 0363, 0377, 0141, 0000, 0000, 0000, 0004, 0163, 0102, 0111,
2327 0124, 0010, 0010, 0010, 0010, 0174, 0010, 0144, 0210, 0000, 0000, 0000, 0011, 0160, 0110, 0131,
2328 0163, 0000, 0000, 0015, 0327, 0000, 0000, 0015, 0327, 0001, 0102, 0050, 0233, 0170, 0000, 0000,
2329 0000, 0031, 0164, 0105, 0130, 0164, 0123, 0157, 0146, 0164, 0167, 0141, 0162, 0145, 0000, 0167,
2330 0167, 0167, 0056, 0151, 0156, 0153, 0163, 0143, 0141, 0160, 0145, 0056, 0157, 0162, 0147, 0233,
2331 0356, 0074, 0032, 0000, 0000, 0002, 0023, 0111, 0104, 0101, 0124, 0070, 0215, 0245, 0223, 0313,
2332 0152, 0024, 0101, 0024, 0206, 0277, 0123, 0125, 0163, 0155, 0110, 0062, 0040, 0006, 0142, 0022,
2333 0043, 0046, 0013, 0267, 0336, 0066, 0272, 0160, 0143, 0006, 0035, 0360, 0031, 0174, 0004, 0067,
2334 0202, 0270, 0121, 0120, 0004, 0361, 0061, 0174, 0203, 0154, 0134, 0010, 0011, 0021, 0042, 0342,
2335 0336, 0140, 0274, 0201, 0046, 0020, 0203, 0141, 0110, 0234, 0351, 0352, 0351, 0236, 0356, 0072,
2336 0056, 0072, 0021, 0023, 0003, 0101, 0074, 0233, 0052, 0252, 0352, 0377, 0317, 0167, 0316, 0241,
2337 0244, 0335, 0156, 0363, 0077, 0341, 0072, 0235, 0316, 0035, 0021, 0171, 0250, 0252, 0265, 0177,
2338 0021, 0212, 0210, 0127, 0325, 0273, 0116, 0125, 0037, 0267, 0157, 0134, 0217, 0232, 0215, 0046,
2339 0171, 0256, 0307, 0147, 0164, 0202, 0265, 0206, 0156, 0267, 0133, 0137, 0132, 0174, 0365, 0304,
2340 0251, 0152, 0155, 0164, 0164, 0204, 0371, 0233, 0317, 0111, 0351, 0003, 0240, 0172, 0204, 0321,
2341 0336, 0121, 0115, 0042, 0136, 0276, 0270, 0315, 0310, 0350, 0050, 0100, 0303, 0355, 0337, 0247,
2342 0241, 0317, 0205, 0253, 0143, 0210, 0310, 0036, 0042, 0200, 0224, 0253, 0000, 0132, 0356, 0337,
2343 0054, 0157, 0263, 0372, 0356, 0075, 0123, 0123, 0223, 0045, 0121, 0232, 0246, 0200, 0240, 0342,
2344 0210, 0323, 0120, 0012, 0024, 0104, 0344, 0200, 0111, 0066, 0314, 0331, 0356, 0376, 0004, 0034,
2345 0147, 0147, 0147, 0061, 0022, 0112, 0003, 0357, 0075, 0041, 0024, 0030, 0143, 0030, 0344, 0122,
2346 0146, 0053, 0233, 0004, 0224, 0302, 0315, 0037, 0073, 0304, 0076, 0005, 0240, 0141, 0132, 0174,
2347 0130, 0133, 0143, 0172, 0172, 0222, 0044, 0111, 0160, 0111, 0222, 0120, 0024, 0001, 0214, 0043,
2348 0311, 0313, 0154, 0212, 0040, 0100, 0234, 0244, 0354, 0364, 0022, 0124, 0035, 0225, 0372, 0136,
2349 0265, 0211, 0145, 0172, 0346, 0064, 0025, 0147, 0360, 0336, 0343, 0342, 0070, 0106, 0203, 0142,
2350 0114, 0205, 0101, 0160, 0373, 0000, 0044, 0351, 0220, 0154, 0150, 0160, 0265, 0350, 0340, 0370,
2351 0254, 0345, 0363, 0307, 0117, 0314, 0315, 0315, 0322, 0357, 0367, 0113, 0002, 0105, 0021, 0153,
2352 0111, 0203, 0003, 0005, 0105, 0121, 0153, 0251, 0330, 0043, 0206, 0141, 0207, 0114, 0234, 0232,
2353 0300, 0030, 0312, 0022, 0274, 0367, 0000, 0030, 0343, 0260, 0325, 0350, 0157, 0305, 0241, 0030,
2354 0232, 0076, 0105, 0121, 0240, 0010, 0161, 0034, 0343, 0102, 0050, 0273, 0331, 0152, 0070, 0262,
2355 0315, 0301, 0261, 0006, 0121, 0325, 0041, 0106, 0061, 0042, 0045, 0201, 0163, 0256, 0267, 0376,
2356 0155, 0243, 0365, 0354, 0321, 0371, 0143, 0305, 0277, 0051, 0322, 0234, 0365, 0365, 0015, 0200,
2357 0035, 0351, 0164, 0072, 0267, 0152, 0265, 0332, 0003, 0021, 0215, 0100, 0014, 0060, 0123, 0251,
2358 0070, 0127, 0251, 0126, 0305, 0032, 0003, 0100, 0021, 0002, 0131, 0226, 0151, 0076, 0314, 0207,
2359 0300, 0127, 0320, 0240, 0312, 0256, 0367, 0311, 0175, 0227, 0347, 0371, 0102, 0236, 0347, 0013,
2360 0000, 0252, 0032, 0265, 0116, 0214, 0275, 0235, 0157, 0267, 0317, 0135, 0272, 0170, 0231, 0361,
2361 0223, 0343, 0250, 0052, 0133, 0133, 0337, 0131, 0171, 0275, 0242, 0113, 0313, 0113, 0253, 0111,
2362 0157, 0160, 0045, 0313, 0062, 0277, 0117, 0043, 0207, 0277, 0263, 0061, 0146, 0244, 0336, 0254,
2363 0077, 0155, 0106, 0315, 0153, 0326, 0232, 0063, 0200, 0026, 0241, 0370, 0062, 0360, 0203, 0305,
2364 0336, 0156, 0377, 0236, 0210, 0304, 0177, 0276, 0377, 0005, 0167, 0217, 0362, 0106, 0271, 0223,
2365 0015, 0036, 0000, 0000, 0000, 0000, 0111, 0105, 0116, 0104, 0256, 0102, 0140, 0202, 0000, 0000,
2366 0050, 0165, 0165, 0141, 0171, 0051, 0062, 0065, 0066, 0170, 0062, 0065, 0066, 0057, 0000, 0000,
2367 0001, 0000, 0000, 0000, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0055,
2368 0160, 0162, 0145, 0146, 0145, 0162, 0145, 0156, 0143, 0145, 0163, 0056, 0165, 0151, 0000, 0000,
2369 0040, 0033, 0000, 0000, 0000, 0000, 0000, 0000, 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145,
2370 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061, 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157,
2371 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124, 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074,
2372 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0040, 0040, 0074, 0041, 0055,
2373 0055, 0040, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0055, 0162, 0145, 0161, 0165,
2374 0151, 0162, 0145, 0163, 0040, 0147, 0164, 0153, 0053, 0040, 0062, 0056, 0066, 0040, 0055, 0055,
2375 0076, 0012, 0040, 0040, 0074, 0041, 0055, 0055, 0040, 0151, 0156, 0164, 0145, 0162, 0146, 0141,
2376 0143, 0145, 0055, 0156, 0141, 0155, 0151, 0156, 0147, 0055, 0160, 0157, 0154, 0151, 0143, 0171,
2377 0040, 0164, 0157, 0160, 0154, 0145, 0166, 0145, 0154, 0055, 0143, 0157, 0156, 0164, 0145, 0170,
2378 0164, 0165, 0141, 0154, 0040, 0055, 0055, 0076, 0012, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
2379 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0104, 0151, 0141,
2380 0154, 0157, 0147, 0042, 0040, 0151, 0144, 0075, 0042, 0160, 0162, 0145, 0146, 0145, 0162, 0145,
2381 0156, 0143, 0145, 0163, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2382 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
2383 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
2384 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2385 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0162, 0144, 0145,
2386 0162, 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0065, 0074, 0057, 0160, 0162, 0157, 0160,
2387 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2388 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0151, 0164, 0154, 0145, 0042,
2389 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171,
2390 0145, 0163, 0042, 0076, 0120, 0162, 0145, 0146, 0145, 0162, 0145, 0156, 0143, 0145, 0163, 0074,
2391 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074,
2392 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164,
2393 0171, 0160, 0145, 0137, 0150, 0151, 0156, 0164, 0042, 0076, 0156, 0157, 0162, 0155, 0141, 0154,
2394 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2395 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144, 0145,
2396 0154, 0145, 0164, 0145, 0055, 0145, 0166, 0145, 0156, 0164, 0042, 0040, 0150, 0141, 0156, 0144,
2397 0154, 0145, 0162, 0075, 0042, 0147, 0164, 0153, 0137, 0167, 0151, 0144, 0147, 0145, 0164, 0137,
2398 0150, 0151, 0144, 0145, 0137, 0157, 0156, 0137, 0144, 0145, 0154, 0145, 0164, 0145, 0042, 0040,
2399 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040,
2400 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145, 0162, 0156,
2401 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042, 0166, 0142, 0157, 0170, 0042, 0076,
2402 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
2403 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0126, 0102, 0157, 0170, 0042, 0040, 0151,
2404 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147, 0055, 0166, 0142, 0157, 0170, 0061, 0042,
2405 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2406 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
2407 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2408 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2409 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
2410 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
2411 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2412 0143, 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143,
2413 0150, 0151, 0154, 0144, 0075, 0042, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162, 0145,
2414 0141, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
2415 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
2416 0110, 0102, 0165, 0164, 0164, 0157, 0156, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042,
2417 0144, 0151, 0141, 0154, 0157, 0147, 0055, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162,
2418 0145, 0141, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2419 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2420 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
2421 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2422 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2423 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163,
2424 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2425 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2426 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154,
2427 0141, 0171, 0157, 0165, 0164, 0137, 0163, 0164, 0171, 0154, 0145, 0042, 0076, 0145, 0156, 0144,
2428 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2429 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
2430 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2431 0154, 0141, 0143, 0145, 0150, 0157, 0154, 0144, 0145, 0162, 0057, 0076, 0012, 0040, 0040, 0040,
2432 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
2433 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
2434 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2435 0040, 0040, 0040, 0040, 0074, 0160, 0154, 0141, 0143, 0145, 0150, 0157, 0154, 0144, 0145, 0162,
2436 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2437 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2438 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
2439 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012,
2440 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2441 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141,
2442 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
2443 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2444 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2445 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
2446 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2447 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2448 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160,
2449 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2450 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
2451 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
2452 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
2453 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164,
2454 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0116, 0157, 0164, 0145, 0142,
2455 0157, 0157, 0153, 0042, 0040, 0151, 0144, 0075, 0042, 0156, 0157, 0164, 0145, 0142, 0157, 0157,
2456 0153, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2457 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
2458 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
2459 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2460 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2461 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
2462 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2463 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150,
2464 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2465 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163,
2466 0075, 0042, 0107, 0164, 0153, 0126, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0166,
2467 0142, 0157, 0170, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2468 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2469 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076,
2470 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2471 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2472 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2473 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
2474 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2475 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2476 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0162, 0144,
2477 0145, 0162, 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0061, 0070, 0074, 0057, 0160, 0162,
2478 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2479 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2480 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042,
2481 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2482 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
2483 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2484 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
2485 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145, 0154, 0042,
2486 0040, 0151, 0144, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0062, 0042, 0076, 0012, 0040, 0040,
2487 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2488 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2489 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
2490 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2491 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2492 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
2493 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
2494 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2495 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2496 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170,
2497 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
2498 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2499 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2500 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164,
2501 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163,
2502 0042, 0076, 0106, 0157, 0154, 0144, 0145, 0162, 0040, 0163, 0150, 0141, 0162, 0151, 0156, 0147,
2503 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2504 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2505 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040,
2506 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2507 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156, 0141,
2508 0155, 0145, 0075, 0042, 0167, 0145, 0151, 0147, 0150, 0164, 0042, 0040, 0166, 0141, 0154, 0165,
2509 0145, 0075, 0042, 0142, 0157, 0154, 0144, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2510 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2511 0057, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040,
2512 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2513 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2514 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153,
2515 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2516 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2517 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042,
2518 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2519 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2520 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2521 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0106, 0141, 0154, 0163,
2522 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2523 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2524 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
2525 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162,
2526 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2527 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153,
2528 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2529 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
2530 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
2531 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2532 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
2533 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0124, 0141, 0142, 0154, 0145, 0042,
2534 0040, 0151, 0144, 0075, 0042, 0164, 0141, 0142, 0154, 0145, 0061, 0042, 0076, 0012, 0040, 0040,
2535 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2536 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2537 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
2538 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2539 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2540 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
2541 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
2542 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2543 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2544 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142,
2545 0157, 0162, 0144, 0145, 0162, 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0066, 0074, 0057,
2546 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2547 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2548 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0156, 0137,
2549 0162, 0157, 0167, 0163, 0042, 0076, 0063, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2550 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2551 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2552 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0156, 0137, 0143, 0157, 0154, 0165, 0155, 0156, 0163,
2553 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2554 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2555 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2556 0145, 0075, 0042, 0143, 0157, 0154, 0165, 0155, 0156, 0137, 0163, 0160, 0141, 0143, 0151, 0156,
2557 0147, 0042, 0076, 0061, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2558 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2559 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2560 0141, 0155, 0145, 0075, 0042, 0162, 0157, 0167, 0137, 0163, 0160, 0141, 0143, 0151, 0156, 0147,
2561 0042, 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2562 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2563 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2564 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2565 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042,
2566 0107, 0164, 0153, 0103, 0150, 0145, 0143, 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0042, 0040,
2567 0151, 0144, 0075, 0042, 0143, 0142, 0163, 0150, 0141, 0162, 0145, 0146, 0157, 0154, 0144, 0145,
2568 0162, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2569 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2570 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145,
2571 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075,
2572 0042, 0171, 0145, 0163, 0042, 0076, 0123, 0150, 0141, 0162, 0145, 0040, 0146, 0157, 0154, 0144,
2573 0145, 0162, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2574 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2575 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2576 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124,
2577 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2578 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2579 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2580 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163,
2581 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2582 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2583 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2584 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166,
2585 0145, 0163, 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0106, 0141, 0154, 0163,
2586 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2587 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2588 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2589 0141, 0155, 0145, 0075, 0042, 0144, 0162, 0141, 0167, 0137, 0151, 0156, 0144, 0151, 0143, 0141,
2590 0164, 0157, 0162, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2591 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2592 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152,
2593 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2594 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153,
2595 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2596 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
2597 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0137, 0157,
2598 0160, 0164, 0151, 0157, 0156, 0163, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2599 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2600 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2601 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2602 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2603 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
2604 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2605 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
2606 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0103, 0150, 0145, 0143,
2607 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0142, 0163,
2608 0150, 0141, 0162, 0145, 0146, 0157, 0154, 0144, 0145, 0162, 0162, 0157, 0042, 0076, 0012, 0040,
2609 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2610 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2611 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162,
2612 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042,
2613 0076, 0122, 0145, 0141, 0144, 0055, 0157, 0156, 0154, 0171, 0074, 0057, 0160, 0162, 0157, 0160,
2614 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2615 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2616 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151,
2617 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
2618 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2619 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2620 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
2621 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
2622 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2623 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2624 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2625 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163, 0137, 0144, 0145, 0146, 0141, 0165,
2626 0154, 0164, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2627 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2628 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
2629 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144, 0162, 0141,
2630 0167, 0137, 0151, 0156, 0144, 0151, 0143, 0141, 0164, 0157, 0162, 0042, 0076, 0124, 0162, 0165,
2631 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2632 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2633 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040,
2634 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2635 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040,
2636 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2637 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2638 0141, 0155, 0145, 0075, 0042, 0162, 0151, 0147, 0150, 0164, 0137, 0141, 0164, 0164, 0141, 0143,
2639 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2640 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2641 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2642 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0157, 0160, 0137, 0141, 0164, 0164, 0141,
2643 0143, 0150, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2644 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2645 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2646 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0164, 0164, 0157, 0155, 0137,
2647 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2648 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2649 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143,
2650 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2651 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154,
2652 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2653 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
2654 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2655 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141,
2656 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0103, 0150, 0145, 0143, 0153, 0102, 0165, 0164, 0164,
2657 0157, 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0142, 0163, 0150, 0141, 0162, 0145, 0143,
2658 0154, 0151, 0160, 0142, 0157, 0141, 0162, 0144, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2659 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2660 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2661 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154,
2662 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0123, 0150, 0141,
2663 0162, 0145, 0040, 0143, 0154, 0151, 0160, 0142, 0157, 0141, 0162, 0144, 0074, 0057, 0160, 0162,
2664 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2665 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2666 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2667 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
2668 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2669 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2670 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
2671 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145,
2672 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2673 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2674 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2675 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163, 0137, 0144, 0145, 0146,
2676 0141, 0165, 0154, 0164, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
2677 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2678 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2679 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144,
2680 0162, 0141, 0167, 0137, 0151, 0156, 0144, 0151, 0143, 0141, 0164, 0157, 0162, 0042, 0076, 0124,
2681 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2682 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2683 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
2684 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2685 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040,
2686 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2687 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2688 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0151, 0147, 0150, 0164, 0137, 0141, 0164, 0164,
2689 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2690 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2691 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2692 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0157, 0160, 0137, 0141, 0164,
2693 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2694 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2695 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2696 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0164, 0164, 0157,
2697 0155, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0063, 0074, 0057, 0160, 0162, 0157,
2698 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2699 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160,
2700 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2701 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150,
2702 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2703 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076,
2704 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2705 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
2706 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0106, 0151, 0154, 0145, 0103, 0150, 0157,
2707 0157, 0163, 0145, 0162, 0102, 0165, 0164, 0164, 0157, 0156, 0042, 0040, 0151, 0144, 0075, 0042,
2708 0146, 0143, 0163, 0150, 0141, 0162, 0145, 0146, 0157, 0154, 0144, 0145, 0162, 0042, 0076, 0012,
2709 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2710 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2711 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042,
2712 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2713 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2714 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2715 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
2716 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2717 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2718 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
2719 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164,
2720 0151, 0157, 0156, 0042, 0076, 0163, 0145, 0154, 0145, 0143, 0164, 0055, 0146, 0157, 0154, 0144,
2721 0145, 0162, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2722 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2723 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040,
2724 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2725 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
2726 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2727 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2728 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0145, 0146, 0164, 0137, 0141, 0164, 0164, 0141, 0143,
2729 0150, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2730 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2731 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2732 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0151, 0147, 0150, 0164, 0137, 0141, 0164,
2733 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2734 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2735 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151,
2736 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2737 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076,
2738 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2739 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040,
2740 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2741 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2742 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
2743 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160,
2744 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
2745 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2746 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2747 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076,
2748 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2749 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2750 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2751 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061,
2752 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2753 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
2754 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2755 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
2756 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2757 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2758 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
2759 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154,
2760 0144, 0040, 0164, 0171, 0160, 0145, 0075, 0042, 0164, 0141, 0142, 0042, 0076, 0012, 0040, 0040,
2761 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152,
2762 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141,
2763 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0061, 0042,
2764 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2765 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2766 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
2767 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2768 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2769 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
2770 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
2771 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2772 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2773 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162,
2774 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042,
2775 0076, 0123, 0160, 0151, 0143, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2776 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2777 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2778 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147,
2779 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2780 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2781 0075, 0042, 0164, 0141, 0142, 0137, 0146, 0151, 0154, 0154, 0042, 0076, 0106, 0141, 0154, 0163,
2782 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2783 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143,
2784 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2785 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2786 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
2787 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156,
2788 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2789 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145,
2790 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
2791 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2792 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2793 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
2794 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2795 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2796 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061,
2797 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2798 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076,
2799 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
2800 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164,
2801 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
2802 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0074, 0057, 0151, 0156, 0164,
2803 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0000, 0000, 0050, 0165, 0165, 0141, 0171, 0051,
2804 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0055, 0147, 0165, 0145, 0163,
2805 0164, 0055, 0144, 0145, 0164, 0141, 0151, 0154, 0163, 0056, 0165, 0151, 0000, 0000, 0000, 0000,
2806 0024, 0025, 0000, 0000, 0000, 0000, 0000, 0000, 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145,
2807 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061, 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157,
2808 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124, 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074,
2809 0041, 0055, 0055, 0040, 0107, 0145, 0156, 0145, 0162, 0141, 0164, 0145, 0144, 0040, 0167, 0151,
2810 0164, 0150, 0040, 0147, 0154, 0141, 0144, 0145, 0040, 0063, 0056, 0061, 0066, 0056, 0060, 0040,
2811 0157, 0156, 0040, 0124, 0150, 0165, 0040, 0112, 0141, 0156, 0040, 0061, 0066, 0040, 0061, 0066,
2812 0072, 0061, 0063, 0072, 0063, 0070, 0040, 0062, 0060, 0061, 0064, 0040, 0055, 0055, 0076, 0012,
2813 0074, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0040, 0040, 0074, 0041,
2814 0055, 0055, 0040, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0055, 0162, 0145, 0161,
2815 0165, 0151, 0162, 0145, 0163, 0040, 0147, 0164, 0153, 0053, 0040, 0063, 0056, 0060, 0040, 0055,
2816 0055, 0076, 0012, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141,
2817 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0104, 0151, 0141, 0154, 0157, 0147, 0042, 0040, 0151,
2818 0144, 0075, 0042, 0147, 0165, 0145, 0163, 0164, 0144, 0145, 0164, 0141, 0151, 0154, 0163, 0144,
2819 0151, 0141, 0154, 0157, 0147, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2820 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
2821 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
2822 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2823 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0151, 0164, 0154,
2824 0145, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075,
2825 0042, 0171, 0145, 0163, 0042, 0076, 0107, 0165, 0145, 0163, 0164, 0040, 0104, 0145, 0164, 0141,
2826 0151, 0154, 0163, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2827 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2828 0145, 0075, 0042, 0162, 0145, 0163, 0151, 0172, 0141, 0142, 0154, 0145, 0042, 0076, 0124, 0162,
2829 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2830 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2831 0075, 0042, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0137, 0167, 0151, 0144, 0164, 0150, 0042,
2832 0076, 0064, 0060, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2833 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2834 0155, 0145, 0075, 0042, 0164, 0171, 0160, 0145, 0137, 0150, 0151, 0156, 0164, 0042, 0076, 0144,
2835 0151, 0141, 0154, 0157, 0147, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
2836 0012, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155,
2837 0145, 0075, 0042, 0162, 0145, 0163, 0160, 0157, 0156, 0163, 0145, 0042, 0040, 0150, 0141, 0156,
2838 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145,
2839 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0147, 0165, 0145, 0163, 0164, 0137, 0144,
2840 0145, 0164, 0141, 0151, 0154, 0163, 0137, 0162, 0145, 0163, 0160, 0157, 0156, 0163, 0145, 0042,
2841 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012,
2842 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145, 0162,
2843 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042, 0166, 0142, 0157, 0170, 0042,
2844 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
2845 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0157, 0170, 0042, 0040, 0151,
2846 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147, 0055, 0166, 0142, 0157, 0170, 0062, 0042,
2847 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2848 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157,
2849 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
2850 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2851 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0157, 0162,
2852 0151, 0145, 0156, 0164, 0141, 0164, 0151, 0157, 0156, 0042, 0076, 0166, 0145, 0162, 0164, 0151,
2853 0143, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
2854 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2855 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076,
2856 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2857 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145,
2858 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042, 0141, 0143, 0164, 0151,
2859 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2860 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163,
2861 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0102, 0157, 0170, 0042,
2862 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147, 0055, 0141, 0143, 0164, 0151,
2863 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0062, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2864 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2865 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163,
2866 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2867 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2868 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154,
2869 0141, 0171, 0157, 0165, 0164, 0137, 0163, 0164, 0171, 0154, 0145, 0042, 0076, 0145, 0156, 0144,
2870 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2871 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
2872 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
2873 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
2874 0102, 0165, 0164, 0164, 0157, 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0142, 0165, 0164, 0164,
2875 0157, 0156, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2876 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2877 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141,
2878 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076,
2879 0137, 0103, 0154, 0157, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2880 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2881 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
2882 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
2883 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2884 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
2885 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
2886 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
2887 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2888 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2889 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163, 0137, 0144,
2890 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
2891 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2892 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2893 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145,
2894 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
2895 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2896 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
2897 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141,
2898 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2899 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2900 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106,
2901 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2902 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2903 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
2904 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
2905 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2906 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2907 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076,
2908 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2909 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143,
2910 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2911 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2912 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
2913 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156,
2914 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2915 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145,
2916 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
2917 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2918 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2919 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
2920 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2921 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
2922 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0141, 0143, 0153, 0137, 0164, 0171, 0160, 0145, 0042,
2923 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
2924 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
2925 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151,
2926 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2927 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160,
2928 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2929 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2930 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2931 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163,
2932 0075, 0042, 0107, 0164, 0153, 0124, 0141, 0142, 0154, 0145, 0042, 0040, 0151, 0144, 0075, 0042,
2933 0147, 0162, 0151, 0144, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2934 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2935 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
2936 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2937 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2938 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
2939 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2940 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2941 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
2942 0042, 0142, 0157, 0162, 0144, 0145, 0162, 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0066,
2943 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2944 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2945 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0157, 0167, 0137, 0163, 0160, 0141, 0143,
2946 0151, 0156, 0147, 0042, 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2947 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2948 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0157,
2949 0154, 0165, 0155, 0156, 0137, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0066, 0074,
2950 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
2951 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
2952 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0156, 0137, 0162, 0157, 0167, 0163, 0042, 0076, 0062,
2953 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
2954 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
2955 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
2956 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
2957 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0154, 0141, 0142, 0145, 0154,
2958 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2959 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
2960 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
2961 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
2962 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
2963 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
2964 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
2965 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2966 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2967 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0141, 0154, 0151, 0147, 0156, 0042,
2968 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
2969 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
2970 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141,
2971 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154,
2972 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0116, 0141, 0155, 0145, 0072, 0074, 0057, 0160,
2973 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2974 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
2975 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
2976 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2977 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
2978 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0137, 0157, 0160, 0164, 0151, 0157,
2979 0156, 0163, 0042, 0076, 0107, 0124, 0113, 0137, 0123, 0110, 0122, 0111, 0116, 0113, 0040, 0174,
2980 0040, 0107, 0124, 0113, 0137, 0106, 0111, 0114, 0114, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
2981 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2982 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
2983 0141, 0155, 0145, 0075, 0042, 0171, 0137, 0157, 0160, 0164, 0151, 0157, 0156, 0163, 0042, 0076,
2984 0107, 0124, 0113, 0137, 0106, 0111, 0114, 0114, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
2985 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2986 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040,
2987 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
2988 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
2989 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2990 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163,
2991 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075,
2992 0042, 0154, 0141, 0142, 0145, 0154, 0062, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
2993 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
2994 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
2995 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
2996 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
2997 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
2998 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141,
2999 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
3000 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3001 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170,
3002 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
3003 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3004 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3005 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163,
3006 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0107, 0125,
3007 0111, 0104, 0072, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
3008 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157,
3009 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3010 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040,
3011 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3012 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164,
3013 0157, 0160, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0061, 0074, 0057, 0160, 0162,
3014 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3015 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3016 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0164, 0164, 0157, 0155, 0137, 0141,
3017 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
3018 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3019 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3020 0155, 0145, 0075, 0042, 0170, 0137, 0157, 0160, 0164, 0151, 0157, 0156, 0163, 0042, 0076, 0107,
3021 0124, 0113, 0137, 0123, 0110, 0122, 0111, 0116, 0113, 0040, 0174, 0040, 0107, 0124, 0113, 0137,
3022 0106, 0111, 0114, 0114, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
3023 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3024 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3025 0171, 0137, 0157, 0160, 0164, 0151, 0157, 0156, 0163, 0042, 0076, 0107, 0124, 0113, 0137, 0106,
3026 0111, 0114, 0114, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
3027 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160,
3028 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3029 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
3030 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076,
3031 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3032 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164,
3033 0153, 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0156, 0141, 0155, 0145,
3034 0166, 0141, 0154, 0165, 0145, 0154, 0141, 0142, 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040,
3035 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3036 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163,
3037 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
3038 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3039 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
3040 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
3041 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3042 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3043 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
3044 0075, 0042, 0170, 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157,
3045 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3046 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3047 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162,
3048 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042,
3049 0076, 0154, 0141, 0142, 0145, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3050 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3051 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
3052 0075, 0042, 0163, 0145, 0154, 0145, 0143, 0164, 0141, 0142, 0154, 0145, 0042, 0076, 0124, 0162,
3053 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
3054 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142,
3055 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3056 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
3057 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
3058 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0145,
3059 0146, 0164, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0061, 0074, 0057, 0160, 0162,
3060 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3061 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3062 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0151, 0147, 0150, 0164, 0137, 0141, 0164,
3063 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3064 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3065 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
3066 0145, 0075, 0042, 0171, 0137, 0157, 0160, 0164, 0151, 0157, 0156, 0163, 0042, 0076, 0107, 0124,
3067 0113, 0137, 0106, 0111, 0114, 0114, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3068 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3069 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3070 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
3071 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
3072 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3073 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
3074 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0147,
3075 0165, 0151, 0144, 0166, 0141, 0154, 0165, 0145, 0154, 0141, 0142, 0145, 0154, 0042, 0076, 0012,
3076 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3077 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3078 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
3079 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3080 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3081 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
3082 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3083 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3084 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3085 0141, 0155, 0145, 0075, 0042, 0170, 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057,
3086 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3087 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
3088 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042,
3089 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171,
3090 0145, 0163, 0042, 0076, 0154, 0141, 0142, 0145, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3091 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3092 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3093 0141, 0155, 0145, 0075, 0042, 0163, 0145, 0154, 0145, 0143, 0164, 0141, 0142, 0154, 0145, 0042,
3094 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3095 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3096 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3097 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076,
3098 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3099 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3100 0042, 0154, 0145, 0146, 0164, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0061, 0074,
3101 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3102 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3103 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0151, 0147, 0150, 0164,
3104 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160,
3105 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3106 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
3107 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0157, 0160, 0137, 0141, 0164, 0164, 0141, 0143, 0150,
3108 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
3109 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3110 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142,
3111 0157, 0164, 0164, 0157, 0155, 0137, 0141, 0164, 0164, 0141, 0143, 0150, 0042, 0076, 0062, 0074,
3112 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3113 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3114 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0171, 0137, 0157, 0160, 0164,
3115 0151, 0157, 0156, 0163, 0042, 0076, 0107, 0124, 0113, 0137, 0106, 0111, 0114, 0114, 0074, 0057,
3116 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3117 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156,
3118 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3119 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3120 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
3121 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012,
3122 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3123 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141,
3124 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3125 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3126 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3127 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
3128 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3129 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
3130 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061, 0074, 0057,
3131 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3132 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040,
3133 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
3134 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
3135 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
3136 0040, 0074, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0163,
3137 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0143, 0164, 0151, 0157, 0156, 0055,
3138 0167, 0151, 0144, 0147, 0145, 0164, 0040, 0162, 0145, 0163, 0160, 0157, 0156, 0163, 0145, 0075,
3139 0042, 0055, 0067, 0042, 0076, 0142, 0165, 0164, 0164, 0157, 0156, 0061, 0074, 0057, 0141, 0143,
3140 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0076, 0012, 0040, 0040, 0040,
3141 0040, 0074, 0057, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164,
3142 0163, 0076, 0012, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0074,
3143 0057, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0000, 0000, 0050, 0165,
3144 0165, 0141, 0171, 0051, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0056,
3145 0165, 0151, 0000, 0000, 0000, 0000, 0000, 0000, 0325, 0116, 0000, 0000, 0000, 0000, 0000, 0000,
3146 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145, 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061,
3147 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157, 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124,
3148 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074, 0041, 0055, 0055, 0040, 0107, 0145, 0156, 0145,
3149 0162, 0141, 0164, 0145, 0144, 0040, 0167, 0151, 0164, 0150, 0040, 0147, 0154, 0141, 0144, 0145,
3150 0040, 0063, 0056, 0062, 0060, 0056, 0060, 0040, 0055, 0055, 0076, 0012, 0074, 0151, 0156, 0164,
3151 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0040, 0040, 0074, 0162, 0145, 0161, 0165, 0151,
3152 0162, 0145, 0163, 0040, 0154, 0151, 0142, 0075, 0042, 0147, 0164, 0153, 0053, 0042, 0040, 0166,
3153 0145, 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0063, 0056, 0060, 0042, 0057, 0076, 0012, 0040,
3154 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042,
3155 0107, 0164, 0153, 0101, 0143, 0143, 0145, 0154, 0107, 0162, 0157, 0165, 0160, 0042, 0040, 0151,
3156 0144, 0075, 0042, 0141, 0143, 0143, 0145, 0154, 0147, 0162, 0157, 0165, 0160, 0042, 0057, 0076,
3157 0012, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163,
3158 0075, 0042, 0107, 0164, 0153, 0101, 0160, 0160, 0154, 0151, 0143, 0141, 0164, 0151, 0157, 0156,
3159 0127, 0151, 0156, 0144, 0157, 0167, 0042, 0040, 0151, 0144, 0075, 0042, 0166, 0151, 0145, 0167,
3160 0145, 0162, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3161 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
3162 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3163 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3164 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144, 0145, 0146, 0141, 0165, 0154, 0164,
3165 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0061, 0060, 0062, 0064, 0074, 0057, 0160, 0162,
3166 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3167 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144, 0145, 0146, 0141,
3168 0165, 0154, 0164, 0137, 0150, 0145, 0151, 0147, 0150, 0164, 0042, 0076, 0067, 0066, 0070, 0074,
3169 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074,
3170 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144, 0145, 0154,
3171 0145, 0164, 0145, 0055, 0145, 0166, 0145, 0156, 0164, 0042, 0040, 0150, 0141, 0156, 0144, 0154,
3172 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137,
3173 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0144, 0145, 0154, 0145, 0164, 0145, 0042, 0040, 0163,
3174 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040,
3175 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3176 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107,
3177 0164, 0153, 0117, 0166, 0145, 0162, 0154, 0141, 0171, 0042, 0040, 0151, 0144, 0075, 0042, 0166,
3178 0151, 0145, 0167, 0145, 0162, 0055, 0157, 0166, 0145, 0162, 0154, 0141, 0171, 0042, 0076, 0012,
3179 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3180 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042,
3181 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3182 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3183 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
3184 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3185 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150,
3186 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3187 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164,
3188 0153, 0126, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0166, 0151, 0145, 0167, 0145,
3189 0162, 0055, 0142, 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3190 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3191 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
3192 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3193 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3194 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
3195 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3196 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3197 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3198 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
3199 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0102, 0141, 0162,
3200 0042, 0040, 0151, 0144, 0075, 0042, 0164, 0157, 0160, 0055, 0155, 0145, 0156, 0165, 0042, 0076,
3201 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3202 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3203 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
3204 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3205 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
3206 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157,
3207 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
3208 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3209 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
3210 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3211 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107,
3212 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042,
3213 0155, 0145, 0156, 0165, 0055, 0146, 0151, 0154, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
3214 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3215 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3216 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
3217 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3218 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3219 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
3220 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
3221 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3222 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3223 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145,
3224 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156,
3225 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3226 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3227 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3228 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040,
3229 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145,
3230 0163, 0042, 0076, 0137, 0106, 0151, 0154, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
3231 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3232 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3233 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145,
3234 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
3235 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3236 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154,
3237 0144, 0040, 0164, 0171, 0160, 0145, 0075, 0042, 0163, 0165, 0142, 0155, 0145, 0156, 0165, 0042,
3238 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3239 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
3240 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0042, 0040,
3241 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
3242 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3243 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3244 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
3245 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3246 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3247 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3248 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076,
3249 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3250 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3251 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3252 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0147,
3253 0162, 0157, 0165, 0160, 0042, 0076, 0141, 0143, 0143, 0145, 0154, 0147, 0162, 0157, 0165, 0160,
3254 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
3255 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3256 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
3257 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3258 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154,
3259 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155,
3260 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0146, 0151, 0154, 0145, 0055,
3261 0163, 0143, 0162, 0145, 0145, 0156, 0163, 0150, 0157, 0164, 0042, 0076, 0012, 0040, 0040, 0040,
3262 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3263 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3264 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0145, 0156, 0163, 0151, 0164, 0151,
3265 0166, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3266 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3267 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3268 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3269 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
3270 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3271 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3272 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
3273 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
3274 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3275 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3276 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
3277 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163,
3278 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141,
3279 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
3280 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3281 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3282 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
3283 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141,
3284 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0123, 0143, 0162,
3285 0145, 0145, 0156, 0163, 0150, 0157, 0164, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3286 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3287 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3288 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165,
3289 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162,
3290 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
3291 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3292 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141,
3293 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145,
3294 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137,
3295 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145,
3296 0156, 0165, 0137, 0146, 0151, 0154, 0145, 0137, 0163, 0143, 0162, 0145, 0145, 0156, 0163, 0150,
3297 0157, 0164, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042,
3298 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3299 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157,
3300 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3301 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3302 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3303 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3304 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3305 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3306 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
3307 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144,
3308 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0146, 0151, 0154, 0145, 0055, 0165, 0163, 0142, 0055,
3309 0144, 0145, 0166, 0151, 0143, 0145, 0055, 0163, 0145, 0154, 0145, 0143, 0164, 0151, 0157, 0156,
3310 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3311 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3312 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166,
3313 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
3314 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3315 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3316 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3317 0155, 0145, 0075, 0042, 0163, 0145, 0156, 0163, 0151, 0164, 0151, 0166, 0145, 0042, 0076, 0106,
3318 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
3319 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3320 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3321 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
3322 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
3323 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3324 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3325 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3326 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141,
3327 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
3328 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
3329 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3330 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3331 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164,
3332 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163,
3333 0042, 0076, 0137, 0125, 0123, 0102, 0040, 0144, 0145, 0166, 0151, 0143, 0145, 0040, 0163, 0145,
3334 0154, 0145, 0143, 0164, 0151, 0157, 0156, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3335 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3336 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3337 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165,
3338 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162,
3339 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
3340 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3341 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141,
3342 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145,
3343 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137,
3344 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145,
3345 0156, 0165, 0137, 0146, 0151, 0154, 0145, 0137, 0165, 0163, 0142, 0137, 0144, 0145, 0166, 0151,
3346 0143, 0145, 0137, 0163, 0145, 0154, 0145, 0143, 0164, 0151, 0157, 0156, 0042, 0040, 0163, 0167,
3347 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040,
3348 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3349 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
3350 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3351 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
3352 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3353 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144,
3354 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3355 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152,
3356 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145,
3357 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165,
3358 0055, 0146, 0151, 0154, 0145, 0055, 0163, 0155, 0141, 0162, 0164, 0143, 0141, 0162, 0144, 0055,
3359 0151, 0156, 0163, 0145, 0162, 0164, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3360 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3361 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3362 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076,
3363 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3364 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3365 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3366 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145,
3367 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156,
3368 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3369 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3370 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3371 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3372 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0160, 0141, 0164, 0150, 0042, 0076, 0046, 0154, 0164,
3373 0073, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0046, 0147, 0164, 0073,
3374 0057, 0146, 0151, 0154, 0145, 0057, 0163, 0155, 0141, 0162, 0164, 0143, 0141, 0162, 0144, 0055,
3375 0151, 0156, 0163, 0145, 0162, 0164, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3376 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3377 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
3378 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141,
3379 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154,
3380 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0123, 0155, 0141, 0162, 0164, 0143, 0141, 0162,
3381 0144, 0040, 0151, 0156, 0163, 0145, 0162, 0164, 0151, 0157, 0156, 0074, 0057, 0160, 0162, 0157,
3382 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3383 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3384 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
3385 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145,
3386 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3387 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3388 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163,
3389 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151,
3390 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166,
3391 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157,
3392 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0146, 0151, 0154, 0145, 0137, 0163, 0155, 0141, 0162,
3393 0164, 0143, 0141, 0162, 0144, 0137, 0151, 0156, 0163, 0145, 0162, 0164, 0042, 0040, 0163, 0167,
3394 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040,
3395 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3396 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
3397 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3398 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
3399 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3400 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144,
3401 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3402 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152,
3403 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145,
3404 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165,
3405 0055, 0146, 0151, 0154, 0145, 0055, 0163, 0155, 0141, 0162, 0164, 0143, 0141, 0162, 0144, 0055,
3406 0162, 0145, 0155, 0157, 0166, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3407 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3408 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3409 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076,
3410 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3411 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3412 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3413 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145,
3414 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156,
3415 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3416 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3417 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3418 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3419 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0160, 0141, 0164, 0150, 0042, 0076, 0046, 0154, 0164,
3420 0073, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0046, 0147, 0164, 0073,
3421 0057, 0146, 0151, 0154, 0145, 0057, 0163, 0155, 0141, 0162, 0164, 0143, 0141, 0162, 0144, 0055,
3422 0162, 0145, 0155, 0157, 0166, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3423 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3424 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
3425 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141,
3426 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154,
3427 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0123, 0155, 0141, 0162, 0164, 0143, 0141, 0162,
3428 0144, 0040, 0162, 0145, 0155, 0157, 0166, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3429 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3430 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3431 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3432 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076,
3433 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
3434 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3435 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147,
3436 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141,
3437 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162,
3438 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137,
3439 0155, 0145, 0156, 0165, 0137, 0146, 0151, 0154, 0145, 0137, 0163, 0155, 0141, 0162, 0164, 0143,
3440 0141, 0162, 0144, 0137, 0162, 0145, 0155, 0157, 0166, 0145, 0042, 0040, 0163, 0167, 0141, 0160,
3441 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3442 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3443 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
3444 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3445 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
3446 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3447 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
3448 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3449 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
3450 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165,
3451 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0143,
3452 0150, 0141, 0156, 0147, 0145, 0055, 0143, 0144, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3453 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3454 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3455 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163,
3456 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3457 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3458 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3459 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154,
3460 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142,
3461 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0103, 0150, 0141, 0156, 0147, 0145,
3462 0040, 0103, 0104, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
3463 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3464 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3465 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165,
3466 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
3467 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3468 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3469 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141,
3470 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141,
3471 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167,
3472 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0143,
3473 0150, 0141, 0156, 0147, 0145, 0137, 0143, 0144, 0137, 0141, 0143, 0164, 0151, 0166, 0141, 0164,
3474 0145, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057,
3475 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3476 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142,
3477 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3478 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
3479 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3480 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3481 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3482 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3483 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042,
3484 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075,
3485 0042, 0155, 0145, 0156, 0165, 0055, 0160, 0162, 0145, 0146, 0145, 0162, 0145, 0156, 0143, 0145,
3486 0163, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3487 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3488 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3489 0163, 0145, 0156, 0163, 0151, 0164, 0151, 0166, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
3490 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
3491 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3492 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3493 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042,
3494 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3495 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3496 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3497 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
3498 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
3499 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3500 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3501 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3502 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156,
3503 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137,
3504 0120, 0162, 0145, 0146, 0145, 0162, 0145, 0156, 0143, 0145, 0163, 0074, 0057, 0160, 0162, 0157,
3505 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3506 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3507 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
3508 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145,
3509 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3510 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3511 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163,
3512 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151,
3513 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166,
3514 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157,
3515 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0160, 0162, 0145, 0146, 0145, 0162, 0145, 0156, 0143,
3516 0145, 0163, 0137, 0143, 0142, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042,
3517 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3518 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3519 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3520 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3521 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3522 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3523 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3524 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3525 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141,
3526 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0123, 0145, 0160, 0141, 0162, 0141, 0164, 0157, 0162,
3527 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0163, 0145,
3528 0160, 0141, 0162, 0141, 0164, 0157, 0162, 0155, 0145, 0156, 0165, 0151, 0164, 0145, 0155, 0061,
3529 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3530 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3531 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166,
3532 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
3533 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3534 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3535 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3536 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106,
3537 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
3538 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3539 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145,
3540 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3541 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150,
3542 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3543 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150,
3544 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3545 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3546 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164,
3547 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0151,
3548 0155, 0141, 0147, 0145, 0155, 0145, 0156, 0165, 0151, 0164, 0145, 0155, 0065, 0042, 0076, 0012,
3549 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3550 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3551 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145,
3552 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075,
3553 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0121, 0165, 0151, 0164, 0074, 0057, 0160, 0162, 0157,
3554 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3555 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3556 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
3557 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145,
3558 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
3559 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3560 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3561 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165,
3562 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
3563 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3564 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3565 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3566 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141,
3567 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
3568 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3569 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3570 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3571 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156,
3572 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3573 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3574 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3575 0141, 0143, 0143, 0145, 0154, 0145, 0162, 0141, 0164, 0157, 0162, 0040, 0153, 0145, 0171, 0075,
3576 0042, 0161, 0042, 0040, 0163, 0151, 0147, 0156, 0141, 0154, 0075, 0042, 0141, 0143, 0164, 0151,
3577 0166, 0141, 0164, 0145, 0042, 0040, 0155, 0157, 0144, 0151, 0146, 0151, 0145, 0162, 0163, 0075,
3578 0042, 0107, 0104, 0113, 0137, 0123, 0110, 0111, 0106, 0124, 0137, 0115, 0101, 0123, 0113, 0040,
3579 0174, 0040, 0107, 0104, 0113, 0137, 0103, 0117, 0116, 0124, 0122, 0117, 0114, 0137, 0115, 0101,
3580 0123, 0113, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3581 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3582 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3583 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145,
3584 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167,
3585 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0146, 0151, 0154, 0145, 0137,
3586 0161, 0165, 0151, 0164, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156,
3587 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3588 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
3589 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3590 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3591 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3592 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3593 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3594 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
3595 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3596 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143,
3597 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3598 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
3599 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
3600 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3601 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154,
3602 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155,
3603 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0155, 0141, 0143, 0150, 0151,
3604 0156, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3605 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3606 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
3607 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3608 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3609 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3610 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040,
3611 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145,
3612 0163, 0042, 0076, 0137, 0115, 0141, 0143, 0150, 0151, 0156, 0145, 0074, 0057, 0160, 0162, 0157,
3613 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3614 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3615 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165,
3616 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
3617 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3618 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
3619 0150, 0151, 0154, 0144, 0040, 0164, 0171, 0160, 0145, 0075, 0042, 0163, 0165, 0142, 0155, 0145,
3620 0156, 0165, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3621 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
3622 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156,
3623 0165, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3624 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3625 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
3626 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3627 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3628 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3629 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
3630 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
3631 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3632 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3633 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3634 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3635 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163,
3636 0075, 0042, 0107, 0164, 0153, 0103, 0150, 0145, 0143, 0153, 0115, 0145, 0156, 0165, 0111, 0164,
3637 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0166, 0155, 0055,
3638 0160, 0141, 0165, 0163, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3639 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3640 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3641 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
3642 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3643 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3644 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3645 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
3646 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3647 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3648 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3649 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3650 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164,
3651 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0120, 0141, 0165, 0163,
3652 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3653 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3654 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3655 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144,
3656 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
3657 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3658 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3659 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145,
3660 0075, 0042, 0164, 0157, 0147, 0147, 0154, 0145, 0144, 0042, 0040, 0150, 0141, 0156, 0144, 0154,
3661 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137,
3662 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0155, 0141, 0143, 0150,
3663 0151, 0156, 0145, 0137, 0160, 0141, 0165, 0163, 0145, 0042, 0040, 0163, 0167, 0141, 0160, 0160,
3664 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3665 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3666 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040,
3667 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3668 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
3669 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3670 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
3671 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3672 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164,
3673 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0123, 0145, 0160, 0141, 0162,
3674 0141, 0164, 0157, 0162, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0076, 0012, 0040,
3675 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3676 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3677 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142,
3678 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
3679 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3680 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3681 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3682 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
3683 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
3684 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3685 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
3686 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3687 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076,
3688 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3689 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076,
3690 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3691 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
3692 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156,
3693 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055,
3694 0166, 0155, 0055, 0162, 0145, 0163, 0145, 0164, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3695 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3696 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3697 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076,
3698 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
3699 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3700 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3701 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
3702 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
3703 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3704 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3705 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3706 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163,
3707 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0122,
3708 0145, 0163, 0145, 0164, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
3709 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3710 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3711 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137,
3712 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
3713 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3714 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3715 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156,
3716 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150,
3717 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145,
3718 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137,
3719 0155, 0141, 0143, 0150, 0151, 0156, 0145, 0137, 0162, 0145, 0163, 0145, 0164, 0042, 0040, 0163,
3720 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040,
3721 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3722 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164,
3723 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3724 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154,
3725 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3726 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154,
3727 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3728 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142,
3729 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115,
3730 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156,
3731 0165, 0055, 0166, 0155, 0055, 0160, 0157, 0167, 0145, 0162, 0144, 0157, 0167, 0156, 0042, 0076,
3732 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3733 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3734 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163,
3735 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
3736 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3737 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3738 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
3739 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154,
3740 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
3741 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3742 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
3743 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042,
3744 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171,
3745 0145, 0163, 0042, 0076, 0137, 0120, 0157, 0167, 0145, 0162, 0040, 0144, 0157, 0167, 0156, 0074,
3746 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3747 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3748 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3749 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162,
3750 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
3751 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3752 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3753 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3754 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145,
3755 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167,
3756 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0155, 0141, 0143, 0150, 0151,
3757 0156, 0145, 0137, 0160, 0157, 0167, 0145, 0162, 0144, 0157, 0167, 0156, 0042, 0040, 0163, 0167,
3758 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040,
3759 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3760 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
3761 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3762 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
3763 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3764 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164,
3765 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3766 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
3767 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3768 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3769 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151,
3770 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3771 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
3772 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
3773 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
3774 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145,
3775 0156, 0165, 0055, 0166, 0151, 0145, 0167, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3776 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
3777 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151,
3778 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
3779 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3780 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3781 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
3782 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
3783 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3784 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3785 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141,
3786 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145,
3787 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3788 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3789 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3790 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162,
3791 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042,
3792 0076, 0137, 0126, 0151, 0145, 0167, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3793 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3794 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
3795 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154,
3796 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3797 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3798 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040,
3799 0164, 0171, 0160, 0145, 0075, 0042, 0163, 0165, 0142, 0155, 0145, 0156, 0165, 0042, 0076, 0012,
3800 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3801 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154,
3802 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0042, 0040, 0151, 0144,
3803 0075, 0042, 0155, 0145, 0156, 0165, 0062, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3804 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3805 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
3806 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
3807 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3808 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3809 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
3810 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141,
3811 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
3812 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3813 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
3814 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0147, 0162, 0157,
3815 0165, 0160, 0042, 0076, 0141, 0143, 0143, 0145, 0154, 0147, 0162, 0157, 0165, 0160, 0074, 0057,
3816 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3817 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3818 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3819 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3820 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163,
3821 0163, 0075, 0042, 0107, 0164, 0153, 0103, 0150, 0145, 0143, 0153, 0115, 0145, 0156, 0165, 0111,
3822 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0166, 0151,
3823 0145, 0167, 0055, 0146, 0165, 0154, 0154, 0163, 0143, 0162, 0145, 0145, 0156, 0042, 0076, 0012,
3824 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3825 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3826 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
3827 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3828 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3829 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3830 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3831 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163,
3832 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3833 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3834 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3835 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164,
3836 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076,
3837 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3838 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3839 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3840 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0143,
3841 0145, 0154, 0137, 0160, 0141, 0164, 0150, 0042, 0076, 0046, 0154, 0164, 0073, 0166, 0151, 0162,
3842 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0046, 0147, 0164, 0073, 0057, 0166, 0151, 0145,
3843 0167, 0057, 0164, 0157, 0147, 0147, 0154, 0145, 0055, 0146, 0165, 0154, 0154, 0163, 0143, 0162,
3844 0145, 0145, 0156, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
3845 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3846 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3847 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154,
3848 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042,
3849 0171, 0145, 0163, 0042, 0076, 0137, 0106, 0165, 0154, 0154, 0040, 0163, 0143, 0162, 0145, 0145,
3850 0156, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3851 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3852 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
3853 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144,
3854 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
3855 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3856 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3857 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145,
3858 0075, 0042, 0164, 0157, 0147, 0147, 0154, 0145, 0144, 0042, 0040, 0150, 0141, 0156, 0144, 0154,
3859 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137,
3860 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0166, 0151, 0145, 0167,
3861 0137, 0146, 0165, 0154, 0154, 0163, 0143, 0162, 0145, 0145, 0156, 0042, 0040, 0163, 0167, 0141,
3862 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040,
3863 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3864 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
3865 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3866 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076,
3867 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3868 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076,
3869 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3870 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
3871 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156,
3872 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055,
3873 0166, 0151, 0145, 0167, 0055, 0172, 0157, 0157, 0155, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
3874 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3875 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3876 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0145, 0156, 0163, 0151, 0164, 0151, 0166,
3877 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
3878 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3879 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3880 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
3881 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
3882 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3883 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3884 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3885 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076,
3886 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3887 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3888 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3889 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145,
3890 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156,
3891 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3892 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3893 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3894 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3895 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164,
3896 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0132, 0157, 0157, 0155,
3897 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
3898 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3899 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
3900 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145,
3901 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
3902 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3903 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3904 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0164, 0171, 0160, 0145, 0075, 0042,
3905 0163, 0165, 0142, 0155, 0145, 0156, 0165, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3906 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3907 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
3908 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0042, 0040,
3909 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0064, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
3910 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3911 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
3912 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
3913 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
3914 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3915 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3916 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
3917 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076,
3918 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
3919 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3920 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3921 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3922 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0147, 0162, 0157, 0165, 0160, 0042, 0076, 0141, 0143,
3923 0143, 0145, 0154, 0147, 0162, 0157, 0165, 0160, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
3924 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3925 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3926 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
3927 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3928 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
3929 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
3930 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145,
3931 0156, 0165, 0055, 0166, 0151, 0145, 0167, 0055, 0172, 0157, 0157, 0155, 0055, 0151, 0156, 0042,
3932 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3933 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3934 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
3935 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0160, 0141, 0164, 0150,
3936 0042, 0076, 0046, 0154, 0164, 0073, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145,
3937 0162, 0046, 0147, 0164, 0073, 0057, 0166, 0151, 0145, 0167, 0057, 0172, 0157, 0157, 0155, 0055,
3938 0151, 0156, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
3939 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3940 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3941 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
3942 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141,
3943 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0132, 0157, 0157, 0155,
3944 0040, 0137, 0111, 0156, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
3945 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3946 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3947 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
3948 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
3949 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3950 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3951 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3952 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3953 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163,
3954 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
3955 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3956 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3957 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
3958 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145,
3959 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
3960 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3961 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3962 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
3963 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145,
3964 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145,
3965 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
3966 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3967 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3968 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143,
3969 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075,
3970 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156,
3971 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0166, 0151, 0145, 0167, 0137, 0172, 0157,
3972 0157, 0155, 0137, 0151, 0156, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042,
3973 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3974 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3975 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164,
3976 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3977 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3978 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
3979 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3980 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154,
3981 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3982 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3983 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141,
3984 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042,
3985 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0166, 0151, 0145, 0167, 0055, 0172,
3986 0157, 0157, 0155, 0055, 0157, 0165, 0164, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
3987 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3988 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
3989 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143,
3990 0143, 0145, 0154, 0137, 0160, 0141, 0164, 0150, 0042, 0076, 0046, 0154, 0164, 0073, 0166, 0151,
3991 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0046, 0147, 0164, 0073, 0057, 0166, 0151,
3992 0145, 0167, 0057, 0172, 0157, 0157, 0155, 0055, 0157, 0165, 0164, 0074, 0057, 0160, 0162, 0157,
3993 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3994 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
3995 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
3996 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154,
3997 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042,
3998 0171, 0145, 0163, 0042, 0076, 0132, 0157, 0157, 0155, 0040, 0137, 0117, 0165, 0164, 0074, 0057,
3999 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4000 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4001 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
4002 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151,
4003 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
4004 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4005 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4006 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4007 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
4008 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
4009 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4010 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4011 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4012 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141,
4013 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145,
4014 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4015 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4016 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4017 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4018 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162,
4019 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4020 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4021 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4022 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141,
4023 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145,
4024 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137,
4025 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145,
4026 0156, 0165, 0137, 0166, 0151, 0145, 0167, 0137, 0172, 0157, 0157, 0155, 0137, 0157, 0165, 0164,
4027 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076,
4028 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4029 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4030 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040,
4031 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4032 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
4033 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4034 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4035 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
4036 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4037 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4038 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107,
4039 0164, 0153, 0123, 0145, 0160, 0141, 0162, 0141, 0164, 0157, 0162, 0115, 0145, 0156, 0165, 0111,
4040 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0163, 0145, 0160, 0141, 0162, 0141, 0164,
4041 0157, 0162, 0155, 0145, 0156, 0165, 0151, 0164, 0145, 0155, 0064, 0042, 0076, 0012, 0040, 0040,
4042 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4043 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4044 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4045 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
4046 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4047 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4048 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4049 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
4050 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
4051 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4052 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4053 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157,
4054 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4055 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4056 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
4057 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4058 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4059 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4060 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4061 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
4062 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165,
4063 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0166,
4064 0151, 0145, 0167, 0055, 0172, 0157, 0157, 0155, 0055, 0162, 0145, 0163, 0145, 0164, 0042, 0076,
4065 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4066 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4067 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
4068 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0160, 0141, 0164, 0150, 0042,
4069 0076, 0046, 0154, 0164, 0073, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162,
4070 0046, 0147, 0164, 0073, 0057, 0166, 0151, 0145, 0167, 0057, 0172, 0157, 0157, 0155, 0055, 0162,
4071 0145, 0163, 0145, 0164, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
4072 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4073 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4074 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4075 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163,
4076 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0116,
4077 0157, 0162, 0155, 0141, 0154, 0040, 0123, 0151, 0172, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4078 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4079 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4080 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
4081 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
4082 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4083 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4084 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4085 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4086 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163,
4087 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4088 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4089 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4090 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4091 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157,
4092 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141,
4093 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
4094 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4095 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4096 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
4097 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145,
4098 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4099 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4100 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4101 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141,
4102 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141,
4103 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167,
4104 0145, 0162, 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0166,
4105 0151, 0145, 0167, 0137, 0172, 0157, 0157, 0155, 0137, 0162, 0145, 0163, 0145, 0164, 0042, 0040,
4106 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040,
4107 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4108 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4109 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4110 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4111 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151,
4112 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4113 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4114 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
4115 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4116 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076,
4117 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4118 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152,
4119 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4120 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
4121 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4122 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
4123 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4124 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4125 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107,
4126 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042,
4127 0155, 0145, 0156, 0165, 0055, 0144, 0151, 0163, 0160, 0154, 0141, 0171, 0163, 0042, 0076, 0012,
4128 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4129 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4130 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
4131 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4132 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4133 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4134 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
4135 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163,
4136 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4137 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4138 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4139 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164,
4140 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076,
4141 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
4142 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4143 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4144 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142,
4145 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145,
4146 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0104, 0151, 0163, 0160, 0154, 0141, 0171, 0163,
4147 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
4148 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4149 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4150 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145,
4151 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
4152 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4153 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4154 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4155 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4156 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
4157 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4158 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
4159 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4160 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154,
4161 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155,
4162 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0166, 0151, 0145, 0167, 0055,
4163 0162, 0145, 0154, 0145, 0141, 0163, 0145, 0055, 0143, 0165, 0162, 0163, 0157, 0162, 0042, 0076,
4164 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4165 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4166 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
4167 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
4168 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4169 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4170 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
4171 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137,
4172 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163,
4173 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4174 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4175 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4176 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0143, 0145, 0154, 0137, 0160,
4177 0141, 0164, 0150, 0042, 0076, 0046, 0154, 0164, 0073, 0166, 0151, 0162, 0164, 0055, 0166, 0151,
4178 0145, 0167, 0145, 0162, 0046, 0147, 0164, 0073, 0057, 0166, 0151, 0145, 0167, 0057, 0162, 0145,
4179 0154, 0145, 0141, 0163, 0145, 0055, 0143, 0165, 0162, 0163, 0157, 0162, 0074, 0057, 0160, 0162,
4180 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4181 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4182 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4183 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163,
4184 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0122, 0145,
4185 0154, 0145, 0141, 0163, 0145, 0040, 0143, 0165, 0162, 0163, 0157, 0162, 0074, 0057, 0160, 0162,
4186 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4187 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4188 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4189 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156,
4190 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4191 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4192 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4193 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141, 0143, 0164,
4194 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042,
4195 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151, 0156, 0144,
4196 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0166, 0151, 0145, 0167, 0137, 0162, 0145, 0154,
4197 0145, 0141, 0163, 0145, 0137, 0143, 0165, 0162, 0163, 0157, 0162, 0042, 0040, 0163, 0167, 0141,
4198 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040,
4199 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4200 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
4201 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4202 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076,
4203 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4204 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
4205 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4206 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
4207 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4208 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4209 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154,
4210 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4211 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4212 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142,
4213 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115,
4214 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156,
4215 0165, 0055, 0163, 0145, 0156, 0144, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4216 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4217 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0145, 0156,
4218 0163, 0151, 0164, 0151, 0166, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
4219 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4220 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4221 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163,
4222 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4223 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4224 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
4225 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157,
4226 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4227 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4228 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
4229 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143,
4230 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042,
4231 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4232 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4233 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
4234 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141,
4235 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076,
4236 0137, 0123, 0145, 0156, 0144, 0040, 0153, 0145, 0171, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4237 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4238 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4239 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144,
4240 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
4241 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4242 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145,
4243 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4244 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
4245 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150,
4246 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4247 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
4248 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145,
4249 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0150, 0145, 0154, 0160,
4250 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4251 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4252 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076,
4253 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
4254 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4255 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4256 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106,
4257 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
4258 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4259 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4260 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141,
4261 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
4262 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
4263 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4264 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
4265 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141,
4266 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0110, 0145, 0154, 0160, 0074,
4267 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4268 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4269 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165,
4270 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162,
4271 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
4272 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4273 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0164, 0171, 0160, 0145, 0075, 0042, 0163,
4274 0165, 0142, 0155, 0145, 0156, 0165, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4275 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4276 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164,
4277 0153, 0115, 0145, 0156, 0165, 0042, 0040, 0151, 0144, 0075, 0042, 0155, 0145, 0156, 0165, 0063,
4278 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4279 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4280 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142,
4281 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
4282 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4283 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4284 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
4285 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
4286 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4287 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4288 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4289 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4290 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
4291 0042, 0107, 0164, 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144,
4292 0075, 0042, 0155, 0145, 0156, 0165, 0055, 0150, 0145, 0154, 0160, 0055, 0147, 0165, 0145, 0163,
4293 0164, 0055, 0144, 0145, 0164, 0141, 0151, 0154, 0163, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
4294 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4295 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4296 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042,
4297 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
4298 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4299 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4300 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
4301 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
4302 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4303 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4304 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
4305 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137,
4306 0141, 0160, 0160, 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163,
4307 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4308 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4309 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4310 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040,
4311 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145,
4312 0163, 0042, 0076, 0137, 0107, 0165, 0145, 0163, 0164, 0040, 0104, 0145, 0164, 0141, 0151, 0154,
4313 0163, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4314 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4315 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4316 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144,
4317 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
4318 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4319 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4320 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145,
4321 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144,
4322 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162,
4323 0137, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0150, 0145, 0154,
4324 0160, 0137, 0147, 0165, 0145, 0163, 0164, 0137, 0144, 0145, 0164, 0141, 0151, 0154, 0163, 0042,
4325 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012,
4326 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4327 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145,
4328 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4329 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150,
4330 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4331 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150,
4332 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4333 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4334 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164,
4335 0153, 0115, 0145, 0156, 0165, 0111, 0164, 0145, 0155, 0042, 0040, 0151, 0144, 0075, 0042, 0151,
4336 0155, 0141, 0147, 0145, 0155, 0145, 0156, 0165, 0151, 0164, 0145, 0155, 0061, 0060, 0042, 0076,
4337 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4338 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4339 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142,
4340 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145,
4341 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0101, 0142, 0157, 0165, 0164, 0074, 0057, 0160,
4342 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4343 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4344 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
4345 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162,
4346 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
4347 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4348 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
4349 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157,
4350 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4351 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4352 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4353 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4354 0075, 0042, 0165, 0163, 0145, 0137, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0160, 0160,
4355 0145, 0141, 0162, 0141, 0156, 0143, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057,
4356 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4357 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4358 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
4359 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154,
4360 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4361 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4362 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4363 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141,
4364 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0042, 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162,
4365 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0167, 0151,
4366 0156, 0144, 0157, 0167, 0137, 0155, 0145, 0156, 0165, 0137, 0150, 0145, 0154, 0160, 0137, 0141,
4367 0142, 0157, 0165, 0164, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156,
4368 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4369 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4370 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4371 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4372 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4373 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4374 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4375 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
4376 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4377 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143,
4378 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4379 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
4380 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145,
4381 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4382 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040,
4383 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4384 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141,
4385 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4386 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4387 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
4388 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
4389 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4390 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4391 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164,
4392 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4393 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4394 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4395 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
4396 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145,
4397 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
4398 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4399 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4400 0155, 0145, 0075, 0042, 0151, 0156, 0144, 0145, 0170, 0042, 0076, 0055, 0061, 0074, 0057, 0160,
4401 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4402 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
4403 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
4404 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
4405 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0074, 0057,
4406 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0074, 0057, 0151, 0156, 0164, 0145, 0162, 0146,
4407 0141, 0143, 0145, 0076, 0012, 0000, 0000, 0050, 0165, 0165, 0141, 0171, 0051, 0062, 0062, 0170,
4408 0062, 0062, 0057, 0000, 0004, 0000, 0000, 0000, 0064, 0070, 0170, 0064, 0070, 0057, 0000, 0000,
4409 0022, 0000, 0000, 0000, 0062, 0064, 0170, 0062, 0064, 0057, 0000, 0000, 0033, 0000, 0000, 0000,
4410 0005, 0000, 0000, 0000, 0151, 0143, 0157, 0156, 0163, 0057, 0000, 0000, 0031, 0000, 0000, 0000,
4411 0014, 0000, 0000, 0000, 0016, 0000, 0000, 0000, 0010, 0000, 0000, 0000, 0032, 0000, 0000, 0000,
4412 0015, 0000, 0000, 0000, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0055,
4413 0141, 0142, 0157, 0165, 0164, 0056, 0165, 0151, 0243, 0014, 0000, 0000, 0000, 0000, 0000, 0000,
4414 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145, 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061,
4415 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157, 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124,
4416 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143,
4417 0145, 0076, 0012, 0040, 0040, 0074, 0041, 0055, 0055, 0040, 0151, 0156, 0164, 0145, 0162, 0146,
4418 0141, 0143, 0145, 0055, 0162, 0145, 0161, 0165, 0151, 0162, 0145, 0163, 0040, 0147, 0164, 0153,
4419 0053, 0040, 0062, 0056, 0061, 0062, 0040, 0055, 0055, 0076, 0012, 0040, 0040, 0074, 0157, 0142,
4420 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0101,
4421 0142, 0157, 0165, 0164, 0104, 0151, 0141, 0154, 0157, 0147, 0042, 0040, 0151, 0144, 0075, 0042,
4422 0141, 0142, 0157, 0165, 0164, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4423 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
4424 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
4425 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4426 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157, 0162, 0144,
4427 0145, 0162, 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0065, 0074, 0057, 0160, 0162, 0157,
4428 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4429 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0151, 0164, 0154, 0145,
4430 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042,
4431 0171, 0145, 0163, 0042, 0076, 0101, 0142, 0157, 0165, 0164, 0040, 0126, 0151, 0162, 0164, 0055,
4432 0126, 0151, 0145, 0167, 0145, 0162, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4433 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
4434 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0163, 0151, 0172, 0141, 0142, 0154, 0145, 0042,
4435 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4436 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
4437 0156, 0141, 0155, 0145, 0075, 0042, 0155, 0157, 0144, 0141, 0154, 0042, 0076, 0124, 0162, 0165,
4438 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4439 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
4440 0042, 0167, 0151, 0156, 0144, 0157, 0167, 0137, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156,
4441 0042, 0076, 0143, 0145, 0156, 0164, 0145, 0162, 0055, 0157, 0156, 0055, 0160, 0141, 0162, 0145,
4442 0156, 0164, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
4443 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4444 0075, 0042, 0144, 0145, 0163, 0164, 0162, 0157, 0171, 0137, 0167, 0151, 0164, 0150, 0137, 0160,
4445 0141, 0162, 0145, 0156, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
4446 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4447 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0171, 0160, 0145, 0137,
4448 0150, 0151, 0156, 0164, 0042, 0076, 0144, 0151, 0141, 0154, 0157, 0147, 0074, 0057, 0160, 0162,
4449 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4450 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0153, 0151, 0160,
4451 0137, 0164, 0141, 0163, 0153, 0142, 0141, 0162, 0137, 0150, 0151, 0156, 0164, 0042, 0076, 0124,
4452 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
4453 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
4454 0145, 0075, 0042, 0163, 0153, 0151, 0160, 0137, 0160, 0141, 0147, 0145, 0162, 0137, 0150, 0151,
4455 0156, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
4456 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4457 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0162, 0157, 0147, 0162, 0141, 0155, 0137,
4458 0156, 0141, 0155, 0145, 0042, 0076, 0126, 0151, 0162, 0164, 0165, 0141, 0154, 0040, 0115, 0141,
4459 0143, 0150, 0151, 0156, 0145, 0040, 0126, 0151, 0145, 0167, 0145, 0162, 0074, 0057, 0160, 0162,
4460 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4461 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0157, 0160, 0171,
4462 0162, 0151, 0147, 0150, 0164, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141,
4463 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0103, 0157, 0160, 0171, 0162, 0151,
4464 0147, 0150, 0164, 0040, 0050, 0103, 0051, 0040, 0062, 0060, 0060, 0067, 0055, 0062, 0060, 0061,
4465 0062, 0040, 0104, 0141, 0156, 0151, 0145, 0154, 0040, 0120, 0056, 0040, 0102, 0145, 0162, 0162,
4466 0141, 0156, 0147, 0145, 0012, 0103, 0157, 0160, 0171, 0162, 0151, 0147, 0150, 0164, 0040, 0050,
4467 0103, 0051, 0040, 0062, 0060, 0060, 0067, 0055, 0062, 0060, 0061, 0064, 0040, 0122, 0145, 0144,
4468 0040, 0110, 0141, 0164, 0054, 0040, 0111, 0156, 0143, 0056, 0074, 0057, 0160, 0162, 0157, 0160,
4469 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
4470 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0157, 0155, 0155, 0145, 0156,
4471 0164, 0163, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145,
4472 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0101, 0040, 0162, 0145, 0155, 0157, 0164, 0145, 0040,
4473 0144, 0145, 0163, 0153, 0164, 0157, 0160, 0040, 0143, 0154, 0151, 0145, 0156, 0164, 0040, 0142,
4474 0165, 0151, 0154, 0164, 0040, 0167, 0151, 0164, 0150, 0040, 0107, 0124, 0113, 0055, 0126, 0116,
4475 0103, 0054, 0040, 0123, 0120, 0111, 0103, 0105, 0055, 0107, 0124, 0113, 0040, 0141, 0156, 0144,
4476 0040, 0154, 0151, 0142, 0166, 0151, 0162, 0164, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
4477 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4478 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0167, 0145, 0142, 0163, 0151, 0164, 0145, 0042,
4479 0076, 0150, 0164, 0164, 0160, 0072, 0057, 0057, 0147, 0151, 0164, 0154, 0141, 0142, 0056, 0143,
4480 0157, 0155, 0057, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0057, 0166,
4481 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0057, 0074, 0057, 0160, 0162, 0157,
4482 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4483 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0167, 0145, 0142, 0163, 0151,
4484 0164, 0145, 0137, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154,
4485 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0147, 0151, 0164,
4486 0154, 0141, 0142, 0056, 0143, 0157, 0155, 0057, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145,
4487 0167, 0145, 0162, 0057, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0074,
4488 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074,
4489 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154,
4490 0151, 0143, 0145, 0156, 0163, 0145, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164,
4491 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0124, 0150, 0151, 0163, 0040,
4492 0160, 0162, 0157, 0147, 0162, 0141, 0155, 0040, 0151, 0163, 0040, 0146, 0162, 0145, 0145, 0040,
4493 0163, 0157, 0146, 0164, 0167, 0141, 0162, 0145, 0073, 0040, 0171, 0157, 0165, 0040, 0143, 0141,
4494 0156, 0040, 0162, 0145, 0144, 0151, 0163, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0151,
4495 0164, 0040, 0141, 0156, 0144, 0057, 0157, 0162, 0040, 0155, 0157, 0144, 0151, 0146, 0171, 0012,
4496 0151, 0164, 0040, 0165, 0156, 0144, 0145, 0162, 0040, 0164, 0150, 0145, 0040, 0164, 0145, 0162,
4497 0155, 0163, 0040, 0157, 0146, 0040, 0164, 0150, 0145, 0040, 0107, 0116, 0125, 0040, 0107, 0145,
4498 0156, 0145, 0162, 0141, 0154, 0040, 0120, 0165, 0142, 0154, 0151, 0143, 0040, 0114, 0151, 0143,
4499 0145, 0156, 0163, 0145, 0040, 0141, 0163, 0040, 0160, 0165, 0142, 0154, 0151, 0163, 0150, 0145,
4500 0144, 0040, 0142, 0171, 0012, 0164, 0150, 0145, 0040, 0106, 0162, 0145, 0145, 0040, 0123, 0157,
4501 0146, 0164, 0167, 0141, 0162, 0145, 0040, 0106, 0157, 0165, 0156, 0144, 0141, 0164, 0151, 0157,
4502 0156, 0073, 0040, 0145, 0151, 0164, 0150, 0145, 0162, 0040, 0166, 0145, 0162, 0163, 0151, 0157,
4503 0156, 0040, 0062, 0040, 0157, 0146, 0040, 0164, 0150, 0145, 0040, 0114, 0151, 0143, 0145, 0156,
4504 0163, 0145, 0054, 0040, 0157, 0162, 0012, 0050, 0141, 0164, 0040, 0171, 0157, 0165, 0162, 0040,
4505 0157, 0160, 0164, 0151, 0157, 0156, 0051, 0040, 0141, 0156, 0171, 0040, 0154, 0141, 0164, 0145,
4506 0162, 0040, 0166, 0145, 0162, 0163, 0151, 0157, 0156, 0056, 0012, 0012, 0124, 0150, 0151, 0163,
4507 0040, 0160, 0162, 0157, 0147, 0162, 0141, 0155, 0040, 0151, 0163, 0040, 0144, 0151, 0163, 0164,
4508 0162, 0151, 0142, 0165, 0164, 0145, 0144, 0040, 0151, 0156, 0040, 0164, 0150, 0145, 0040, 0150,
4509 0157, 0160, 0145, 0040, 0164, 0150, 0141, 0164, 0040, 0151, 0164, 0040, 0167, 0151, 0154, 0154,
4510 0040, 0142, 0145, 0040, 0165, 0163, 0145, 0146, 0165, 0154, 0054, 0012, 0142, 0165, 0164, 0040,
4511 0127, 0111, 0124, 0110, 0117, 0125, 0124, 0040, 0101, 0116, 0131, 0040, 0127, 0101, 0122, 0122,
4512 0101, 0116, 0124, 0131, 0073, 0040, 0167, 0151, 0164, 0150, 0157, 0165, 0164, 0040, 0145, 0166,
4513 0145, 0156, 0040, 0164, 0150, 0145, 0040, 0151, 0155, 0160, 0154, 0151, 0145, 0144, 0040, 0167,
4514 0141, 0162, 0162, 0141, 0156, 0164, 0171, 0040, 0157, 0146, 0012, 0115, 0105, 0122, 0103, 0110,
4515 0101, 0116, 0124, 0101, 0102, 0111, 0114, 0111, 0124, 0131, 0040, 0157, 0162, 0040, 0106, 0111,
4516 0124, 0116, 0105, 0123, 0123, 0040, 0106, 0117, 0122, 0040, 0101, 0040, 0120, 0101, 0122, 0124,
4517 0111, 0103, 0125, 0114, 0101, 0122, 0040, 0120, 0125, 0122, 0120, 0117, 0123, 0105, 0056, 0040,
4518 0040, 0123, 0145, 0145, 0040, 0164, 0150, 0145, 0012, 0107, 0116, 0125, 0040, 0107, 0145, 0156,
4519 0145, 0162, 0141, 0154, 0040, 0120, 0165, 0142, 0154, 0151, 0143, 0040, 0114, 0151, 0143, 0145,
4520 0156, 0163, 0145, 0040, 0146, 0157, 0162, 0040, 0155, 0157, 0162, 0145, 0040, 0144, 0145, 0164,
4521 0141, 0151, 0154, 0163, 0056, 0012, 0012, 0131, 0157, 0165, 0040, 0163, 0150, 0157, 0165, 0154,
4522 0144, 0040, 0150, 0141, 0166, 0145, 0040, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0144, 0040,
4523 0141, 0040, 0143, 0157, 0160, 0171, 0040, 0157, 0146, 0040, 0164, 0150, 0145, 0040, 0107, 0116,
4524 0125, 0040, 0107, 0145, 0156, 0145, 0162, 0141, 0154, 0040, 0120, 0165, 0142, 0154, 0151, 0143,
4525 0040, 0114, 0151, 0143, 0145, 0156, 0163, 0145, 0012, 0141, 0154, 0157, 0156, 0147, 0040, 0167,
4526 0151, 0164, 0150, 0040, 0164, 0150, 0151, 0163, 0040, 0160, 0162, 0157, 0147, 0162, 0141, 0155,
4527 0073, 0040, 0151, 0146, 0040, 0156, 0157, 0164, 0054, 0040, 0167, 0162, 0151, 0164, 0145, 0040,
4528 0164, 0157, 0040, 0164, 0150, 0145, 0040, 0106, 0162, 0145, 0145, 0040, 0123, 0157, 0146, 0164,
4529 0167, 0141, 0162, 0145, 0012, 0106, 0157, 0165, 0156, 0144, 0141, 0164, 0151, 0157, 0156, 0054,
4530 0040, 0111, 0156, 0143, 0056, 0054, 0040, 0065, 0071, 0040, 0124, 0145, 0155, 0160, 0154, 0145,
4531 0040, 0120, 0154, 0141, 0143, 0145, 0054, 0040, 0123, 0165, 0151, 0164, 0145, 0040, 0063, 0063,
4532 0060, 0054, 0040, 0102, 0157, 0163, 0164, 0157, 0156, 0054, 0040, 0115, 0101, 0040, 0040, 0060,
4533 0062, 0061, 0061, 0061, 0055, 0061, 0063, 0060, 0067, 0040, 0040, 0125, 0123, 0101, 0012, 0074,
4534 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074,
4535 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0141,
4536 0165, 0164, 0150, 0157, 0162, 0163, 0042, 0076, 0104, 0141, 0156, 0151, 0145, 0154, 0040, 0120,
4537 0056, 0040, 0102, 0145, 0162, 0162, 0141, 0156, 0147, 0145, 0012, 0115, 0141, 0162, 0143, 0055,
4538 0101, 0156, 0144, 0162, 0303, 0251, 0040, 0114, 0165, 0162, 0145, 0141, 0165, 0012, 0074, 0057,
4539 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160,
4540 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0162,
4541 0141, 0156, 0163, 0154, 0141, 0164, 0157, 0162, 0137, 0143, 0162, 0145, 0144, 0151, 0164, 0163,
4542 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042,
4543 0171, 0145, 0163, 0042, 0076, 0124, 0150, 0145, 0040, 0106, 0145, 0144, 0157, 0162, 0141, 0040,
4544 0124, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0151, 0157, 0156, 0040, 0124, 0145, 0141, 0155,
4545 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
4546 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144, 0145,
4547 0154, 0145, 0164, 0145, 0055, 0145, 0166, 0145, 0156, 0164, 0042, 0040, 0150, 0141, 0156, 0144,
4548 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167, 0145, 0162,
4549 0137, 0141, 0160, 0160, 0137, 0141, 0142, 0157, 0165, 0164, 0137, 0144, 0145, 0154, 0145, 0164,
4550 0145, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057,
4551 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141,
4552 0155, 0145, 0075, 0042, 0162, 0145, 0163, 0160, 0157, 0156, 0163, 0145, 0042, 0040, 0150, 0141,
4553 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0166, 0151, 0162, 0164, 0137, 0166, 0151, 0145, 0167,
4554 0145, 0162, 0137, 0141, 0160, 0160, 0137, 0141, 0142, 0157, 0165, 0164, 0137, 0143, 0154, 0157,
4555 0163, 0145, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042, 0156, 0157, 0042,
4556 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0151, 0156,
4557 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042, 0166, 0142,
4558 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145,
4559 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0157, 0170,
4560 0042, 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147, 0055, 0166, 0142, 0157,
4561 0170, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4562 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163,
4563 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4564 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
4565 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141,
4566 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057,
4567 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4568 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4569 0075, 0042, 0157, 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151, 0157, 0156, 0042, 0076, 0166,
4570 0145, 0162, 0164, 0151, 0143, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4571 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4572 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151,
4573 0156, 0147, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
4574 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040,
4575 0151, 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042,
4576 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0042, 0076, 0012, 0040, 0040,
4577 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
4578 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156,
4579 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147, 0055,
4580 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0061, 0042, 0076, 0012, 0040,
4581 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4582 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142,
4583 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
4584 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4585 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
4586 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
4587 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
4588 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4589 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0171, 0157, 0165, 0164, 0137, 0163,
4590 0164, 0171, 0154, 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4591 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4592 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4593 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040,
4594 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4595 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042,
4596 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4597 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
4598 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151,
4599 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
4600 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4601 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
4602 0160, 0141, 0143, 0153, 0137, 0164, 0171, 0160, 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057,
4603 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4604 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
4605 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076,
4606 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4607 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147,
4608 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154,
4609 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154,
4610 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0154,
4611 0141, 0143, 0145, 0150, 0157, 0154, 0144, 0145, 0162, 0057, 0076, 0012, 0040, 0040, 0040, 0040,
4612 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
4613 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040,
4614 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0074, 0057, 0157, 0142,
4615 0152, 0145, 0143, 0164, 0076, 0012, 0074, 0057, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143,
4616 0145, 0076, 0012, 0000, 0000, 0050, 0165, 0165, 0141, 0171, 0051, 0157, 0162, 0147, 0057, 0000,
4617 0003, 0000, 0000, 0000, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0056,
4618 0160, 0156, 0147, 0000, 0000, 0000, 0000, 0000, 0356, 0011, 0000, 0000, 0000, 0000, 0000, 0000,
4619 0211, 0120, 0116, 0107, 0015, 0012, 0032, 0012, 0000, 0000, 0000, 0015, 0111, 0110, 0104, 0122,
4620 0000, 0000, 0000, 0060, 0000, 0000, 0000, 0060, 0010, 0006, 0000, 0000, 0000, 0127, 0002, 0371,
4621 0207, 0000, 0000, 0000, 0006, 0142, 0113, 0107, 0104, 0000, 0377, 0000, 0377, 0000, 0377, 0240,
4622 0275, 0247, 0223, 0000, 0000, 0011, 0243, 0111, 0104, 0101, 0124, 0150, 0201, 0355, 0131, 0115,
4623 0214, 0034, 0107, 0025, 0376, 0252, 0253, 0252, 0177, 0274, 0073, 0373, 0343, 0135, 0147, 0263,
4624 0011, 0153, 0257, 0167, 0263, 0366, 0072, 0153, 0223, 0113, 0022, 0105, 0162, 0204, 0344, 0040,
4625 0204, 0204, 0024, 0070, 0160, 0340, 0220, 0113, 0316, 0134, 0120, 0044, 0070, 0041, 0041, 0116,
4626 0050, 0110, 0310, 0026, 0101, 0334, 0120, 0156, 0010, 0024, 0041, 0204, 0104, 0040, 0012, 0134,
4627 0242, 0044, 0007, 0022, 0341, 0215, 0223, 0020, 0054, 0205, 0200, 0155, 0262, 0273, 0236, 0265,
4628 0167, 0147, 0147, 0147, 0172, 0176, 0372, 0247, 0336, 0343, 0320, 0323, 0063, 0335, 0063, 0275,
4629 0063, 0203, 0235, 0023, 0244, 0244, 0322, 0124, 0167, 0275, 0256, 0372, 0276, 0367, 0136, 0175,
4630 0135, 0135, 0003, 0174, 0136, 0076, 0057, 0377, 0337, 0105, 0024, 0335, 0174, 0351, 0245, 0227,
4631 0246, 0204, 0045, 0136, 0141, 0342, 0247, 0230, 0331, 0276, 0227, 0201, 0211, 0010, 0314, 0334,
4632 0255, 0375, 0327, 0331, 0173, 0000, 0272, 0367, 0214, 0061, 0003, 0066, 0102, 0160, 0203, 0010,
4633 0077, 0177, 0361, 0305, 0027, 0177, 0330, 0077, 0217, 0052, 0232, 0334, 0030, 0363, 0235, 0363,
4634 0217, 0156, 0134, 0172, 0342, 0311, 0047, 0154, 0113, 0130, 0103, 0201, 0062, 0070, 0163, 0301,
4635 0231, 0373, 0071, 0243, 0302, 0013, 0316, 0135, 0346, 0214, 0162, 0175, 0141, 0024, 0172, 0057,
4636 0377, 0342, 0345, 0357, 0276, 0360, 0302, 0013, 0177, 0274, 0162, 0345, 0312, 0273, 0043, 0011,
4637 0150, 0255, 0317, 0057, 0057, 0237, 0262, 0133, 0355, 0006, 0032, 0315, 0006, 0174, 0077, 0056,
4638 0006, 0237, 0002, 0346, 0014, 0221, 0114, 0333, 0165, 0044, 0154, 0307, 0032, 0152, 0063, 0116,
4639 0373, 0370, 0314, 0074, 0316, 0256, 0257, 0133, 0273, 0273, 0157, 0236, 0001, 0060, 0232, 0200,
4640 0260, 0304, 0214, 0326, 0066, 0014, 0031, 0374, 0372, 0127, 0037, 0341, 0265, 0127, 0077, 0300,
4641 0304, 0204, 0354, 0205, 0173, 0030, 0221, 0114, 0247, 0045, 0005, 0244, 0145, 0165, 0154, 0062,
4642 0366, 0375, 0336, 0316, 0106, 0216, 0031, 0267, 0167, 0002, 0174, 0377, 0007, 0137, 0306, 0306,
4643 0306, 0064, 0300, 0200, 0061, 0006, 0256, 0353, 0110, 0000, 0123, 0375, 0130, 0013, 0011, 0200,
4644 0171, 0132, 0051, 0005, 0046, 0203, 0073, 0145, 0037, 0217, 0077, 0076, 0211, 0331, 0331, 0143,
4645 0140, 0106, 0056, 0077, 0323, 0011, 0173, 0025, 0271, 0076, 0042, 0116, 0340, 0166, 0372, 0372,
4646 0355, 0223, 0176, 0014, 0264, 0033, 0376, 0076, 0166, 0266, 0153, 0230, 0235, 0151, 0301, 0161,
4647 0034, 0314, 0315, 0237, 0200, 0353, 0272, 0062, 0216, 0343, 0322, 0130, 0004, 0230, 0121, 0122,
4648 0132, 0041, 0214, 0142, 0124, 0253, 0055, 0314, 0316, 0020, 0242, 0050, 0056, 0004, 0332, 0003,
4649 0227, 0357, 0313, 0202, 0075, 0012, 0150, 0336, 0256, 0107, 0320, 0262, 0200, 0275, 0275, 0046,
4650 0226, 0116, 0075, 0012, 0062, 0004, 0046, 0202, 0343, 0330, 0122, 0010, 0061, 0075, 0036, 0001,
4651 0360, 0244, 0222, 0022, 0101, 0110, 0150, 0064, 0042, 0314, 0316, 0020, 0302, 0060, 0032, 0013,
4652 0050, 0063, 0103, 0010, 0321, 0155, 0367, 0236, 0101, 0346, 0231, 0376, 0347, 0023, 0033, 0100,
4653 0200, 0231, 0241, 0065, 0120, 0251, 0264, 0260, 0263, 0125, 0206, 0061, 0006, 0123, 0123, 0323,
4654 0320, 0332, 0206, 0020, 0142, 0176, 0054, 0002, 0140, 0114, 0110, 0251, 0100, 0314, 0010, 0303,
4655 0030, 0314, 0100, 0024, 0305, 0020, 0102, 0164, 0245, 0055, 0055, 0104, 0350, 0003, 0311, 0140,
4656 0246, 0056, 0260, 0101, 0022, 0014, 0041, 0222, 0276, 0224, 0144, 0057, 0362, 0111, 0133, 0051,
4657 0340, 0260, 0332, 0306, 0342, 0303, 0013, 0040, 0112, 0346, 0323, 0132, 0003, 0002, 0263, 0143,
4658 0021, 0040, 0042, 0117, 0112, 0011, 0042, 0203, 0070, 0116, 0010, 0304, 0161, 0066, 0237, 0173,
4659 0236, 0313, 0106, 0141, 0320, 0323, 0351, 0170, 0131, 0033, 0121, 0150, 0313, 0314, 0150, 0066,
4660 0333, 0250, 0327, 0133, 0250, 0126, 0175, 0114, 0226, 0014, 0366, 0357, 0126, 0120, 0073, 0364,
4661 0161, 0156, 0343, 0014, 0264, 0126, 0020, 0020, 0063, 0343, 0105, 0000, 0160, 0055, 0313, 0352,
4662 0246, 0205, 0061, 0107, 0055, 0304, 0236, 0147, 0213, 0110, 0244, 0236, 0076, 0152, 0235, 0060,
4663 0063, 0016, 0017, 0175, 0124, 0052, 0065, 0324, 0152, 0076, 0342, 0330, 0164, 0246, 0027, 0210,
4664 0042, 0203, 0271, 0371, 0343, 0230, 0235, 0233, 0001, 0023, 0103, 0153, 0015, 0143, 0342, 0321,
4665 0153, 0340, 0362, 0345, 0313, 0236, 0326, 0232, 0230, 0331, 0002, 0047, 0157, 0124, 0143, 0150,
4666 0100, 0141, 0006, 0275, 0057, 0006, 0310, 0024, 0021, 0003, 0200, 0146, 0263, 0215, 0273, 0167,
4667 0253, 0250, 0126, 0353, 0060, 0246, 0227, 0216, 0122, 0366, 0340, 0104, 0221, 0101, 0275, 0356,
4668 0343, 0366, 0166, 0031, 0347, 0066, 0316, 0302, 0321, 0036, 0230, 0061, 0132, 0205, 0214, 0061,
4669 0045, 0333, 0326, 0061, 0061, 0051, 0106, 0342, 0375, 0136, 0372, 0144, 0001, 0365, 0247, 0012,
4670 0145, 0264, 0176, 0060, 0225, 0230, 0031, 0255, 0126, 0200, 0335, 0335, 0012, 0152, 0265, 0106,
4671 0327, 0323, 0122, 0312, 0156, 0033, 0110, 0242, 0226, 0106, 0140, 0162, 0162, 0002, 0053, 0153,
4672 0313, 0340, 0016, 0271, 0330, 0304, 0223, 0043, 0011, 0060, 0163, 0111, 0153, 0155, 0322, 0205,
4673 0110, 0206, 0072, 0013, 0051, 0041, 0221, 0346, 0260, 0020, 0131, 0117, 0347, 0011, 0365, 0023,
4674 0155, 0267, 0103, 0224, 0313, 0025, 0064, 0032, 0255, 0001, 0117, 0003, 0242, 0073, 0126, 0217,
4675 0204, 0200, 0211, 0015, 0202, 0040, 0300, 0047, 0037, 0337, 0300, 0372, 0271, 0063, 0230, 0236,
4676 0224, 0060, 0261, 0071, 0066, 0222, 0200, 0224, 0162, 0112, 0073, 0066, 0245, 0012, 0101, 0234,
4677 0156, 0314, 0122, 0013, 0352, 0050, 0110, 0261, 0247, 0063, 0216, 0200, 0061, 0204, 0375, 0375,
4678 0032, 0016, 0016, 0352, 0000, 0070, 0007, 0134, 0210, 0354, 0076, 0122, 0164, 0075, 0237, 0364,
4679 0001, 0121, 0114, 0260, 0155, 0033, 0217, 0236, 0077, 0013, 0010, 0100, 0052, 0205, 0070, 0216,
4680 0275, 0221, 0004, 0230, 0271, 0344, 0332, 0156, 0127, 0012, 0215, 0061, 0035, 0251, 0034, 0324,
4681 0364, 0316, 0023, 0031, 0171, 0024, 0135, 0171, 0254, 0327, 0233, 0250, 0124, 0016, 0141, 0014,
4682 0301, 0262, 0144, 0027, 0130, 0166, 0003, 0334, 0043, 0061, 0030, 0005, 0023, 0123, 0072, 0072,
4683 0100, 0200, 0114, 0104, 0305, 0101, 0272, 0330, 0072, 0145, 0140, 0253, 0031, 0307, 0161, 0311,
4684 0266, 0265, 0105, 0104, 0150, 0066, 0143, 0200, 0011, 0104, 0200, 0061, 0251, 0042, 0365, 0364,
4685 0333, 0030, 0164, 0053, 0221, 0200, 0061, 0214, 0050, 0062, 0270, 0163, 0247, 0212, 0375, 0375,
4686 0032, 0230, 0055, 0110, 0251, 0040, 0245, 0204, 0224, 0012, 0226, 0245, 0072, 0327, 0375, 0125,
4687 0146, 0372, 0022, 0333, 0070, 0356, 0244, 0146, 0147, 0123, 0107, 0104, 0120, 0112, 0321, 0263,
4688 0317, 0076, 0233, 0213, 0102, 0121, 0004, 0246, 0034, 0307, 0266, 0210, 0011, 0015, 0077, 0204,
4689 0260, 0010, 0161, 0234, 0170, 0046, 0315, 0367, 0304, 0163, 0203, 0122, 0352, 0373, 0055, 0324,
4690 0152, 0015, 0060, 0147, 0363, 0174, 0060, 0075, 0212, 0243, 0320, 0177, 0115, 0150, 0267, 0015,
4691 0034, 0327, 0102, 0252, 0206, 0266, 0155, 0307, 0256, 0353, 0116, 0001, 0150, 0036, 0111, 0200,
4692 0210, 0112, 0266, 0355, 0130, 0114, 0004, 0277, 0036, 0165, 0300, 0365, 0044, 0062, 0115, 0021,
4693 0244, 0001, 0146, 0201, 0126, 0053, 0204, 0357, 0067, 0141, 0014, 0103, 0010, 0011, 0041, 0362,
4694 0300, 0212, 0363, 0275, 0230, 0124, 0152, 0153, 0131, 0204, 0132, 0075, 0300, 0011, 0047, 0161,
4695 0270, 0041, 0003, 0317, 0163, 0143, 0042, 0052, 0001, 0050, 0017, 0045, 0240, 0155, 0255, 0210,
4696 0010, 0265, 0172, 0010, 0062, 0004, 0143, 0044, 0172, 0012, 0324, 0333, 0072, 0030, 0103, 0360,
4697 0375, 0066, 0302, 0060, 0002, 0140, 0041, 0121, 0304, 0161, 0074, 0075, 0072, 0052, 0102, 0060,
4698 0374, 0132, 0214, 0023, 0363, 0351, 0046, 0220, 0340, 0272, 0056, 0063, 0163, 0356, 0135, 0120,
4699 0230, 0102, 0266, 0235, 0244, 0120, 0275, 0036, 0041, 0121, 0035, 0253, 0023, 0205, 0144, 0260,
4700 0060, 0064, 0150, 0267, 0103, 0304, 0261, 0201, 0020, 0242, 0223, 0056, 0303, 0075, 0233, 0047,
4701 0061, 0236, 0155, 0275, 0036, 0165, 0325, 0055, 0045, 0100, 0104, 0271, 0157, 0202, 0001, 0002,
4702 0102, 0210, 0071, 0251, 0244, 0040, 0042, 0354, 0355, 0065, 0240, 0224, 0000, 0221, 0000, 0021,
4703 0041, 0212, 0222, 0155, 0165, 0362, 0366, 0114, 0200, 0337, 0113, 0172, 0214, 0143, 0053, 0045,
4704 0120, 0255, 0006, 0211, 0323, 0300, 0040, 0062, 0160, 0034, 0107, 0214, 0214, 0200, 0020, 0342,
4705 0270, 0126, 0032, 0104, 0204, 0152, 0065, 0004, 0263, 0201, 0357, 0123, 0107, 0126, 0005, 0172,
4706 0157, 0317, 0361, 0162, 0174, 0274, 0124, 0032, 0264, 0265, 0155, 0106, 0245, 0322, 0116, 0144,
4707 0264, 0263, 0210, 0135, 0317, 0265, 0072, 0153, 0340, 0150, 0002, 0000, 0315, 0050, 0045, 0101,
4708 0104, 0070, 0254, 0266, 0041, 0245, 0005, 0041, 0004, 0054, 0053, 0125, 0334, 0317, 0046, 0075,
4709 0106, 0021, 0162, 0135, 0106, 0365, 0040, 0350, 0052, 0276, 0041, 0003, 0327, 0163, 0045, 0063,
4710 0017, 0117, 0041, 0146, 0061, 0255, 0224, 0112, 0010, 0034, 0206, 0160, 0034, 0325, 0005, 0060,
4711 0176, 0172, 0334, 0177, 0124, 0034, 0207, 0121, 0255, 0206, 0035, 0114, 0014, 0046, 0206, 0235,
4712 0210, 0313, 0360, 0010, 0030, 0143, 0246, 0244, 0122, 0210, 0114, 0200, 0240, 0035, 0203, 0131,
4713 0042, 0273, 0113, 0270, 0177, 0117, 0217, 0247, 0122, 0000, 0320, 0152, 0305, 0275, 0105, 0314,
4714 0006, 0256, 0343, 0015, 0174, 0330, 0027, 0311, 0350, 0244, 0222, 0022, 0141, 0104, 0370, 0312,
4715 0127, 0117, 0341, 0235, 0277, 0364, 0235, 0153, 0161, 0377, 0045, 0027, 0336, 0037, 0274, 0305,
4716 0135, 0270, 0074, 0330, 0071, 0140, 0317, 0314, 0170, 0342, 0311, 0007, 0272, 0155, 0062, 0004,
4717 0155, 0153, 0241, 0224, 0312, 0175, 0126, 0016, 0020, 0210, 0343, 0170, 0302, 0222, 0022, 0304,
4718 0204, 0213, 0117, 0057, 0342, 0342, 0305, 0305, 0341, 0347, 0066, 0335, 0313, 0174, 0373, 0323,
4719 0133, 0133, 0010, 0302, 0000, 0365, 0272, 0217, 0365, 0365, 0063, 0160, 0135, 0067, 0147, 0223,
4720 0002, 0033, 0267, 0115, 0314, 0260, 0265, 0206, 0245, 0254, 0334, 0147, 0145, 0301, 0032, 0060,
4721 0032, 0140, 0124, 0017, 0016, 0341, 0373, 0376, 0120, 0220, 0271, 0123, 0265, 0276, 0373, 0112,
4722 0111, 0110, 0345, 0341, 0230, 0347, 0341, 0240, 0162, 0220, 0073, 0013, 0312, 0106, 0140, 0134,
4723 0122, 0013, 0013, 0013, 0211, 0230, 0300, 0312, 0155, 0251, 0213, 0026, 0361, 0207, 0177, 0377,
4724 0350, 0372, 0305, 0363, 0347, 0067, 0254, 0330, 0104, 0371, 0201, 0062, 0021, 0340, 0034, 0000,
4725 0036, 0044, 0230, 0373, 0132, 0353, 0275, 0275, 0213, 0234, 0300, 0035, 0003, 0056, 0032, 0247,
4726 0203, 0113, 0000, 0370, 0355, 0157, 0176, 0327, 0012, 0303, 0360, 0255, 0241, 0004, 0302, 0060,
4727 0174, 0356, 0117, 0257, 0377, 0371, 0325, 0267, 0336, 0174, 0373, 0234, 0353, 0072, 0224, 0075,
4728 0224, 0065, 0206, 0004, 0061, 0165, 0137, 0355, 0140, 0300, 0220, 0021, 0335, 0217, 0032, 0206,
4729 0140, 0146, 0005, 0044, 0272, 0235, 0175, 0066, 0327, 0146, 0212, 0230, 0272, 0367, 0270, 0350,
4730 0340, 0127, 0010, 0301, 0331, 0010, 0370, 0276, 0057, 0230, 0371, 0367, 0236, 0347, 0375, 0064,
4731 0213, 0267, 0360, 0164, 0032, 0000, 0236, 0177, 0376, 0171, 0327, 0363, 0074, 0257, 0134, 0056,
4732 0353, 0203, 0203, 0003, 0273, 0321, 0150, 0330, 0355, 0166, 0333, 0016, 0303, 0320, 0216, 0242,
4733 0310, 0066, 0306, 0330, 0101, 0020, 0070, 0122, 0312, 0143, 0253, 0217, 0254, 0176, 0175, 0172,
4734 0146, 0352, 0033, 0122, 0312, 0271, 0307, 0036, 0373, 0342, 0121, 0007, 0005, 0335, 0210, 0134,
4735 0273, 0366, 0276, 0061, 0206, 0376, 0121, 0336, 0051, 0277, 0162, 0343, 0306, 0215, 0267, 0055,
4736 0313, 0212, 0054, 0313, 0012, 0245, 0224, 0241, 0224, 0062, 0124, 0112, 0205, 0266, 0155, 0207,
4737 0236, 0347, 0005, 0023, 0023, 0023, 0321, 0354, 0354, 0154, 0324, 0150, 0064, 0352, 0157, 0274,
4738 0361, 0306, 0300, 0041, 0355, 0221, 0004, 0072, 0305, 0002, 0340, 0364, 0125, 0027, 0200, 0015,
4739 0300, 0271, 0160, 0141, 0343, 0251, 0345, 0225, 0225, 0037, 0055, 0076, 0264, 0250, 0057, 0134,
4740 0330, 0360, 0026, 0027, 0037, 0304, 0077, 0077, 0371, 0327, 0210, 0041, 0031, 0313, 0247, 0227,
4741 0161, 0353, 0326, 0277, 0261, 0171, 0365, 0275, 0226, 0357, 0373, 0133, 0233, 0177, 0175, 0357,
4742 0173, 0073, 0073, 0073, 0133, 0000, 0202, 0041, 0225, 0212, 0106, 0033, 0352, 0055, 0000, 0262,
4743 0257, 0252, 0364, 0167, 0151, 0171, 0151, 0151, 0345, 0221, 0325, 0237, 0134, 0272, 0164, 0311,
4744 0375, 0302, 0322, 0103, 0335, 0103, 0057, 0307, 0031, 0375, 0167, 0202, 0122, 0012, 0253, 0253,
4745 0053, 0070, 0175, 0172, 0331, 0333, 0274, 0172, 0155, 0105, 0010, 0361, 0263, 0073, 0177, 0270,
4746 0363, 0255, 0070, 0071, 0127, 0111, 0153, 0234, 0231, 0327, 0272, 0127, 0002, 0100, 0272, 0001,
4747 0352, 0253, 0047, 0227, 0226, 0236, 0131, 0133, 0173, 0104, 0055, 0076, 0374, 0040, 0264, 0326,
4748 0210, 0343, 0344, 0344, 0156, 0176, 0156, 0156, 0214, 0041, 0223, 0142, 0131, 0026, 0316, 0155,
4749 0234, 0225, 0267, 0156, 0336, 0230, 0137, 0131, 0133, 0131, 0373, 0370, 0372, 0307, 0037, 0026,
4750 0314, 0005, 0014, 0311, 0224, 0121, 0004, 0030, 0011, 0163, 0352, 0153, 0123, 0034, 0106, 0173,
4751 0373, 0325, 0203, 0250, 0122, 0071, 0120, 0147, 0326, 0326, 0060, 0063, 0075, 0003, 0277, 0341,
4752 0243, 0351, 0065, 0020, 0004, 0001, 0014, 0231, 0334, 0100, 0311, 0266, 0133, 0302, 0165, 0023,
4753 0151, 0125, 0112, 0143, 0347, 0366, 0066, 0052, 0225, 0052, 0232, 0255, 0266, 0325, 0254, 0067,
4754 0367, 0262, 0343, 0367, 0315, 0133, 0360, 0332, 0033, 0217, 0300, 0121, 0041, 0225, 0233, 0233,
4755 0327, 0136, 0073, 0361, 0300, 0211, 0157, 0276, 0277, 0171, 0155, 0375, 0360, 0260, 0152, 0317,
4756 0317, 0315, 0143, 0345, 0364, 0012, 0116, 0237, 0136, 0305, 0334, 0154, 0022, 0205, 0060, 0012,
4757 0141, 0214, 0201, 0326, 0032, 0122, 0112, 0204, 0141, 0210, 0362, 0156, 0031, 0333, 0073, 0333,
4758 0270, 0171, 0363, 0006, 0032, 0315, 0006, 0336, 0277, 0366, 0101, 0160, 0170, 0130, 0373, 0345,
4759 0326, 0326, 0326, 0355, 0316, 0034, 0151, 0065, 0175, 0265, 0260, 0214, 0132, 0304, 0350, 0000,
4760 0116, 0027, 0260, 0335, 0251, 0016, 0000, 0133, 0153, 0355, 0075, 0375, 0245, 0247, 0277, 0075,
4761 0071, 0071, 0361, 0334, 0311, 0123, 0113, 0130, 0130, 0130, 0160, 0204, 0264, 0020, 0266, 0103,
4762 0114, 0115, 0117, 0241, 0124, 0052, 0101, 0153, 0033, 0255, 0146, 0023, 0325, 0152, 0025, 0101,
4763 0030, 0300, 0165, 0034, 0264, 0303, 0200, 0267, 0156, 0175, 0032, 0354, 0357, 0125, 0132, 0333,
4764 0267, 0167, 0176, 0174, 0365, 0335, 0253, 0257, 0003, 0010, 0073, 0065, 0050, 0370, 0275, 0057,
4765 0002, 0100, 0117, 0215, 0354, 0202, 0252, 0217, 0037, 0057, 0115, 0255, 0236, 0131, 0177, 0146,
4766 0376, 0304, 0374, 0327, 0264, 0122, 0347, 0210, 0250, 0344, 0171, 0136, 0340, 0270, 0016, 0204,
4767 0020, 0202, 0015, 0121, 0273, 0035, 0130, 0355, 0166, 0333, 0226, 0322, 0272, 0333, 0152, 0265,
4768 0067, 0313, 0273, 0273, 0257, 0136, 0377, 0333, 0365, 0167, 0242, 0050, 0112, 0201, 0107, 0031,
4769 0022, 0131, 0062, 0205, 0213, 0367, 0277, 0045, 0220, 0332, 0352, 0024, 0164, 0137, 0125, 0350,
4770 0051, 0224, 0364, 0074, 0317, 0075, 0171, 0362, 0341, 0123, 0122, 0332, 0116, 0372, 0160, 0053,
4771 0154, 0325, 0266, 0156, 0155, 0155, 0107, 0121, 0024, 0041, 0237, 0226, 0121, 0346, 0067, 0255,
4772 0051, 0241, 0043, 0163, 0377, 0136, 0010, 0364, 0023, 0311, 0002, 0357, 0202, 0107, 0022, 0255,
4773 0364, 0223, 0055, 0073, 0176, 0272, 0030, 0015, 0022, 0257, 0146, 0111, 0244, 0065, 0045, 0060,
4774 0022, 0370, 0375, 0020, 0350, 0177, 0276, 0210, 0200, 0100, 0357, 0320, 0054, 0173, 0222, 0226,
4775 0125, 0263, 0176, 0002, 0143, 0203, 0356, 0007, 0360, 0131, 0227, 0024, 0174, 0126, 0303, 0173,
4776 0007, 0111, 0075, 0022, 0237, 0227, 0377, 0211, 0362, 0037, 0321, 0073, 0103, 0033, 0166, 0221,
4777 0172, 0352, 0000, 0000, 0000, 0000, 0111, 0105, 0116, 0104, 0256, 0102, 0140, 0202, 0000, 0000,
4778 0050, 0165, 0165, 0141, 0171, 0051, 0057, 0000, 0021, 0000, 0000, 0000, 0166, 0151, 0162, 0164,
4779 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0057, 0017, 0000, 0000, 0000, 0025, 0000, 0000, 0000,
4780 0165, 0151, 0057, 0000, 0006, 0000, 0000, 0000, 0027, 0000, 0000, 0000, 0020, 0000, 0000, 0000,
4781 0002, 0000, 0000, 0000, 0026, 0000, 0000, 0000, 0012, 0000, 0000, 0000, 0011, 0000, 0000, 0000,
4782 0030, 0000, 0000, 0000, 0013, 0000, 0000, 0000, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145,
4783 0167, 0145, 0162, 0055, 0146, 0151, 0154, 0145, 0055, 0164, 0162, 0141, 0156, 0163, 0146, 0145,
4784 0162, 0055, 0144, 0151, 0141, 0154, 0157, 0147, 0056, 0165, 0151, 0000, 0000, 0000, 0000, 0000,
4785 0165, 0016, 0000, 0000, 0000, 0000, 0000, 0000, 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145,
4786 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061, 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157,
4787 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124, 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074,
4788 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0040, 0040, 0074, 0162, 0145,
4789 0161, 0165, 0151, 0162, 0145, 0163, 0040, 0154, 0151, 0142, 0075, 0042, 0147, 0164, 0153, 0053,
4790 0042, 0040, 0166, 0145, 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0063, 0056, 0061, 0060, 0042,
4791 0057, 0076, 0012, 0040, 0040, 0074, 0041, 0055, 0055, 0040, 0151, 0156, 0164, 0145, 0162, 0146,
4792 0141, 0143, 0145, 0055, 0156, 0141, 0155, 0151, 0156, 0147, 0055, 0160, 0157, 0154, 0151, 0143,
4793 0171, 0040, 0160, 0162, 0157, 0152, 0145, 0143, 0164, 0055, 0167, 0151, 0144, 0145, 0040, 0055,
4794 0055, 0076, 0012, 0040, 0040, 0074, 0164, 0145, 0155, 0160, 0154, 0141, 0164, 0145, 0040, 0143,
4795 0154, 0141, 0163, 0163, 0075, 0042, 0126, 0151, 0162, 0164, 0126, 0151, 0145, 0167, 0145, 0162,
4796 0106, 0151, 0154, 0145, 0124, 0162, 0141, 0156, 0163, 0146, 0145, 0162, 0104, 0151, 0141, 0154,
4797 0157, 0147, 0042, 0040, 0160, 0141, 0162, 0145, 0156, 0164, 0075, 0042, 0107, 0164, 0153, 0104,
4798 0151, 0141, 0154, 0157, 0147, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4799 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0144, 0145, 0146, 0141,
4800 0165, 0154, 0164, 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0064, 0060, 0060, 0074, 0057,
4801 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160,
4802 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141,
4803 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057,
4804 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160,
4805 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142, 0157,
4806 0162, 0144, 0145, 0162, 0137, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0065, 0074, 0057, 0160,
4807 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4808 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0171, 0160,
4809 0145, 0137, 0150, 0151, 0156, 0164, 0042, 0076, 0144, 0151, 0141, 0154, 0157, 0147, 0074, 0057,
4810 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0143,
4811 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150,
4812 0151, 0154, 0144, 0075, 0042, 0166, 0142, 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
4813 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
4814 0042, 0107, 0164, 0153, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141,
4815 0154, 0157, 0147, 0055, 0166, 0142, 0157, 0170, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040,
4816 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4817 0155, 0145, 0075, 0042, 0157, 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151, 0157, 0156, 0042,
4818 0076, 0166, 0145, 0162, 0164, 0151, 0143, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4819 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4820 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163,
4821 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4822 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
4823 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141,
4824 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057,
4825 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4826 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4827 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0061, 0062, 0074, 0057, 0160,
4828 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4829 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
4830 0042, 0142, 0157, 0162, 0144, 0145, 0162, 0055, 0167, 0151, 0144, 0164, 0150, 0042, 0076, 0061,
4831 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4832 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145,
4833 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042, 0141, 0143, 0164, 0151,
4834 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4835 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163,
4836 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0102, 0157, 0170, 0042,
4837 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141, 0154, 0157, 0147, 0055, 0141, 0143, 0164, 0151,
4838 0157, 0156, 0137, 0141, 0162, 0145, 0141, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4839 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4840 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0157, 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151,
4841 0157, 0156, 0042, 0076, 0150, 0157, 0162, 0151, 0172, 0157, 0156, 0164, 0141, 0154, 0074, 0057,
4842 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4843 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
4844 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124,
4845 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
4846 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4847 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
4848 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
4849 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4850 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
4851 0145, 0075, 0042, 0154, 0141, 0171, 0157, 0165, 0164, 0137, 0163, 0164, 0171, 0154, 0145, 0042,
4852 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
4853 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
4854 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4855 0040, 0040, 0074, 0160, 0154, 0141, 0143, 0145, 0150, 0157, 0154, 0144, 0145, 0162, 0057, 0076,
4856 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
4857 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4858 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4859 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
4860 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156,
4861 0042, 0040, 0151, 0144, 0075, 0042, 0142, 0165, 0164, 0164, 0157, 0156, 0061, 0042, 0076, 0012,
4862 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4863 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
4864 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141,
4865 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0137, 0103, 0141, 0156, 0143, 0145,
4866 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4867 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4868 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163,
4869 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
4870 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4871 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
4872 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042,
4873 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
4874 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4875 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
4876 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163, 0137, 0144, 0145, 0146, 0141, 0165, 0154,
4877 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4878 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4879 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
4880 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145,
4881 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4882 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4883 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4884 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147,
4885 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4886 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4887 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
4888 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4889 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4890 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042,
4891 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4892 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4893 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4894 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061, 0074, 0057, 0160,
4895 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4896 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147,
4897 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057,
4898 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4899 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4900 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040,
4901 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
4902 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156,
4903 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4904 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4905 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146,
4906 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4907 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4908 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
4909 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162,
4910 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4911 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040,
4912 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
4913 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
4914 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
4915 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0157, 0170, 0042, 0040, 0151,
4916 0144, 0075, 0042, 0166, 0142, 0157, 0170, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
4917 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4918 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0157, 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151,
4919 0157, 0156, 0042, 0076, 0166, 0145, 0162, 0164, 0151, 0143, 0141, 0154, 0074, 0057, 0160, 0162,
4920 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4921 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
4922 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
4923 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4924 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4925 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
4926 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4927 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4928 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
4929 0042, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0061, 0062, 0074, 0057, 0160, 0162,
4930 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4931 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
4932 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
4933 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145,
4934 0154, 0042, 0040, 0151, 0144, 0075, 0042, 0164, 0162, 0141, 0156, 0163, 0146, 0145, 0162, 0137,
4935 0163, 0165, 0155, 0155, 0141, 0162, 0171, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4936 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
4937 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
4938 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4939 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4940 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
4941 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141,
4942 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
4943 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4944 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154,
4945 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142,
4946 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0154, 0141, 0142, 0145, 0154, 0074, 0057,
4947 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4948 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164,
4949 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4950 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4951 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
4952 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144,
4953 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
4954 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4955 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
4956 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
4957 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4958 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4959 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156,
4960 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
4961 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160,
4962 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4963 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
4964 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076,
4965 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4966 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164,
4967 0153, 0120, 0162, 0157, 0147, 0162, 0145, 0163, 0163, 0102, 0141, 0162, 0042, 0040, 0151, 0144,
4968 0075, 0042, 0160, 0162, 0157, 0147, 0162, 0145, 0163, 0163, 0142, 0141, 0162, 0042, 0076, 0012,
4969 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4970 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
4971 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
4972 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4973 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
4974 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
4975 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
4976 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4977 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040,
4978 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153,
4979 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4980 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
4981 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165,
4982 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
4983 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
4984 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154,
4985 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
4986 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4987 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
4988 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061, 0074, 0057,
4989 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
4990 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156,
4991 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
4992 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4993 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
4994 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012,
4995 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
4996 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141,
4997 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
4998 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
4999 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5000 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
5001 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5002 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
5003 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061, 0074, 0057, 0160,
5004 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5005 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
5006 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
5007 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
5008 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
5009 0074, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0163, 0076,
5010 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167,
5011 0151, 0144, 0147, 0145, 0164, 0040, 0162, 0145, 0163, 0160, 0157, 0156, 0163, 0145, 0075, 0042,
5012 0055, 0066, 0042, 0076, 0142, 0165, 0164, 0164, 0157, 0156, 0061, 0074, 0057, 0141, 0143, 0164,
5013 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
5014 0074, 0057, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0163,
5015 0076, 0012, 0040, 0040, 0074, 0057, 0164, 0145, 0155, 0160, 0154, 0141, 0164, 0145, 0076, 0012,
5016 0074, 0057, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0000, 0000, 0050,
5017 0165, 0165, 0141, 0171, 0051, 0162, 0145, 0155, 0157, 0164, 0145, 0055, 0166, 0151, 0145, 0167,
5018 0145, 0162, 0055, 0151, 0163, 0157, 0055, 0154, 0151, 0163, 0164, 0056, 0165, 0151, 0000, 0000,
5019 0166, 0031, 0000, 0000, 0000, 0000, 0000, 0000, 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145,
5020 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061, 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157,
5021 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124, 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074,
5022 0041, 0055, 0055, 0040, 0107, 0145, 0156, 0145, 0162, 0141, 0164, 0145, 0144, 0040, 0167, 0151,
5023 0164, 0150, 0040, 0147, 0154, 0141, 0144, 0145, 0040, 0063, 0056, 0062, 0060, 0056, 0060, 0040,
5024 0055, 0055, 0076, 0012, 0074, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012,
5025 0040, 0040, 0074, 0162, 0145, 0161, 0165, 0151, 0162, 0145, 0163, 0040, 0154, 0151, 0142, 0075,
5026 0042, 0147, 0164, 0153, 0053, 0042, 0040, 0166, 0145, 0162, 0163, 0151, 0157, 0156, 0075, 0042,
5027 0063, 0056, 0061, 0066, 0042, 0057, 0076, 0012, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
5028 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0151, 0163, 0164,
5029 0123, 0164, 0157, 0162, 0145, 0042, 0040, 0151, 0144, 0075, 0042, 0154, 0151, 0163, 0164, 0163,
5030 0164, 0157, 0162, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0143, 0157, 0154, 0165,
5031 0155, 0156, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0041, 0055, 0055, 0040,
5032 0143, 0157, 0154, 0165, 0155, 0156, 0055, 0156, 0141, 0155, 0145, 0040, 0163, 0145, 0154, 0145,
5033 0143, 0164, 0145, 0144, 0040, 0055, 0055, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5034 0143, 0157, 0154, 0165, 0155, 0156, 0040, 0164, 0171, 0160, 0145, 0075, 0042, 0147, 0142, 0157,
5035 0157, 0154, 0145, 0141, 0156, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5036 0041, 0055, 0055, 0040, 0143, 0157, 0154, 0165, 0155, 0156, 0055, 0156, 0141, 0155, 0145, 0040,
5037 0156, 0141, 0155, 0145, 0040, 0055, 0055, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5038 0143, 0157, 0154, 0165, 0155, 0156, 0040, 0164, 0171, 0160, 0145, 0075, 0042, 0147, 0143, 0150,
5039 0141, 0162, 0141, 0162, 0162, 0141, 0171, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5040 0040, 0074, 0041, 0055, 0055, 0040, 0143, 0157, 0154, 0165, 0155, 0156, 0055, 0156, 0141, 0155,
5041 0145, 0040, 0167, 0145, 0151, 0147, 0150, 0164, 0040, 0055, 0055, 0076, 0012, 0040, 0040, 0040,
5042 0040, 0040, 0040, 0074, 0143, 0157, 0154, 0165, 0155, 0156, 0040, 0164, 0171, 0160, 0145, 0075,
5043 0042, 0147, 0151, 0156, 0164, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
5044 0157, 0154, 0165, 0155, 0156, 0163, 0076, 0012, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145,
5045 0143, 0164, 0076, 0012, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154,
5046 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0123, 0164, 0141, 0143, 0153, 0042, 0040, 0151,
5047 0144, 0075, 0042, 0163, 0164, 0141, 0143, 0153, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0074,
5048 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166,
5049 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
5050 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5051 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
5052 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
5053 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
5054 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
5055 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0157, 0170, 0042,
5056 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5057 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
5058 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5059 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
5060 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146,
5061 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157,
5062 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5063 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0157,
5064 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151, 0157, 0156, 0042, 0076, 0166, 0145, 0162, 0164,
5065 0151, 0143, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5066 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5067 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042,
5068 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
5069 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
5070 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
5071 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145, 0154, 0042,
5072 0040, 0151, 0144, 0075, 0042, 0163, 0164, 0141, 0164, 0165, 0163, 0042, 0076, 0012, 0040, 0040,
5073 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5074 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154,
5075 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5076 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5077 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143,
5078 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074,
5079 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5080 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5081 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162,
5082 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042,
5083 0076, 0114, 0157, 0141, 0144, 0151, 0156, 0147, 0056, 0056, 0056, 0074, 0057, 0160, 0162, 0157,
5084 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5085 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5086 0145, 0075, 0042, 0171, 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162,
5087 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5088 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076,
5089 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5090 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5091 0167, 0145, 0151, 0147, 0150, 0164, 0042, 0040, 0166, 0141, 0154, 0165, 0145, 0075, 0042, 0142,
5092 0157, 0154, 0144, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5093 0040, 0040, 0040, 0074, 0057, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076,
5094 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152,
5095 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5096 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5097 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5098 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165,
5099 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5100 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
5101 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124,
5102 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
5103 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
5104 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164,
5105 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5106 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141,
5107 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5108 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5109 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5110 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075,
5111 0042, 0107, 0164, 0153, 0123, 0160, 0151, 0156, 0156, 0145, 0162, 0042, 0040, 0151, 0144, 0075,
5112 0042, 0163, 0160, 0151, 0156, 0156, 0145, 0162, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5113 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5114 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076,
5115 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5116 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5117 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
5118 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
5119 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5120 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5121 0155, 0145, 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0145, 0042, 0076, 0124, 0162, 0165, 0145,
5122 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5123 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
5124 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151,
5125 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5126 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5127 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
5128 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5129 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5130 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
5131 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5132 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5133 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042,
5134 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
5135 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156,
5136 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151,
5137 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151,
5138 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
5139 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
5140 0114, 0141, 0142, 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5141 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5142 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
5143 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5144 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
5145 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143,
5146 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
5147 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5148 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5149 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040,
5150 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
5151 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042,
5152 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
5153 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
5154 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154,
5155 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5156 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5157 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160,
5158 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160,
5159 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5160 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5161 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
5162 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
5163 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040,
5164 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5165 0155, 0145, 0075, 0042, 0156, 0141, 0155, 0145, 0042, 0076, 0163, 0164, 0141, 0164, 0165, 0163,
5166 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5167 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040,
5168 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0143,
5169 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152,
5170 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0157,
5171 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5172 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
5173 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
5174 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
5175 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
5176 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160,
5177 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5178 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
5179 0042, 0157, 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151, 0157, 0156, 0042, 0076, 0166, 0145,
5180 0162, 0164, 0151, 0143, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5181 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5182 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0160, 0141, 0143, 0151, 0156,
5183 0147, 0042, 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5184 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
5185 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
5186 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145,
5187 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5188 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5189 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
5190 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5191 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5192 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076,
5193 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
5194 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
5195 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142,
5196 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145,
5197 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0123, 0145, 0154, 0145, 0143, 0164, 0040, 0111, 0123,
5198 0117, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5199 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
5200 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0141, 0154, 0151, 0147, 0156, 0042,
5201 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
5202 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151,
5203 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5204 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040,
5205 0156, 0141, 0155, 0145, 0075, 0042, 0167, 0145, 0151, 0147, 0150, 0164, 0042, 0040, 0166, 0141,
5206 0154, 0165, 0145, 0075, 0042, 0142, 0157, 0154, 0144, 0042, 0057, 0076, 0012, 0040, 0040, 0040,
5207 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0141, 0164, 0164, 0162, 0151,
5208 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5209 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5210 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040,
5211 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
5212 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156,
5213 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
5214 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5215 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5216 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
5217 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5218 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
5219 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160,
5220 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5221 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040,
5222 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
5223 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
5224 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164,
5225 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0101, 0154, 0151, 0147, 0156,
5226 0155, 0145, 0156, 0164, 0042, 0040, 0151, 0144, 0075, 0042, 0141, 0154, 0151, 0147, 0156, 0155,
5227 0145, 0156, 0164, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5228 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
5229 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
5230 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5231 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5232 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163,
5233 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5234 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5235 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0142,
5236 0157, 0164, 0164, 0157, 0155, 0137, 0160, 0141, 0144, 0144, 0151, 0156, 0147, 0042, 0076, 0066,
5237 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5238 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
5239 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157,
5240 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153,
5241 0123, 0143, 0162, 0157, 0154, 0154, 0145, 0144, 0127, 0151, 0156, 0144, 0157, 0167, 0042, 0076,
5242 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5243 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
5244 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
5245 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5246 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5247 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157,
5248 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
5249 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5250 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5251 0141, 0155, 0145, 0075, 0042, 0163, 0150, 0141, 0144, 0157, 0167, 0137, 0164, 0171, 0160, 0145,
5252 0042, 0076, 0151, 0156, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5253 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5254 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5255 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
5256 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0124, 0162, 0145, 0145,
5257 0126, 0151, 0145, 0167, 0042, 0040, 0151, 0144, 0075, 0042, 0166, 0151, 0145, 0167, 0042, 0076,
5258 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5259 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5260 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162,
5261 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
5262 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5263 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
5264 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165,
5265 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5266 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5267 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
5268 0042, 0155, 0157, 0144, 0145, 0154, 0042, 0076, 0154, 0151, 0163, 0164, 0163, 0164, 0157, 0162,
5269 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5270 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5271 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
5272 0042, 0150, 0145, 0141, 0144, 0145, 0162, 0163, 0137, 0166, 0151, 0163, 0151, 0142, 0154, 0145,
5273 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5274 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5275 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5276 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0165, 0154, 0145, 0163, 0137, 0150, 0151, 0156,
5277 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5278 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5279 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5280 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0145, 0141, 0162, 0143, 0150, 0137, 0143, 0157,
5281 0154, 0165, 0155, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5282 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5283 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5284 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0156, 0141, 0142, 0154, 0145, 0137, 0147, 0162,
5285 0151, 0144, 0137, 0154, 0151, 0156, 0145, 0163, 0042, 0076, 0150, 0157, 0162, 0151, 0172, 0157,
5286 0156, 0164, 0141, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5287 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5288 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145,
5289 0075, 0042, 0162, 0157, 0167, 0055, 0141, 0143, 0164, 0151, 0166, 0141, 0164, 0145, 0144, 0042,
5290 0040, 0150, 0141, 0156, 0144, 0154, 0145, 0162, 0075, 0042, 0162, 0145, 0155, 0157, 0164, 0145,
5291 0137, 0166, 0151, 0145, 0167, 0145, 0162, 0137, 0151, 0163, 0157, 0137, 0154, 0151, 0163, 0164,
5292 0137, 0144, 0151, 0141, 0154, 0157, 0147, 0137, 0162, 0157, 0167, 0137, 0141, 0143, 0164, 0151,
5293 0166, 0141, 0164, 0145, 0144, 0042, 0040, 0163, 0167, 0141, 0160, 0160, 0145, 0144, 0075, 0042,
5294 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5295 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144,
5296 0040, 0151, 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075,
5297 0042, 0163, 0145, 0154, 0145, 0143, 0164, 0151, 0157, 0156, 0042, 0076, 0012, 0040, 0040, 0040,
5298 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5299 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163,
5300 0075, 0042, 0107, 0164, 0153, 0124, 0162, 0145, 0145, 0123, 0145, 0154, 0145, 0143, 0164, 0151,
5301 0157, 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0164, 0162, 0145, 0145, 0166, 0151, 0145, 0167,
5302 0055, 0163, 0145, 0154, 0145, 0143, 0164, 0151, 0157, 0156, 0042, 0057, 0076, 0012, 0040, 0040,
5303 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5304 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5305 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5306 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5307 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142,
5308 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0124,
5309 0162, 0145, 0145, 0126, 0151, 0145, 0167, 0103, 0157, 0154, 0165, 0155, 0156, 0042, 0040, 0151,
5310 0144, 0075, 0042, 0163, 0145, 0154, 0145, 0143, 0164, 0145, 0144, 0137, 0143, 0157, 0154, 0165,
5311 0155, 0156, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5312 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
5313 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0151, 0172,
5314 0151, 0156, 0147, 0042, 0076, 0141, 0165, 0164, 0157, 0163, 0151, 0172, 0145, 0074, 0057, 0160,
5315 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5316 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5317 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
5318 0042, 0164, 0151, 0164, 0154, 0145, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164,
5319 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0123, 0145, 0154, 0145, 0143,
5320 0164, 0145, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
5321 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5322 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
5323 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5324 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164,
5325 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0103, 0145, 0154, 0154, 0122,
5326 0145, 0156, 0144, 0145, 0162, 0145, 0162, 0124, 0157, 0147, 0147, 0154, 0145, 0042, 0040, 0151,
5327 0144, 0075, 0042, 0143, 0145, 0154, 0154, 0162, 0145, 0156, 0144, 0145, 0162, 0145, 0162, 0164,
5328 0157, 0147, 0147, 0154, 0145, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5329 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5330 0040, 0040, 0040, 0040, 0074, 0163, 0151, 0147, 0156, 0141, 0154, 0040, 0156, 0141, 0155, 0145,
5331 0075, 0042, 0164, 0157, 0147, 0147, 0154, 0145, 0144, 0042, 0040, 0150, 0141, 0156, 0144, 0154,
5332 0145, 0162, 0075, 0042, 0162, 0145, 0155, 0157, 0164, 0145, 0137, 0166, 0151, 0145, 0167, 0145,
5333 0162, 0137, 0151, 0163, 0157, 0137, 0154, 0151, 0163, 0164, 0137, 0144, 0151, 0141, 0154, 0157,
5334 0147, 0137, 0164, 0157, 0147, 0147, 0154, 0145, 0144, 0042, 0040, 0163, 0167, 0141, 0160, 0160,
5335 0145, 0144, 0075, 0042, 0156, 0157, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5336 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5337 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040,
5338 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5339 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165,
5340 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5341 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5342 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156, 0141, 0155, 0145,
5343 0075, 0042, 0141, 0143, 0164, 0151, 0166, 0145, 0042, 0076, 0060, 0074, 0057, 0141, 0164, 0164,
5344 0162, 0151, 0142, 0165, 0164, 0145, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5345 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5346 0040, 0040, 0074, 0057, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012,
5347 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5348 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076,
5349 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5350 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
5351 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5352 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040,
5353 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5354 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5355 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5356 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107,
5357 0164, 0153, 0124, 0162, 0145, 0145, 0126, 0151, 0145, 0167, 0103, 0157, 0154, 0165, 0155, 0156,
5358 0042, 0040, 0151, 0144, 0075, 0042, 0156, 0141, 0155, 0145, 0137, 0143, 0157, 0154, 0165, 0155,
5359 0156, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5360 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5361 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0151, 0164, 0154,
5362 0145, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075,
5363 0042, 0171, 0145, 0163, 0042, 0076, 0116, 0141, 0155, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
5364 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5365 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
5366 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170,
5367 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160,
5368 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5369 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
5370 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5371 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5372 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107,
5373 0164, 0153, 0103, 0145, 0154, 0154, 0122, 0145, 0156, 0144, 0145, 0162, 0145, 0162, 0124, 0145,
5374 0170, 0164, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0145, 0154, 0154, 0162, 0145, 0156, 0144,
5375 0145, 0162, 0145, 0162, 0164, 0145, 0170, 0164, 0042, 0057, 0076, 0012, 0040, 0040, 0040, 0040,
5376 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5377 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145,
5378 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5379 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5380 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5381 0164, 0145, 0170, 0164, 0042, 0076, 0061, 0074, 0057, 0141, 0164, 0164, 0162, 0151, 0142, 0165,
5382 0164, 0145, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5383 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5384 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156, 0141, 0155, 0145, 0075,
5385 0042, 0167, 0145, 0151, 0147, 0150, 0164, 0042, 0076, 0062, 0074, 0057, 0141, 0164, 0164, 0162,
5386 0151, 0142, 0165, 0164, 0145, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5387 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5388 0040, 0074, 0057, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040,
5389 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5390 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012,
5391 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5392 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
5393 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5394 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
5395 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5396 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5397 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
5398 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5399 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5400 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
5401 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143,
5402 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141,
5403 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5404 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5405 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
5406 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5407 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5408 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165,
5409 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5410 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
5411 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157,
5412 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5413 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160, 0141, 0143, 0153,
5414 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
5415 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142,
5416 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143,
5417 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
5418 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0156, 0141,
5419 0155, 0145, 0042, 0076, 0151, 0163, 0157, 0055, 0154, 0151, 0163, 0164, 0074, 0057, 0160, 0162,
5420 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5421 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5422 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157,
5423 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160,
5424 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150,
5425 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
5426 0012, 0074, 0057, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0000, 0000,
5427 0050, 0165, 0165, 0141, 0171, 0051, 0166, 0151, 0162, 0164, 0055, 0166, 0151, 0145, 0167, 0145,
5428 0162, 0055, 0166, 0155, 0055, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0151, 0157, 0156, 0056,
5429 0165, 0151, 0000, 0000, 0000, 0000, 0000, 0000, 0055, 0024, 0000, 0000, 0000, 0000, 0000, 0000,
5430 0074, 0077, 0170, 0155, 0154, 0040, 0166, 0145, 0162, 0163, 0151, 0157, 0156, 0075, 0042, 0061,
5431 0056, 0060, 0042, 0040, 0145, 0156, 0143, 0157, 0144, 0151, 0156, 0147, 0075, 0042, 0125, 0124,
5432 0106, 0055, 0070, 0042, 0077, 0076, 0012, 0074, 0041, 0055, 0055, 0040, 0107, 0145, 0156, 0145,
5433 0162, 0141, 0164, 0145, 0144, 0040, 0167, 0151, 0164, 0150, 0040, 0147, 0154, 0141, 0144, 0145,
5434 0040, 0063, 0056, 0061, 0066, 0056, 0061, 0040, 0055, 0055, 0076, 0012, 0074, 0151, 0156, 0164,
5435 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143,
5436 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0104, 0151, 0141, 0154,
5437 0157, 0147, 0042, 0040, 0151, 0144, 0075, 0042, 0166, 0155, 0055, 0143, 0157, 0156, 0156, 0145,
5438 0143, 0164, 0151, 0157, 0156, 0055, 0144, 0151, 0141, 0154, 0157, 0147, 0042, 0076, 0012, 0040,
5439 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5440 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141,
5441 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
5442 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5443 0145, 0075, 0042, 0142, 0157, 0162, 0144, 0145, 0162, 0137, 0167, 0151, 0144, 0164, 0150, 0042,
5444 0076, 0065, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
5445 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
5446 0075, 0042, 0164, 0151, 0164, 0154, 0145, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141,
5447 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0103, 0150, 0157, 0157,
5448 0163, 0145, 0040, 0141, 0040, 0166, 0151, 0162, 0164, 0165, 0141, 0154, 0040, 0155, 0141, 0143,
5449 0150, 0151, 0156, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5450 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5451 0155, 0145, 0075, 0042, 0155, 0157, 0144, 0141, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
5452 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074,
5453 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0167,
5454 0151, 0156, 0144, 0157, 0167, 0137, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076,
5455 0143, 0145, 0156, 0164, 0145, 0162, 0055, 0157, 0156, 0055, 0160, 0141, 0162, 0145, 0156, 0164,
5456 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5457 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5458 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0137, 0150, 0145, 0151, 0147, 0150, 0164, 0042, 0076,
5459 0062, 0060, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
5460 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5461 0145, 0075, 0042, 0144, 0145, 0163, 0164, 0162, 0157, 0171, 0137, 0167, 0151, 0164, 0150, 0137,
5462 0160, 0141, 0162, 0145, 0156, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
5463 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5464 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0164, 0171, 0160, 0145,
5465 0137, 0150, 0151, 0156, 0164, 0042, 0076, 0144, 0151, 0141, 0154, 0157, 0147, 0074, 0057, 0160,
5466 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0143, 0150,
5467 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151,
5468 0154, 0144, 0075, 0042, 0166, 0142, 0157, 0170, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5469 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042,
5470 0107, 0164, 0153, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0144, 0151, 0141, 0154,
5471 0157, 0147, 0055, 0166, 0142, 0157, 0170, 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5472 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5473 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141,
5474 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
5475 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5476 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0157, 0162, 0151, 0145, 0156, 0164, 0141, 0164, 0151,
5477 0157, 0156, 0042, 0076, 0166, 0145, 0162, 0164, 0151, 0143, 0141, 0154, 0074, 0057, 0160, 0162,
5478 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5479 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5480 0163, 0160, 0141, 0143, 0151, 0156, 0147, 0042, 0076, 0066, 0074, 0057, 0160, 0162, 0157, 0160,
5481 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143,
5482 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145, 0162, 0156, 0141, 0154, 0055, 0143, 0150,
5483 0151, 0154, 0144, 0075, 0042, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162, 0145, 0141,
5484 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142,
5485 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102,
5486 0165, 0164, 0164, 0157, 0156, 0102, 0157, 0170, 0042, 0040, 0151, 0144, 0075, 0042, 0144, 0151,
5487 0141, 0154, 0157, 0147, 0055, 0141, 0143, 0164, 0151, 0157, 0156, 0137, 0141, 0162, 0145, 0141,
5488 0061, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5489 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5490 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
5491 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5492 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5493 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0171, 0157, 0165, 0164, 0137, 0163,
5494 0164, 0171, 0154, 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
5495 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5496 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5497 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
5498 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0042,
5499 0040, 0151, 0144, 0075, 0042, 0142, 0165, 0164, 0164, 0157, 0156, 0055, 0143, 0141, 0156, 0143,
5500 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5501 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5502 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162,
5503 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042,
5504 0076, 0137, 0103, 0141, 0156, 0143, 0145, 0154, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
5505 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5506 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5507 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165,
5508 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5509 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
5510 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156,
5511 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
5512 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5513 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5514 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166, 0145, 0163,
5515 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
5516 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5517 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5518 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137, 0165, 0156,
5519 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160,
5520 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5521 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076,
5522 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5523 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5524 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
5525 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042,
5526 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5527 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5528 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145,
5529 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162,
5530 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5531 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5532 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156,
5533 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040,
5534 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160,
5535 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5536 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
5537 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076,
5538 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5539 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164,
5540 0153, 0102, 0165, 0164, 0164, 0157, 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0142, 0165, 0164,
5541 0164, 0157, 0156, 0055, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0042, 0076, 0012, 0040, 0040,
5542 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
5543 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0154, 0141,
5544 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141, 0142, 0154,
5545 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0103, 0137, 0157, 0156, 0156, 0145, 0143, 0164,
5546 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5547 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5548 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151,
5549 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
5550 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5551 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5552 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076,
5553 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5554 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5555 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5556 0143, 0141, 0156, 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165,
5557 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5558 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162,
5559 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0150, 0141, 0163,
5560 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
5561 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5562 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5563 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0162, 0145, 0143, 0145, 0151, 0166,
5564 0145, 0163, 0137, 0144, 0145, 0146, 0141, 0165, 0154, 0164, 0042, 0076, 0124, 0162, 0165, 0145,
5565 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5566 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5567 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0165, 0163, 0145, 0137,
5568 0165, 0156, 0144, 0145, 0162, 0154, 0151, 0156, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
5569 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5570 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143,
5571 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5572 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5573 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160,
5574 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156,
5575 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
5576 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5577 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5578 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
5579 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5580 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5581 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151, 0164, 0151,
5582 0157, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076,
5583 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5584 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5585 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
5586 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143,
5587 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141,
5588 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5589 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5590 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
5591 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5592 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5593 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162,
5594 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
5595 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5596 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0141, 0143, 0153, 0137, 0164,
5597 0171, 0160, 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
5598 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5599 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5600 0160, 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157,
5601 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5602 0040, 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040,
5603 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
5604 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040,
5605 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143,
5606 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0124, 0162, 0145, 0145, 0126, 0151, 0145,
5607 0167, 0042, 0040, 0151, 0144, 0075, 0042, 0164, 0162, 0145, 0145, 0166, 0151, 0145, 0167, 0042,
5608 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160,
5609 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151,
5610 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157,
5611 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5612 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5613 0145, 0075, 0042, 0143, 0141, 0156, 0137, 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0124, 0162,
5614 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040,
5615 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145,
5616 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0150, 0145, 0141, 0144, 0145, 0162,
5617 0163, 0137, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076, 0106, 0141, 0154, 0163, 0145,
5618 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040,
5619 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5620 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0163, 0145, 0141, 0162, 0143, 0150, 0137, 0143,
5621 0157, 0154, 0165, 0155, 0156, 0042, 0076, 0060, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162,
5622 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5623 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5624 0145, 0156, 0141, 0142, 0154, 0145, 0137, 0147, 0162, 0151, 0144, 0137, 0154, 0151, 0156, 0145,
5625 0163, 0042, 0076, 0150, 0157, 0162, 0151, 0172, 0157, 0156, 0164, 0141, 0154, 0074, 0057, 0160,
5626 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5627 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0040, 0151, 0156, 0164, 0145,
5628 0162, 0156, 0141, 0154, 0055, 0143, 0150, 0151, 0154, 0144, 0075, 0042, 0163, 0145, 0154, 0145,
5629 0143, 0164, 0151, 0157, 0156, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5630 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154,
5631 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0124, 0162, 0145, 0145, 0123, 0145, 0154, 0145,
5632 0143, 0164, 0151, 0157, 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0164, 0162, 0145, 0145, 0166,
5633 0151, 0145, 0167, 0055, 0163, 0145, 0154, 0145, 0143, 0164, 0151, 0157, 0156, 0042, 0057, 0076,
5634 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
5635 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5636 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5637 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040,
5638 0143, 0154, 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0124, 0162, 0145, 0145, 0126, 0151,
5639 0145, 0167, 0103, 0157, 0154, 0165, 0155, 0156, 0042, 0040, 0151, 0144, 0075, 0042, 0164, 0162,
5640 0145, 0145, 0166, 0151, 0145, 0167, 0143, 0157, 0154, 0165, 0155, 0156, 0061, 0042, 0076, 0012,
5641 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5642 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042,
5643 0164, 0151, 0164, 0154, 0145, 0042, 0040, 0164, 0162, 0141, 0156, 0163, 0154, 0141, 0164, 0141,
5644 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0116, 0141, 0155, 0145, 0074, 0057,
5645 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5646 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144,
5647 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5648 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154, 0141, 0163,
5649 0163, 0075, 0042, 0107, 0164, 0153, 0103, 0145, 0154, 0154, 0122, 0145, 0156, 0144, 0145, 0162,
5650 0145, 0162, 0124, 0145, 0170, 0164, 0042, 0040, 0151, 0144, 0075, 0042, 0143, 0145, 0154, 0154,
5651 0162, 0145, 0156, 0144, 0145, 0162, 0145, 0162, 0164, 0145, 0170, 0164, 0061, 0042, 0057, 0076,
5652 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5653 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012,
5654 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5655 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0040, 0156,
5656 0141, 0155, 0145, 0075, 0042, 0164, 0145, 0170, 0164, 0042, 0076, 0060, 0074, 0057, 0141, 0164,
5657 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5658 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0141, 0164, 0164,
5659 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5660 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144,
5661 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5662 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5663 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040,
5664 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143,
5665 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141,
5666 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5667 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155,
5668 0145, 0075, 0042, 0145, 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0124, 0162, 0165, 0145, 0074,
5669 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5670 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5671 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165,
5672 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040,
5673 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162,
5674 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0141, 0143, 0153, 0137, 0164, 0171,
5675 0160, 0145, 0042, 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5676 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5677 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160,
5678 0157, 0163, 0151, 0164, 0151, 0157, 0156, 0042, 0076, 0061, 0074, 0057, 0160, 0162, 0157, 0160,
5679 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5680 0074, 0057, 0160, 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5681 0040, 0040, 0040, 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
5682 0040, 0040, 0040, 0040, 0074, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040,
5683 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0157, 0142, 0152, 0145, 0143, 0164, 0040, 0143, 0154,
5684 0141, 0163, 0163, 0075, 0042, 0107, 0164, 0153, 0114, 0141, 0142, 0145, 0154, 0042, 0040, 0151,
5685 0144, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5686 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5687 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0166, 0151, 0163, 0151, 0142, 0154, 0145, 0042, 0076,
5688 0124, 0162, 0165, 0145, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5689 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5690 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0143, 0141, 0156, 0137,
5691 0146, 0157, 0143, 0165, 0163, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
5692 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5693 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5694 0155, 0145, 0075, 0042, 0170, 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057, 0160,
5695 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5696 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5697 0141, 0155, 0145, 0075, 0042, 0171, 0141, 0154, 0151, 0147, 0156, 0042, 0076, 0060, 0074, 0057,
5698 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5699 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
5700 0156, 0141, 0155, 0145, 0075, 0042, 0170, 0160, 0141, 0144, 0042, 0076, 0064, 0074, 0057, 0160,
5701 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5702 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156,
5703 0141, 0155, 0145, 0075, 0042, 0154, 0141, 0142, 0145, 0154, 0042, 0040, 0164, 0162, 0141, 0156,
5704 0163, 0154, 0141, 0164, 0141, 0142, 0154, 0145, 0075, 0042, 0171, 0145, 0163, 0042, 0076, 0101,
5705 0166, 0141, 0151, 0154, 0141, 0142, 0154, 0145, 0040, 0166, 0151, 0162, 0164, 0165, 0141, 0154,
5706 0040, 0155, 0141, 0143, 0150, 0151, 0156, 0145, 0163, 0074, 0057, 0160, 0162, 0157, 0160, 0145,
5707 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5708 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075,
5709 0042, 0145, 0154, 0154, 0151, 0160, 0163, 0151, 0172, 0145, 0042, 0076, 0145, 0156, 0144, 0074,
5710 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5711 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5712 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0167, 0151, 0144, 0164, 0150, 0137, 0143, 0150, 0141,
5713 0162, 0163, 0042, 0076, 0062, 0066, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171,
5714 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141,
5715 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5716 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0141, 0164, 0164, 0162, 0151, 0142,
5717 0165, 0164, 0145, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0167, 0145, 0151, 0147, 0150, 0164,
5718 0042, 0040, 0166, 0141, 0154, 0165, 0145, 0075, 0042, 0142, 0157, 0154, 0144, 0042, 0057, 0076,
5719 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0141,
5720 0164, 0164, 0162, 0151, 0142, 0165, 0164, 0145, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5721 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040,
5722 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0141, 0143, 0153, 0151, 0156,
5723 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5724 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0145,
5725 0170, 0160, 0141, 0156, 0144, 0042, 0076, 0106, 0141, 0154, 0163, 0145, 0074, 0057, 0160, 0162,
5726 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5727 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141,
5728 0155, 0145, 0075, 0042, 0146, 0151, 0154, 0154, 0042, 0076, 0124, 0162, 0165, 0145, 0074, 0057,
5729 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040,
5730 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0040,
5731 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0141, 0143, 0153, 0137, 0164, 0171, 0160, 0145, 0042,
5732 0076, 0145, 0156, 0144, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164, 0171, 0076, 0012,
5733 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0160, 0162, 0157,
5734 0160, 0145, 0162, 0164, 0171, 0040, 0156, 0141, 0155, 0145, 0075, 0042, 0160, 0157, 0163, 0151,
5735 0164, 0151, 0157, 0156, 0042, 0076, 0062, 0074, 0057, 0160, 0162, 0157, 0160, 0145, 0162, 0164,
5736 0171, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0074, 0057, 0160,
5737 0141, 0143, 0153, 0151, 0156, 0147, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0040, 0040,
5738 0074, 0057, 0143, 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0040, 0040, 0074,
5739 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0057, 0143,
5740 0150, 0151, 0154, 0144, 0076, 0012, 0040, 0040, 0040, 0040, 0074, 0141, 0143, 0164, 0151, 0157,
5741 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0163, 0076, 0012, 0040, 0040, 0040, 0040, 0040,
5742 0040, 0074, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0040,
5743 0162, 0145, 0163, 0160, 0157, 0156, 0163, 0145, 0075, 0042, 0055, 0066, 0042, 0076, 0142, 0165,
5744 0164, 0164, 0157, 0156, 0055, 0143, 0141, 0156, 0143, 0145, 0154, 0074, 0057, 0141, 0143, 0164,
5745 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0076, 0012, 0040, 0040, 0040, 0040,
5746 0040, 0040, 0074, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164,
5747 0040, 0162, 0145, 0163, 0160, 0157, 0156, 0163, 0145, 0075, 0042, 0055, 0063, 0042, 0076, 0142,
5748 0165, 0164, 0164, 0157, 0156, 0055, 0143, 0157, 0156, 0156, 0145, 0143, 0164, 0074, 0057, 0141,
5749 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145, 0164, 0076, 0012, 0040, 0040,
5750 0040, 0040, 0074, 0057, 0141, 0143, 0164, 0151, 0157, 0156, 0055, 0167, 0151, 0144, 0147, 0145,
5751 0164, 0163, 0076, 0012, 0040, 0040, 0074, 0057, 0157, 0142, 0152, 0145, 0143, 0164, 0076, 0012,
5752 0074, 0057, 0151, 0156, 0164, 0145, 0162, 0146, 0141, 0143, 0145, 0076, 0012, 0000, 0000, 0050,
5753 0165, 0165, 0141, 0171, 0051, 0061, 0066, 0170, 0061, 0066, 0057, 0000, 0007, 0000, 0000, 0000,
5754 0063, 0062, 0170, 0063, 0062, 0057, 0000, 0000, 0000, 0000, 0000, 0000, 0166, 0151, 0162, 0164,
5755 0055, 0166, 0151, 0145, 0167, 0145, 0162, 0055, 0165, 0163, 0142, 0056, 0160, 0156, 0147, 0000,
5756 0047, 0004, 0000, 0000, 0000, 0000, 0000, 0000, 0211, 0120, 0116, 0107, 0015, 0012, 0032, 0012,
5757 0000, 0000, 0000, 0015, 0111, 0110, 0104, 0122, 0000, 0000, 0000, 0030, 0000, 0000, 0000, 0030,
5758 0010, 0006, 0000, 0000, 0000, 0340, 0167, 0075, 0370, 0000, 0000, 0000, 0006, 0142, 0113, 0107,
5759 0104, 0000, 0377, 0000, 0377, 0000, 0377, 0240, 0275, 0247, 0223, 0000, 0000, 0003, 0334, 0111,
5760 0104, 0101, 0124, 0110, 0211, 0225, 0226, 0115, 0150, 0134, 0125, 0024, 0307, 0177, 0367, 0336,
5761 0067, 0261, 0266, 0046, 0041, 0065, 0066, 0241, 0140, 0132, 0133, 0013, 0051, 0342, 0246, 0245,
5762 0124, 0022, 0223, 0022, 0024, 0121, 0241, 0013, 0077, 0300, 0205, 0226, 0132, 0135, 0351, 0316,
5763 0235, 0340, 0322, 0030, 0053, 0202, 0233, 0056, 0334, 0051, 0115, 0021, 0101, 0011, 0272, 0110,
5764 0203, 0210, 0037, 0365, 0243, 0151, 0055, 0161, 0241, 0241, 0265, 0115, 0062, 0332, 0244, 0311,
5765 0044, 0115, 0062, 0235, 0227, 0164, 0222, 0316, 0274, 0373, 0345, 0342, 0315, 0274, 0164, 0222,
5766 0231, 0100, 0017, 0034, 0170, 0357, 0317, 0371, 0374, 0237, 0173, 0317, 0173, 0142, 0164, 0164,
5767 0264, 0105, 0326, 0371, 0063, 0170, 0337, 0205, 0140, 0013, 0200, 0367, 0036, 0041, 0004, 0367,
5768 0042, 0025, 0076, 0236, 0002, 0360, 0213, 0323, 0362, 0170, 0340, 0125, 0364, 0105, 0123, 0103,
5769 0113, 0117, 0103, 0175, 0243, 0004, 0101, 0331, 0106, 0010, 0201, 0367, 0145, 0307, 0030, 0073,
5770 0073, 0074, 0201, 0000, 0236, 0357, 0170, 0264, 0024, 0064, 0266, 0023, 0042, 0266, 0053, 0143,
5771 0340, 0267, 0054, 0347, 0227, 0236, 0136, 0310, 0056, 0174, 0031, 0104, 0221, 0356, 0256, 0177,
5772 0240, 0121, 0256, 0256, 0256, 0044, 0106, 0325, 0144, 0064, 0275, 0310, 0311, 0323, 0277, 0001,
5773 0320, 0264, 0115, 0361, 0370, 0336, 0346, 0115, 0073, 0252, 0337, 0326, 0240, 0062, 0163, 0323,
5774 0117, 0112, 0153, 0135, 0012, 0074, 0326, 0132, 0234, 0163, 0125, 0165, 0041, 0134, 0241, 0267,
5775 0377, 0002, 0306, 0171, 0214, 0363, 0364, 0366, 0137, 0140, 0041, 0134, 0251, 0151, 0357, 0234,
5776 0003, 0300, 0132, 0227, 0222, 0306, 0030, 0274, 0007, 0153, 0155, 0125, 0055, 0104, 0232, 0336,
5777 0376, 0113, 0204, 0171, 0215, 0224, 0012, 0051, 0025, 0141, 0076, 0306, 0012, 0221, 0256, 0351,
5778 0347, 0075, 0030, 0143, 0010, 0264, 0066, 0000, 0111, 0326, 0365, 0362, 0331, 0320, 0025, 0306,
5779 0246, 0227, 0220, 0112, 0126, 0340, 0143, 0323, 0113, 0174, 0076, 0164, 0205, 0301, 0213, 0223,
5780 0025, 0370, 0267, 0357, 0077, 0227, 0074, 0153, 0155, 0010, 0234, 0265, 0304, 0024, 0125, 0117,
5781 0360, 0316, 0053, 0207, 0171, 0357, 0104, 0017, 0000, 0235, 0157, 0235, 0001, 0340, 0374, 0247,
5782 0307, 0000, 0130, 0135, 0135, 0345, 0354, 0245, 0351, 0012, 0373, 0265, 0070, 0036, 0147, 0055,
5783 0201, 0261, 0061, 0105, 0316, 0331, 0252, 0011, 0162, 0271, 0133, 0344, 0162, 0267, 0000, 0220,
5784 0112, 0001, 0060, 0063, 0023, 0007, 0015, 0363, 0121, 0202, 0225, 0245, 0034, 0307, 0173, 0060,
5785 0326, 0020, 0150, 0255, 0053, 0062, 0133, 0347, 0031, 0070, 0177, 0203, 0341, 0253, 0213, 0000,
5786 0164, 0264, 0067, 0363, 0122, 0347, 0303, 0050, 0051, 0020, 0122, 0045, 0266, 0341, 0212, 0246,
5787 0357, 0253, 0313, 0011, 0266, 0261, 0003, 0320, 0132, 0023, 0130, 0143, 0161, 0316, 0046, 0231,
5788 0007, 0206, 0147, 0030, 0034, 0231, 0113, 0214, 0006, 0107, 0346, 0100, 0010, 0136, 0356, 0330,
5789 0231, 0124, 0233, 0313, 0027, 0370, 0150, 0140, 0234, 0271, 0060, 0242, 0255, 0265, 0221, 0117,
5790 0336, 0356, 0246, 0271, 0341, 0176, 0000, 0246, 0246, 0256, 0047, 0235, 0130, 0123, 0242, 0310,
5791 0071, 0227, 0144, 0276, 0070, 0266, 0214, 0134, 0127, 0325, 0037, 0343, 0041, 0057, 0034, 0156,
5792 0115, 0360, 0217, 0277, 0111, 0307, 0301, 0133, 0032, 0071, 0371, 0346, 0023, 0254, 0206, 0363,
5793 0374, 0227, 0255, 0244, 0330, 0071, 0027, 0123, 0144, 0264, 0301, 0071, 0277, 0066, 0003, 0051,
5794 0021, 0262, 0362, 0304, 0070, 0024, 0316, 0331, 0004, 0237, 0015, 0043, 0332, 0132, 0032, 0350,
5795 0073, 0161, 0210, 0302, 0355, 0171, 0254, 0335, 0070, 0077, 0347, 0074, 0106, 0033, 0244, 0061,
5796 0046, 0156, 0307, 0306, 0135, 0074, 0163, 0260, 0015, 0251, 0124, 0205, 0336, 0127, 0227, 0042,
5797 0227, 0327, 0311, 0373, 0256, 0326, 0106, 0076, 0174, 0343, 0020, 0053, 0341, 0115, 0242, 0110,
5798 0047, 0276, 0167, 0253, 0163, 0166, 0355, 0036, 0304, 0140, 0134, 0305, 0321, 0203, 0017, 0241,
5799 0224, 0342, 0273, 0077, 0247, 0361, 0336, 0123, 0027, 0050, 0026, 0227, 0013, 0234, 0372, 0176,
5800 0056, 0031, 0350, 0007, 0307, 0017, 0260, 0234, 0235, 0305, 0030, 0263, 0241, 0362, 0273, 0207,
5801 0255, 0265, 0041, 0260, 0326, 0140, 0113, 0163, 0000, 0310, 0056, 0316, 0163, 0364, 0300, 0016,
5802 0136, 0353, 0331, 0015, 0010, 0362, 0167, 0042, 0372, 0276, 0276, 0302, 0345, 0251, 0060, 0031,
5803 0162, 0270, 0060, 0263, 0151, 0360, 0070, 0101, 0034, 0067, 0060, 0306, 0140, 0214, 0255, 0340,
5804 0061, 0223, 0311, 0220, 0311, 0144, 0112, 0043, 0221, 0274, 0373, 0342, 0076, 0116, 0015, 0115,
5805 0062, 0062, 0221, 0005, 0240, 0130, 0054, 0156, 0032, 0034, 0300, 0230, 0230, 0042, 0251, 0265,
5806 0046, 0236, 0103, 0365, 0245, 0145, 0214, 0341, 0306, 0344, 0165, 0132, 0233, 0122, 0010, 0245,
5807 0020, 0112, 0361, 0343, 0325, 0073, 0045, 0236, 0153, 0253, 0061, 0046, 0276, 0007, 0306, 0230,
5808 0322, 0202, 0252, 0276, 0052, 0000, 0176, 0032, 0327, 0374, 0376, 0357, 0155, 0144, 0351, 0024,
5809 0235, 0233, 0320, 0130, 0007, 0075, 0373, 0122, 0233, 0120, 0124, 0032, 0162, 0114, 0221, 0251,
5810 0271, 0052, 0000, 0376, 0272, 0051, 0020, 0353, 0126, 0302, 0337, 0363, 0202, 0043, 0173, 0153,
5811 0373, 0224, 0343, 0006, 0345, 0126, 0066, 0353, 0040, 0025, 0244, 0130, 0167, 0065, 0010, 0124,
5812 0200, 0265, 0272, 0246, 0117, 0231, 0172, 0031, 0047, 0210, 0222, 0165, 0121, 0115, 0273, 0332,
5813 0267, 0043, 0112, 0027, 0260, 0254, 0135, 0373, 0267, 0157, 0352, 0243, 0165, 0024, 0167, 0140,
5814 0265, 0321, 0305, 0142, 0061, 0345, 0234, 0257, 0371, 0311, 0074, 0262, 0107, 0042, 0344, 0016,
5815 0176, 0375, 0047, 0336, 0252, 0335, 0373, 0037, 0244, 0173, 0267, 0047, 0063, 0135, 0275, 0153,
5816 0041, 0004, 0305, 0142, 0204, 0325, 0056, 0012, 0274, 0347, 0334, 0170, 0172, 0254, 0347, 0221,
5817 0135, 0173, 0002, 0051, 0045, 0122, 0312, 0122, 0242, 0265, 0037, 0200, 0245, 0334, 0042, 0317,
5818 0266, 0357, 0344, 0325, 0316, 0307, 0000, 0310, 0146, 0263, 0314, 0316, 0146, 0330, 0272, 0065,
5819 0136, 0160, 0245, 0017, 0075, 0102, 0210, 0344, 0024, 0215, 0247, 0257, 0031, 0357, 0355, 0317,
5820 0101, 0261, 0140, 0216, 0245, 0323, 0351, 0323, 0143, 0143, 0327, 0236, 0002, 0202, 0232, 0244,
5821 0336, 0233, 0030, 0245, 0324, 0017, 0336, 0312, 0327, 0377, 0007, 0127, 0262, 0010, 0211, 0163,
5822 0324, 0112, 0074, 0000, 0000, 0000, 0000, 0111, 0105, 0116, 0104, 0256, 0102, 0140, 0202, 0000,
5823 0000, 0050, 0165, 0165, 0141, 0171, 0051
111525824 } };
5825 #else /* _MSC_VER */
5826 static const SECTION union { const guint8 data[93016]; const double alignment; void * const ptr;} virt_viewer_resource_data = {
5827 "\107\126\141\162\151\141\156\164\000\000\000\000\000\000\000\000"
5828 "\030\000\000\000\060\003\000\000\000\000\000\050\034\000\000\000"
5829 "\000\000\000\000\000\000\000\000\002\000\000\000\003\000\000\000"
5830 "\004\000\000\000\004\000\000\000\004\000\000\000\004\000\000\000"
5831 "\006\000\000\000\006\000\000\000\010\000\000\000\012\000\000\000"
5832 "\014\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000"
5833 "\023\000\000\000\024\000\000\000\024\000\000\000\025\000\000\000"
5834 "\030\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000"
5835 "\031\000\000\000\031\000\000\000\031\000\000\000\034\000\000\000"
5836 "\055\177\036\164\032\000\000\000\060\003\000\000\017\000\166\000"
5837 "\100\003\000\000\214\011\000\000\375\045\060\152\010\000\000\000"
5838 "\214\011\000\000\017\000\166\000\240\011\000\000\161\120\000\000"
5839 "\026\042\075\252\025\000\000\000\161\120\000\000\023\000\166\000"
5840 "\210\120\000\000\235\154\000\000\007\326\172\351\021\000\000\000"
5841 "\235\154\000\000\015\000\114\000\254\154\000\000\260\154\000\000"
5842 "\213\142\373\064\014\000\000\000\260\154\000\000\017\000\166\000"
5843 "\300\154\000\000\226\160\000\000\117\203\375\362\016\000\000\000"
5844 "\226\160\000\000\017\000\166\000\250\160\000\000\125\165\000\000"
5845 "\025\351\023\066\025\000\000\000\125\165\000\000\030\000\166\000"
5846 "\160\165\000\000\213\220\000\000\161\207\334\161\031\000\000\000"
5847 "\213\220\000\000\017\000\166\000\240\220\000\000\106\223\000\000"
5848 "\146\236\302\215\017\000\000\000\106\223\000\000\010\000\114\000"
5849 "\120\223\000\000\124\223\000\000\166\164\326\242\025\000\000\000"
5850 "\124\223\000\000\032\000\166\000\160\223\000\000\240\256\000\000"
5851 "\177\162\156\157\025\000\000\000\240\256\000\000\034\000\166\000"
5852 "\300\256\000\000\344\303\000\000\027\123\016\213\025\000\000\000"
5853 "\344\303\000\000\016\000\166\000\370\303\000\000\335\022\001\000"
5854 "\264\220\356\005\017\000\000\000\335\022\001\000\006\000\114\000"
5855 "\344\022\001\000\350\022\001\000\104\176\005\013\017\000\000\000"
5856 "\350\022\001\000\006\000\114\000\360\022\001\000\364\022\001\000"
5857 "\370\301\022\006\017\000\000\000\364\022\001\000\006\000\114\000"
5858 "\374\022\001\000\004\023\001\000\205\137\364\213\024\000\000\000"
5859 "\004\023\001\000\006\000\114\000\014\023\001\000\044\023\001\000"
5860 "\137\214\265\060\025\000\000\000\044\023\001\000\024\000\166\000"
5861 "\070\023\001\000\353\037\001\000\113\120\220\013\023\000\000\000"
5862 "\353\037\001\000\004\000\114\000\360\037\001\000\364\037\001\000"
5863 "\033\376\107\355\015\000\000\000\364\037\001\000\017\000\166\000"
5864 "\010\040\001\000\006\052\001\000\324\265\002\000\377\377\377\377"
5865 "\006\052\001\000\001\000\114\000\010\052\001\000\014\052\001\000"
5866 "\032\017\217\145\003\000\000\000\014\052\001\000\014\000\114\000"
5867 "\030\052\001\000\040\052\001\000\107\360\170\267\024\000\000\000"
5868 "\040\052\001\000\003\000\114\000\044\052\001\000\110\052\001\000"
5869 "\223\377\356\077\025\000\000\000\110\052\001\000\043\000\166\000"
5870 "\160\052\001\000\365\070\001\000\237\256\226\311\025\000\000\000"
5871 "\365\070\001\000\031\000\166\000\020\071\001\000\226\122\001\000"
5872 "\104\322\354\066\025\000\000\000\226\122\001\000\034\000\166\000"
5873 "\270\122\001\000\365\146\001\000\132\306\341\003\017\000\000\000"
5874 "\365\146\001\000\006\000\114\000\374\146\001\000\000\147\001\000"
5875 "\226\275\103\010\017\000\000\000\000\147\001\000\006\000\114\000"
5876 "\010\147\001\000\014\147\001\000\306\142\250\021\016\000\000\000"
5877 "\014\147\001\000\023\000\166\000\040\147\001\000\127\153\001\000"
5878 "\166\151\162\164\055\166\151\145\167\145\162\056\160\156\147\000"
5879 "\074\006\000\000\000\000\000\000\211\120\116\107\015\012\032\012"
5880 "\000\000\000\015\111\110\104\122\000\000\000\040\000\000\000\040"
5881 "\010\006\000\000\000\163\172\172\364\000\000\000\004\163\102\111"
5882 "\124\010\010\010\010\174\010\144\210\000\000\000\011\160\110\131"
5883 "\163\000\000\015\327\000\000\015\327\001\102\050\233\170\000\000"
5884 "\000\031\164\105\130\164\123\157\146\164\167\141\162\145\000\167"
5885 "\167\167\056\151\156\153\163\143\141\160\145\056\157\162\147\233"
5886 "\356\074\032\000\000\005\271\111\104\101\124\130\205\305\127\113"
5887 "\217\143\107\025\376\252\352\126\325\165\217\355\356\166\067\031"
5888 "\046\055\002\323\363\040\311\164\303\202\044\150\104\210\202\202"
5889 "\260\146\021\024\145\001\254\130\347\057\144\021\261\103\110\110"
5890 "\331\005\211\005\012\154\020\077\041\336\041\304\043\104\114\223"
5891 "\231\106\060\121\200\151\322\170\332\111\077\374\152\277\156\125"
5892 "\235\303\302\367\072\276\266\323\103\106\043\345\223\216\353\324"
5893 "\255\362\071\337\075\347\324\343\212\152\265\212\317\022\362\063"
5894 "\365\016\040\312\224\033\067\156\074\255\265\176\223\231\277\160"
5895 "\277\077\061\063\210\010\104\064\321\231\011\041\320\374\030\023"
5896 "\230\306\317\204\020\175\347\334\117\167\166\166\136\237\043\240"
5897 "\265\176\155\153\373\332\265\315\315\057\235\355\174\352\067\123"
5898 "\071\067\312\343\076\317\217\015\006\303\362\233\277\370\325\217"
5899 "\267\267\267\177\276\273\273\333\313\021\000\260\261\266\136\301"
5900 "\157\177\267\217\137\376\372\046\254\225\020\020\000\000\041\004"
5901 "\300\014\244\255\020\142\242\063\013\340\343\356\170\054\165\050"
5902 "\000\370\100\370\316\267\256\342\373\337\273\206\245\245\163\210"
5903 "\242\050\264\333\355\012\200\071\002\105\035\151\374\375\037\037"
5904 "\341\261\253\021\114\054\220\207\230\151\147\365\174\214\062\264"
5905 "\072\003\374\345\146\035\327\236\020\330\332\336\202\326\332\053"
5906 "\245\112\331\370\204\000\063\027\165\024\341\344\244\217\140\074"
5907 "\206\243\005\266\037\000\041\020\302\060\301\023\117\136\205\020"
5908 "\004\143\015\173\357\313\013\010\320\122\244\043\064\133\043\250"
5909 "\165\006\350\341\020\040\026\160\111\300\173\167\336\307\346\346"
5910 "\045\130\143\004\021\315\107\200\210\013\052\212\340\174\000\023"
5911 "\057\266\366\051\320\353\217\160\334\352\342\250\331\305\346\271"
5912 "\313\270\164\145\023\132\107\260\205\130\070\347\362\021\270\176"
5913 "\375\272\024\102\030\245\044\234\047\060\055\312\355\375\321\355"
5914 "\015\321\354\364\321\352\364\220\070\237\076\025\030\271\200\173"
5915 "\365\173\130\131\256\140\251\020\113\146\316\023\250\124\052\105"
5916 "\041\204\143\206\361\201\001\372\164\373\123\267\067\300\301\141"
5917 "\033\243\044\163\252\240\042\065\031\167\216\161\376\363\347\141"
5918 "\264\101\034\027\364\134\012\006\203\101\271\124\052\006\146\206"
5919 "\017\014\376\077\363\077\112\002\216\132\135\364\007\011\000\011"
5920 "\245\315\302\171\311\200\161\120\077\300\352\352\032\342\102\034"
5921 "\021\321\134\021\226\264\061\036\314\160\201\300\244\026\032\312"
5922 "\100\114\150\165\006\070\035\214\000\010\050\155\317\234\357\116"
5923 "\031\217\234\377\034\214\261\050\304\261\024\102\254\346\010\204"
5924 "\020\312\072\322\114\140\044\001\020\374\311\051\350\015\023\364"
5925 "\372\011\210\001\025\235\355\170\102\200\031\316\007\104\021\301"
5926 "\306\061\040\261\226\043\300\314\145\143\015\100\014\227\020\024"
5927 "\353\071\043\236\010\375\241\103\010\014\021\151\234\035\243\074"
5928 "\110\006\164\073\011\254\061\210\155\014\016\134\311\021\040\242"
5929 "\222\061\106\022\023\034\001\231\171\146\040\060\303\007\102\010"
5930 "\000\244\206\172\200\363\223\164\202\166\173\210\312\132\001\161"
5931 "\154\301\314\313\071\002\041\204\262\265\106\365\373\001\044\005"
5932 "\034\107\351\111\226\356\007\122\075\220\343\014\043\035\320\156"
5933 "\047\240\300\260\326\042\004\237\047\340\275\057\131\143\125\277"
5934 "\067\002\105\012\054\307\265\371\260\056\013\034\071\264\132\103"
5935 "\004\012\260\261\105\010\124\314\021\040\242\262\215\255\356\365"
5936 "\034\240\344\324\211\366\160\020\331\010\207\307\103\204\020\120"
5937 "\134\212\341\234\313\023\020\102\124\254\261\302\306\012\127\127"
5938 "\064\160\272\350\044\172\360\355\231\015\160\371\162\011\104\001"
5939 "\326\032\204\020\226\162\004\000\256\250\110\241\130\322\170\355"
5940 "\325\257\334\327\040\005\302\150\340\040\204\204\220\002\046\236"
5941 "\076\325\077\231\050\023\103\051\005\146\216\163\004\222\304\035"
5942 "\355\357\357\273\107\037\375\272\126\162\176\011\056\304\352\375"
5943 "\247\314\102\051\211\306\101\003\102\210\136\216\000\063\377\354"
5944 "\017\277\377\343\313\157\377\351\355\015\153\143\146\060\230\010"
5945 "\104\074\163\357\143\020\223\142\042\075\073\106\114\014\346\321"
5946 "\270\237\277\027\146\160\316\241\333\355\222\020\342\325\034\201"
5947 "\335\335\335\273\000\056\135\274\170\361\021\051\173\022\000\274"
5948 "\367\242\323\351\210\044\111\244\122\112\016\106\203\037\132\153"
5949 "\176\000\340\212\216\246\103\076\006\203\305\150\230\034\172\012"
5950 "\357\234\266\117\177\102\104\037\112\051\131\112\311\112\251\111"
5951 "\313\314\115\042\232\024\231\230\375\056\250\325\152\022\343\025"
5952 "\250\063\371\356\113\057\276\265\274\134\176\362\251\247\237\132"
5953 "\352\367\173\270\365\327\333\163\004\264\326\170\366\271\157\340"
5954 "\237\357\377\053\271\163\347\075\137\077\270\367\342\316\073\073"
5955 "\177\003\340\246\304\003\240\152\265\072\011\313\344\125\152\265"
5956 "\232\000\240\000\230\124\054\200\370\231\147\276\366\174\261\124"
5957 "\332\172\341\333\057\304\245\122\021\315\146\023\217\077\376\345"
5958 "\005\371\125\130\137\137\107\251\134\066\266\140\165\342\334\217"
5959 "\000\274\002\140\064\043\111\255\126\163\325\152\225\162\004\322"
5960 "\267\066\000\342\151\251\327\033\307\027\066\066\144\343\303\006"
5961 "\254\375\042\266\267\276\212\347\276\371\074\126\226\127\020\307"
5962 "\005\170\357\321\156\267\320\154\065\321\150\034\340\337\167\367"
5963 "\360\121\343\050\064\217\233\165\000\153\000\072\151\044\125\352"
5964 "\103\000\240\132\255\306\325\152\225\147\223\051\122\311\322\040"
5965 "\353\365\372\321\372\335\365\067\210\350\225\375\307\076\120\267"
5966 "\167\167\265\265\126\010\210\364\013\200\041\205\204\363\036\275"
5967 "\323\236\377\317\336\007\174\164\170\370\356\355\133\267\337\302"
5968 "\370\146\251\246\354\315\355\160\323\004\050\315\123\066\071\043"
5969 "\204\133\357\336\372\315\336\335\275\077\137\330\270\360\354\271"
5970 "\163\113\127\126\127\127\056\305\161\341\074\063\027\205\020\316"
5971 "\073\177\322\156\267\376\333\156\167\367\116\216\117\166\033\215"
5972 "\306\115\000\307\000\206\013\144\004\040\144\165\220\053\302\264"
5973 "\016\262\002\314\352\300\340\343\202\064\000\012\131\172\224\122"
5974 "\205\020\202\117\211\217\000\364\323\326\003\110\322\347\111\352"
5975 "\070\353\207\351\042\234\133\005\123\104\062\062\131\010\243\051"
5976 "\175\072\254\131\364\062\011\151\353\123\075\140\274\075\346\252"
5977 "\377\114\002\147\020\302\202\066\003\317\266\213\034\316\342\177"
5978 "\026\117\017\123\227\124\115\151\000\000\000\000\111\105\116\104"
5979 "\256\102\140\202\000\000\050\165\165\141\171\051\166\151\162\164"
5980 "\055\166\151\145\167\145\162\056\160\156\147\000\000\000\000\000"
5981 "\301\106\000\000\000\000\000\000\211\120\116\107\015\012\032\012"
5982 "\000\000\000\015\111\110\104\122\000\000\001\000\000\000\001\000"
5983 "\010\006\000\000\000\134\162\250\146\000\000\000\001\163\122\107"
5984 "\102\000\256\316\034\351\000\000\000\006\142\113\107\104\000\377"
5985 "\000\377\000\377\240\275\247\223\000\000\000\011\160\110\131\163"
5986 "\000\000\015\327\000\000\015\327\001\102\050\233\170\000\000\000"
5987 "\007\164\111\115\105\007\334\002\010\017\047\033\115\240\061\317"
5988 "\000\000\040\000\111\104\101\124\170\332\355\275\151\260\044\327"
5989 "\165\036\370\335\334\253\352\275\172\113\167\003\375\136\057\150"
5990 "\240\321\100\243\321\215\205\020\210\205\013\104\152\054\153\154"
5991 "\113\363\143\014\113\362\130\213\055\123\061\041\206\250\300\110"
5992 "\266\047\254\011\273\303\341\030\151\350\241\100\111\266\065\243"
5993 "\030\213\124\070\142\306\066\155\053\034\041\056\141\217\055\110"
5994 "\244\010\112\064\111\000\015\064\261\064\166\364\372\266\332\267"
5995 "\314\274\327\077\262\262\052\227\233\173\126\275\252\172\171\042"
5996 "\052\136\275\252\314\254\134\356\367\335\163\316\075\013\120\110"
5997 "\041\205\024\122\110\041\205\024\122\110\041\205\024\122\110\041"
5998 "\205\024\122\110\041\205\024\122\110\041\205\024\122\110\041\205"
5999 "\024\122\110\041\205\024\122\110\041\205\024\122\110\041\205\024"
6000 "\122\110\041\205\024\122\110\041\205\024\122\110\041\205\024\122"
6001 "\110\041\205\024\122\110\041\205\024\122\110\041\205\024\122\110"
6002 "\041\205\024\122\110\041\205\024\122\110\041\205\024\122\110\041"
6003 "\205\024\122\110\041\205\114\125\310\054\236\324\305\213\027\225"
6004 "\225\225\225\163\224\322\065\102\310\252\040\010\122\361\250\242"
6005 "\305\064\315\211\156\077\353\373\314\372\371\031\206\141\210\242"
6006 "\270\003\140\247\124\052\275\166\361\342\105\243\040\200\241\074"
6007 "\373\354\263\253\204\220\117\061\306\176\014\300\043\000\112\005"
6008 "\244\343\011\143\054\364\177\357\147\121\337\307\075\156\232\175"
6009 "\362\072\356\002\134\123\215\061\366\237\030\143\377\162\151\151"
6010 "\351\313\027\057\136\244\007\222\000\056\136\274\050\255\254\254"
6011 "\374\003\000\317\000\130\052\340\234\036\374\005\040\347\366\232"
6012 "\276\117\010\371\364\147\077\373\331\077\232\366\370\021\367\163"
6013 "\360\376\372\257\377\372\112\245\122\371\032\200\237\006\240\024"
6014 "\160\076\070\263\176\036\347\267\100\327\164\204\061\366\123\117"
6015 "\076\371\244\364\315\157\176\363\217\016\004\001\374\326\157\375"
6016 "\226\052\010\302\227\001\074\125\300\071\137\360\317\073\040\017"
6017 "\350\065\021\306\330\123\117\076\371\244\362\374\363\317\377\227"
6018 "\205\067\001\176\343\067\176\343\263\204\220\277\123\300\171\272"
6019 "\052\377\254\001\122\121\224\003\145\046\120\112\141\030\106\324"
6020 "\157\375\217\237\373\334\347\376\375\302\022\300\347\076\367\271"
6021 "\023\202\040\274\001\100\365\176\267\262\122\305\207\176\340\103"
6022 "\270\375\266\333\240\151\045\210\222\010\102\310\034\043\066\331"
6023 "\323\020\354\153\145\311\167\237\215\213\310\151\157\066\213\217"
6024 "\222\145\072\167\306\030\114\152\242\335\152\341\345\227\137\301"
6025 "\037\077\367\047\320\165\235\267\335\165\306\330\351\147\237\175"
6026 "\266\073\351\153\332\227\345\065\101\020\376\006\017\374\247\317"
6027 "\234\306\123\117\175\034\222\270\010\253\176\054\075\305\262\003"
6028 "\014\374\005\005\077\000\020\102\040\211\022\126\126\126\361\221"
6029 "\217\174\004\347\317\337\217\057\176\341\367\121\253\325\275\232"
6030 "\300\006\041\344\307\001\174\161\342\130\334\217\233\111\010\371"
6031 "\061\357\147\345\112\031\037\377\370\107\027\013\374\050\300\177"
6032 "\140\300\317\222\237\373\312\312\052\176\372\147\176\012\242\044"
6033 "\202\061\346\065\003\376\306\124\046\343\175\260\141\011\200\207"
6034 "\274\237\077\360\340\171\310\222\122\200\377\040\253\374\154\366"
6035 "\200\037\033\374\051\145\155\155\035\037\176\354\121\036\116\036"
6036 "\131\110\002\370\374\347\077\177\224\061\246\171\077\337\330\330"
6037 "\134\000\340\263\364\300\147\205\275\277\150\052\177\134\271\347"
6038 "\314\031\227\011\060\324\004\126\177\351\227\176\351\366\205\363"
6039 "\001\210\242\270\306\013\243\054\227\313\276\317\006\172\037\275"
6040 "\136\167\016\240\237\165\326\167\170\211\031\235\056\170\130\306"
6041 "\153\310\270\077\245\064\375\005\261\214\317\202\145\274\245\054"
6042 "\371\170\130\255\256\101\121\334\356\257\325\325\065\247\375\077"
6043 "\172\117\010\131\007\160\163\241\010\100\327\365\252\040\370\025"
6044 "\017\131\226\175\237\365\373\075\164\172\355\331\006\077\313\017"
6045 "\374\373\261\377\176\202\337\271\033\233\011\340\263\211\357\337"
6046 "\355\153\076\002\120\125\205\273\224\310\030\253\056\242\006\260"
6047 "\354\005\215\040\010\134\347\237\111\315\305\004\377\274\002\157"
6048 "\002\373\037\044\360\003\000\345\150\277\222\044\163\307\223\040"
6049 "\010\313\013\107\000\214\261\145\377\015\220\040\010\376\365\262"
6050 "\304\352\160\061\353\027\340\237\141\360\203\361\307\264\044\212"
6051 "\334\061\145\232\346\304\011\140\077\226\001\175\152\215\252\252"
6052 "\340\055\230\063\312\012\360\117\110\345\317\002\336\254\373\247"
6053 "\072\006\207\070\246\006\176\226\337\376\274\061\115\004\301\145"
6054 "\002\073\034\201\213\147\002\000\360\261\232\252\251\001\140\013"
6055 "\326\000\176\377\013\227\361\217\377\321\267\101\047\100\022\262"
6056 "\054\240\134\316\377\326\010\202\200\245\145\171\042\067\165\245"
6057 "\252\144\301\101\360\303\132\226\271\332\131\126\360\227\053\022"
6058 "\144\111\310\172\050\237\224\064\021\212\042\346\167\037\206\033"
6059 "\126\253\062\176\352\147\356\305\221\043\132\046\255\041\110\253"
6060 "\055\227\113\250\327\165\327\004\103\010\131\114\023\300\033\332"
6061 "\153\151\000\034\173\051\144\266\375\322\277\276\062\021\360\003"
6062 "\200\256\123\324\353\203\211\034\173\157\257\067\221\343\276\217"
6063 "\102\046\055\137\377\372\165\374\301\177\370\221\114\046\203\177"
6064 "\325\143\110\000\225\212\053\042\060\310\134\236\173\002\020\004"
6065 "\301\347\004\324\324\344\032\200\015\120\101\060\240\252\215\234"
6066 "\111\112\000\143\223\261\216\050\235\114\002\046\143\322\234\235"
6067 "\257\010\053\046\154\176\344\375\367\132\331\375\005\064\130\003"
6068 "\340\230\232\213\107\000\301\076\200\144\366\166\253\065\030\252"
6069 "\353\035\074\374\160\007\262\054\172\366\315\327\316\327\165\043"
6070 "\220\275\363\222\301\300\010\045\275\074\174\023\272\156\246\376"
6071 "\215\370\032\224\231\373\275\362\136\037\245\024\246\111\247\102"
6072 "\336\265\332\235\350\166\327\320\355\032\060\014\012\051\314\164"
6073 "\211\170\014\046\343\257\154\225\112\045\336\265\056\236\017\200"
6074 "\247\326\050\252\302\121\377\151\350\140\150\265\364\241\006\140"
6075 "\342\223\237\374\060\112\045\065\020\004\214\045\003\115\362\317"
6076 "\323\037\077\211\123\161\026\316\067\370\072\222\041\142\026\236"
6077 "\125\324\276\337\377\376\133\170\365\325\267\041\010\343\214\275"
6078 "\146\123\307\332\232\032\170\251\335\116\027\335\136\037\004\200"
6079 "\040\212\120\025\031\222\054\101\020\005\020\102\002\315\126\115"
6080 "\323\170\051\302\013\251\001\160\010\100\115\064\243\165\072\306"
6081 "\350\106\022\142\100\024\355\144\212\354\203\147\277\101\136\000"
6082 "\175\372\100\017\372\334\016\130\023\004\063\222\000\156\335\334"
6083 "\306\133\127\336\001\065\051\052\113\145\124\052\025\224\112\032"
6084 "\214\222\006\131\221\241\252\012\044\131\204\165\110\006\357\252"
6085 "\227\252\152\276\337\137\124\002\360\251\065\012\047\012\060\114"
6086 "\115\155\066\306\016\072\121\244\220\044\061\220\131\147\165\066"
6087 "\057\200\076\073\100\017\072\117\233\000\010\061\034\143\317\237"
6088 "\277\277\175\153\007\057\175\357\345\341\114\256\202\121\066\132"
6089 "\312\243\214\132\177\051\005\143\342\320\174\141\276\225\225\122"
6090 "\111\363\235\023\041\344\140\054\003\172\253\302\130\316\222\060"
6091 "\373\177\374\020\144\231\361\122\051\013\240\027\100\117\170\275"
6092 "\074\015\200\160\064\200\201\357\026\355\355\325\306\066\076\245"
6093 "\240\224\202\232\046\050\143\256\161\314\050\005\104\001\224\121"
6094 "\010\236\020\034\125\125\017\206\011\100\010\361\255\002\110\262"
6095 "\224\310\007\340\174\010\252\052\104\020\100\001\364\002\350\351"
6096 "\316\131\020\304\341\230\345\020\200\143\327\143\307\066\160\355"
6097 "\203\033\320\165\035\324\244\240\214\202\216\146\175\006\066\374"
6098 "\153\317\376\026\021\270\177\323\033\013\263\260\253\000\274\004"
6099 "\007\231\153\002\260\020\002\060\034\332\003\313\154\377\027\100"
6100 "\077\330\100\017\372\134\024\375\032\100\253\151\370\156\145\271"
6101 "\122\306\143\117\074\202\267\337\172\017\073\073\273\226\006\100"
6102 "\351\010\370\116\237\002\041\374\130\000\165\230\040\344\071\247"
6103 "\203\141\002\310\011\175\000\366\022\240\245\001\020\053\227\276"
6104 "\000\172\001\364\234\317\331\366\001\210\342\230\000\032\015\176"
6105 "\200\230\126\322\160\366\376\063\000\003\172\275\076\014\303\000"
6106 "\010\240\052\012\104\111\264\216\305\202\265\133\125\121\170\347"
6107 "\263\130\032\300\305\213\027\005\000\025\037\001\110\062\307\004"
6108 "\140\261\114\000\111\202\317\004\050\200\136\000\075\256\066\031"
6109 "\046\326\214\115\134\046\100\253\251\007\074\215\161\015\110\255"
6110 "\244\302\127\362\322\171\177\070\032\200\254\310\274\163\136\262"
6111 "\216\070\271\222\051\123\115\006\052\225\112\025\336\157\112\222"
6112 "\230\350\241\071\037\202\252\222\261\255\025\342\013\260\217\231"
6113 "\317\013\001\257\364\307\244\164\374\162\036\163\234\111\342\176"
6114 "\115\363\334\202\216\357\076\347\274\256\067\373\363\212\117\374"
6115 "\336\153\001\050\035\177\106\210\105\000\116\015\240\331\322\175"
6116 "\300\217\214\016\144\141\223\233\365\074\235\216\160\307\065\010"
6117 "\277\360\013\277\120\131\030\015\240\134\056\057\033\206\277\037"
6118 "\242\310\251\005\020\156\002\350\056\015\240\230\321\027\157\106"
6119 "\367\177\106\142\337\247\240\337\167\276\167\246\243\214\267\147"
6120 "\236\161\111\000\020\010\302\370\163\347\022\164\332\172\201\143"
6121 "\037\000\363\231\301\336\353\060\014\143\031\100\153\041\010\240"
6122 "\337\357\127\105\321\077\333\213\074\015\200\306\063\001\024\205"
6123 "\304\152\350\120\000\235\315\250\332\036\173\276\346\034\207\044"
6124 "\074\116\064\061\270\115\000\021\204\330\253\000\126\360\116\163"
6125 "\250\175\046\235\365\375\004\340\135\011\223\271\044\046\212\142"
6126 "\025\300\365\205\040\000\111\222\226\171\003\201\127\015\050\154"
6127 "\031\260\345\042\000\044\040\200\331\004\372\342\315\346\044\001"
6128 "\320\371\063\175\360\075\311\237\114\171\221\171\143\047\340\170"
6129 "\045\200\122\011\315\246\036\011\176\103\067\140\030\046\030\143"
6130 "\020\005\001\242\044\302\236\370\030\030\050\047\037\200\247\001"
6131 "\014\011\140\242\216\300\251\022\100\120\065\040\136\347\237\360"
6132 "\104\040\147\040\020\117\003\310\242\152\026\152\173\074\240\207"
6133 "\175\236\314\016\217\236\351\047\245\125\204\235\063\031\071\001"
6134 "\055\002\240\240\324\155\002\170\345\326\315\155\134\377\340\072"
6135 "\164\303\100\245\134\101\271\122\202\126\322\240\252\052\124\125"
6136 "\201\254\312\020\105\201\273\014\050\211\022\367\172\050\245\213"
6137 "\103\000\340\254\153\006\023\100\130\040\220\076\264\343\314\141"
6138 "\036\100\141\237\147\271\136\102\110\314\031\067\036\101\307\333"
6139 "\236\144\230\321\111\112\240\363\147\372\240\147\356\014\327\025"
6140 "\004\003\200\342\163\002\332\362\326\225\167\360\366\233\357\002"
6141 "\004\130\132\132\032\106\004\216\203\201\114\112\041\230\046\010"
6142 "\161\304\372\073\056\133\024\255\245\102\233\034\034\261\003\325"
6143 "\105\042\000\177\065\040\125\345\022\000\215\241\001\010\202\011"
6144 "\111\022\143\055\001\036\064\240\007\037\207\177\214\250\153\211"
6145 "\333\236\061\276\352\316\122\356\033\255\141\204\337\022\077\231"
6146 "\004\155\057\212\242\113\003\260\234\200\072\367\220\357\277\173"
6147 "\165\364\336\266\361\255\140\040\066\066\147\331\330\007\340\125"
6148 "\072\010\041\120\125\025\335\156\327\333\114\164\261\114\000\057"
6149 "\330\171\251\300\221\032\100\143\020\213\000\026\021\350\141\215"
6150 "\122\243\217\343\037\354\343\303\045\003\025\357\360\326\261\130"
6151 "\152\177\200\367\234\243\232\302\046\265\351\371\333\207\057\035"
6152 "\022\142\205\232\333\004\320\152\353\166\315\176\327\155\073\164"
6153 "\150\015\067\157\156\271\110\200\015\103\202\255\344\240\141\070"
6154 "\260\115\020\234\237\054\227\313\350\164\072\336\373\261\330\046"
6155 "\200\226\252\030\210\155\002\030\020\105\045\244\064\330\174\000"
6156 "\075\111\363\143\357\154\035\014\304\240\373\301\270\204\020\066"
6157 "\373\106\235\337\070\175\065\233\077\040\356\161\323\332\364\361"
6158 "\314\015\257\026\100\140\232\266\011\000\120\223\241\335\066\261"
6159 "\264\044\271\016\161\356\302\131\224\052\045\134\373\340\372\060"
6160 "\031\150\010\176\373\105\307\004\116\143\124\005\162\020\376\342"
6161 "\230\000\274\162\140\252\246\361\037\104\214\145\100\101\240\303"
6162 "\040\242\331\004\272\323\336\213\257\242\063\356\200\015\006\042"
6163 "\117\225\216\147\323\023\302\022\000\052\374\076\044\151\341\036"
6164 "\307\246\217\163\270\170\032\006\177\215\077\056\251\010\202\010"
6165 "\323\064\106\032\000\140\255\102\055\125\044\357\330\306\351\273"
6166 "\357\304\351\323\167\242\126\257\133\241\300\040\220\045\011\262"
6167 "\052\103\221\145\253\050\010\010\047\022\320\072\231\122\271\074"
6168 "\365\214\300\175\137\005\120\171\251\300\054\070\272\312\064\030"
6169 "\272\135\163\344\004\024\004\141\352\100\217\273\152\301\213\156"
6170 "\343\223\004\357\234\343\331\310\174\225\336\077\323\047\361\015"
6171 "\170\162\322\123\202\072\211\166\302\142\237\133\320\276\116\342"
6172 "\114\003\364\140\015\100\204\141\230\020\105\352\062\101\217\036"
6173 "\055\363\367\047\014\053\253\325\120\205\324\362\011\370\117\254"
6174 "\304\237\014\027\312\004\360\327\002\320\224\104\366\277\155\203"
6175 "\271\175\000\331\201\236\144\240\363\146\260\140\333\072\034\144"
6176 "\336\302\230\311\374\026\044\144\266\346\357\353\324\044\222\006"
6177 "\360\044\363\242\007\253\341\161\110\061\310\246\217\046\173\226"
6178 "\030\344\141\347\153\245\004\023\167\115\000\316\112\100\222\300"
6179 "\240\221\017\300\023\345\257\225\064\336\175\137\154\037\200\042"
6180 "\053\211\354\377\106\243\357\000\231\341\163\002\246\125\115\371"
6181 "\011\105\044\325\100\167\016\362\150\333\072\231\032\036\346\300"
6182 "\012\272\326\040\007\136\124\124\135\232\331\072\234\144\131\054"
6183 "\323\204\357\323\011\276\326\174\343\001\334\277\051\212\004\204"
6184 "\300\243\001\350\361\301\037\360\025\145\014\002\210\353\153\273"
6185 "\060\250\147\034\056\366\062\040\217\000\202\242\000\235\305\100"
6186 "\155\037\000\057\264\070\312\336\364\316\304\341\116\263\260\175"
6187 "\203\154\353\030\043\040\021\160\342\021\021\017\070\101\232\211"
6188 "\377\167\130\204\017\042\211\243\065\230\210\242\216\231\306\344"
6189 "\110\027\017\020\175\276\266\155\357\325\000\234\143\060\015\370"
6190 "\155\055\200\170\306\056\257\052\320\102\151\000\274\152\100\262"
6191 "\032\257\030\210\375\231\063\014\330\275\014\230\316\031\144\315"
6192 "\054\044\246\015\032\317\244\210\236\375\131\242\350\107\247\327"
6193 "\070\171\146\153\322\163\013\162\020\046\135\132\113\355\047\112"
6194 "\251\231\144\321\000\202\363\014\354\130\000\121\144\016\055\064"
6195 "\074\034\270\325\154\243\333\356\202\020\002\101\024\241\050\062"
6196 "\024\125\161\365\300\244\214\102\364\224\005\332\217\252\100\123"
6197 "\045\000\112\151\325\073\360\171\265\000\302\002\173\232\115\267"
6198 "\006\140\071\001\303\035\137\321\276\000\066\245\204\226\370\116"
6199 "\263\344\001\070\321\347\306\327\114\222\230\015\341\316\320\144"
6200 "\276\230\170\176\223\070\046\107\122\277\111\222\147\155\137\243"
6201 "\313\004\150\362\303\201\367\166\153\170\365\362\033\240\046\305"
6202 "\322\122\005\345\162\011\132\271\004\112\255\222\337\114\141\126"
6203 "\211\160\201\200\122\023\200\074\046\037\000\232\252\361\356\327"
6204 "\342\230\000\274\136\147\212\042\007\232\000\274\201\343\066\001"
6205 "\114\227\011\020\354\370\142\251\036\276\227\114\362\012\075\215"
6206 "\263\036\035\074\330\171\152\163\362\031\061\110\253\211\343\067"
6207 "\011\132\026\234\205\230\204\070\332\111\120\126\140\030\011\070"
6208 "\227\001\233\234\242\040\235\166\007\057\174\347\022\030\263\162"
6209 "\373\051\265\342\000\300\253\305\000\073\032\320\375\343\212\252"
6210 "\360\046\277\305\136\005\220\170\032\000\015\216\316\162\262\257"
6211 "\054\263\300\201\023\374\360\343\314\130\011\214\071\304\115\214"
6212 "\111\226\306\312\367\115\304\263\255\303\146\262\044\332\104\162"
6213 "\040\116\057\046\041\251\337\044\052\036\203\122\212\166\273\213"
6214 "\166\273\207\116\247\213\126\253\207\136\257\077\042\104\247\006"
6215 "\320\342\254\002\264\133\235\321\157\230\246\001\223\072\312\201"
6216 "\323\141\064\040\330\260\042\260\350\137\351\142\356\045\361\205"
6217 "\133\005\140\214\221\317\177\376\363\176\002\220\223\246\002\073"
6218 "\063\001\005\217\343\053\331\132\160\022\147\120\364\161\242\012"
6219 "\126\004\001\205\305\126\303\263\332\326\101\347\234\046\052\161"
6220 "\132\061\011\151\257\063\032\360\014\355\166\007\215\106\033\315"
6221 "\146\007\255\126\167\250\226\363\256\041\270\050\210\375\010\017"
6222 "\035\076\204\325\265\025\324\366\352\156\360\017\103\200\031\034"
6223 "\301\155\314\343\260\145\366\170\126\170\347\276\030\004\360\273"
6224 "\277\373\273\045\370\212\041\173\153\001\014\037\036\215\127\015"
6225 "\110\121\202\200\236\126\065\215\236\371\202\147\273\360\202\025"
6226 "\341\100\212\237\240\022\015\160\022\070\133\007\171\376\223\003"
6227 "\061\277\230\204\264\176\216\240\353\015\233\341\133\255\056\232"
6228 "\315\066\232\315\366\020\360\321\023\200\175\156\204\260\141\112"
6229 "\260\060\216\003\160\354\056\010\004\017\077\362\000\256\137\273"
6230 "\211\133\067\267\060\030\350\043\115\326\052\023\116\101\204\141"
6231 "\212\261\100\254\111\216\171\315\141\205\107\324\322\063\317\074"
6232 "\123\172\366\331\147\273\163\115\000\365\172\275\312\253\376\053"
6233 "\215\152\172\305\053\352\351\254\010\054\313\110\031\056\113\022"
6234 "\104\351\145\361\007\244\115\214\111\266\164\350\327\022\230\117"
6235 "\015\217\103\154\331\274\353\054\125\004\141\224\123\057\332\031"
6236 "\032\114\366\215\106\033\215\106\013\215\106\033\235\116\317\247"
6237 "\351\304\065\261\306\040\037\022\100\103\347\076\042\102\010\066"
6238 "\217\035\305\346\261\243\000\003\014\303\200\101\315\221\367\337"
6239 "\171\117\050\247\261\251\267\103\226\175\276\315\146\263\012\140"
6240 "\276\011\100\125\325\145\136\022\204\345\304\143\261\115\200\246"
6241 "\253\040\150\274\331\336\257\232\306\017\263\015\366\007\044\265"
6242 "\351\371\104\224\034\350\116\207\146\134\317\077\113\011\304\311"
6243 "\256\323\207\153\047\136\315\052\332\254\243\224\242\136\157\242"
6244 "\126\153\242\321\150\103\327\015\327\075\116\102\112\274\355\105"
6245 "\221\302\060\202\053\003\173\037\255\050\213\276\245\076\373\222"
6246 "\334\076\000\066\064\207\345\040\163\155\031\300\315\271\046\000"
6247 "\136\136\263\040\010\243\332\353\161\035\066\255\121\061\020\006"
6248 "\121\024\042\324\162\022\333\141\226\055\025\065\175\004\141\372"
6249 "\345\107\026\373\172\343\071\034\323\206\102\047\133\247\367\356"
6250 "\233\066\142\322\376\215\136\157\200\132\315\002\175\263\331\211"
6251 "\105\260\111\211\140\074\136\115\337\044\024\360\124\043\225\102"
6252 "\136\135\100\131\226\202\306\376\304\374\000\323\134\005\340\127"
6253 "\003\342\022\100\164\133\060\102\114\137\071\161\377\140\317\043"
6254 "\025\065\217\160\131\222\001\350\111\264\004\226\112\245\017\162"
6255 "\210\362\234\172\301\021\204\116\262\217\367\033\266\046\026\354"
6256 "\067\341\107\151\016\006\072\166\167\033\330\333\153\240\325\352"
6257 "\216\100\235\026\330\141\266\277\133\003\140\256\061\230\010\374"
6258 "\276\322\340\074\155\130\032\126\147\162\337\027\112\151\165\356"
6259 "\011\200\127\014\104\226\145\010\251\253\001\321\141\175\065\226"
6260 "\171\240\363\325\346\250\247\310\270\040\341\073\034\203\075\360"
6261 "\321\347\113\003\006\154\234\232\003\321\116\302\340\343\320\110"
6262 "\277\111\234\242\040\141\044\026\317\377\141\355\253\353\006\166"
6263 "\166\152\330\336\256\243\327\353\307\234\315\343\001\073\356\276"
6264 "\266\006\320\357\123\014\006\046\024\105\114\005\176\140\354\350"
6265 "\146\314\255\021\113\222\004\135\327\247\266\022\060\115\015\300"
6266 "\337\022\114\221\371\131\163\274\051\144\170\077\306\325\200\350"
6267 "\310\201\030\307\356\217\236\255\031\307\151\026\125\235\207\305"
6268 "\004\137\224\017\041\351\322\027\313\340\320\113\036\013\141\251"
6269 "\341\361\375\010\161\374\046\356\144\036\022\110\102\265\132\003"
6270 "\073\073\015\324\353\055\007\161\222\334\100\315\067\021\370\373"
6271 "\072\303\201\133\055\035\353\353\242\017\374\224\122\154\157\355"
6272 "\242\325\154\201\061\053\322\125\125\025\224\312\126\161\120\131"
6273 "\221\106\105\101\274\343\202\010\004\212\242\140\060\030\170\307"
6274 "\332\142\232\000\166\103\304\110\015\200\215\157\160\253\145\214"
6275 "\330\330\356\336\032\127\225\016\252\034\344\137\007\147\076\207"
6276 "\133\374\301\216\320\175\047\021\266\232\326\151\346\057\341\345"
6277 "\074\137\022\111\070\101\176\223\040\100\072\317\311\257\235\020"
6278 "\207\231\327\306\316\116\035\365\172\023\246\303\133\036\074\333"
6279 "\147\003\166\134\361\146\004\256\257\153\256\131\277\327\355\341"
6280 "\305\357\275\202\116\273\203\162\245\214\345\245\045\220\022\201"
6281 "\054\113\060\115\012\323\064\101\014\002\111\022\035\143\234\271"
6282 "\316\244\134\056\243\325\152\271\356\355\044\013\203\116\215\000"
6283 "\270\325\200\002\313\201\121\056\370\055\002\160\152\000\102\202"
6284 "\331\077\213\323\214\305\214\133\347\357\033\167\346\214\107\012"
6285 "\351\234\146\274\175\335\200\267\201\030\237\161\370\171\373\351"
6286 "\102\171\051\065\261\263\123\307\366\166\015\335\156\077\200\210"
6287 "\362\007\165\022\007\241\213\000\132\376\204\240\067\257\274\203"
6288 "\116\273\063\272\130\127\313\072\273\015\032\035\206\007\173\234"
6289 "\200\366\273\162\271\064\325\214\300\251\372\000\174\032\000\257"
6290 "\030\210\163\146\361\200\177\060\060\321\357\233\016\037\200\230"
6291 "\310\336\214\252\101\357\164\300\304\005\154\322\200\224\354\216"
6292 "\076\104\152\047\151\263\021\243\264\212\164\176\023\257\351\342"
6293 "\336\260\333\355\341\346\315\075\324\152\015\207\206\106\246\012"
6294 "\354\370\223\330\230\000\032\234\352\300\116\177\026\245\164\024"
6295 "\021\150\007\003\071\235\173\006\065\270\124\133\052\227\175\317"
6296 "\152\222\145\301\366\325\007\300\323\000\154\206\344\071\125\234"
6297 "\121\200\242\110\041\212\112\100\270\154\332\022\136\223\267\255"
6298 "\343\331\364\044\206\223\216\277\157\326\354\101\336\014\033\047"
6299 "\067\042\151\011\257\106\243\215\133\267\366\134\113\167\131\327"
6300 "\351\263\112\324\361\044\311\021\016\314\131\011\270\373\236\323"
6301 "\350\367\007\330\333\255\171\302\201\355\104\040\072\052\167\307"
6302 "\275\377\014\050\115\271\052\320\276\372\000\024\205\137\016\054"
6303 "\310\233\332\152\046\053\006\342\140\320\110\333\072\172\054\345"
6304 "\123\302\053\310\341\345\137\141\340\151\030\151\012\214\306\367"
6305 "\204\007\335\247\274\112\170\231\046\305\316\116\015\073\073\165"
6306 "\364\373\372\124\200\235\355\130\304\243\001\060\356\130\034\307"
6307 "\362\113\170\350\103\027\320\150\064\261\273\275\007\223\322\121"
6308 "\153\060\111\222\040\053\062\144\165\334\010\147\244\211\071\356"
6309 "\157\111\233\156\125\240\175\325\000\174\004\300\342\107\001\132"
6310 "\004\340\135\063\115\127\302\313\011\354\260\350\272\144\121\165"
6311 "\161\200\036\024\101\310\142\150\011\321\100\014\072\337\270\131"
6312 "\220\174\317\077\341\332\374\141\171\006\326\022\136\035\333\333"
6313 "\165\230\246\231\013\310\363\004\166\134\315\111\222\070\051\301"
6314 "\234\133\124\255\056\243\132\135\366\076\075\216\337\203\102\364"
6315 "\070\262\265\222\306\323\140\347\137\003\160\126\003\262\377\272"
6316 "\312\201\015\065\377\260\162\340\316\074\000\313\004\020\043\155"
6317 "\325\340\045\246\344\236\377\154\313\215\274\355\151\200\226\220"
6318 "\154\140\132\100\045\011\316\055\310\157\102\042\374\034\376\370"
6319 "\200\060\040\016\006\072\156\334\330\105\255\326\114\140\162\344"
6320 "\007\354\274\227\007\235\004\320\152\351\261\375\245\101\032\055"
6321 "\243\024\020\334\176\054\157\231\374\241\226\060\377\004\140\127"
6322 "\003\162\016\004\131\221\035\366\376\160\273\030\121\200\266\006"
6323 "\040\010\242\143\220\222\204\203\075\312\176\315\022\105\230\274"
6324 "\167\136\026\137\102\362\165\372\150\122\214\177\255\376\175\172"
6325 "\275\001\156\336\334\101\255\326\032\201\172\322\121\172\131\200"
6326 "\035\327\341\350\014\132\155\306\310\007\210\012\011\346\225\007"
6327 "\327\024\145\161\115\000\157\072\247\054\313\376\244\332\320\050"
6328 "\100\303\243\001\220\030\203\075\310\226\117\126\050\043\113\273"
6329 "\352\264\153\374\336\123\013\063\163\342\347\347\107\337\357\264"
6330 "\344\145\001\177\027\365\172\053\306\275\235\054\260\047\261\212"
6331 "\340\162\002\066\122\346\003\170\313\203\173\104\053\225\246\132"
6332 "\025\150\137\174\000\366\005\362\322\203\131\314\142\040\176\015"
6333 "\040\131\062\117\320\140\217\243\322\047\357\214\313\037\011\356"
6334 "\343\022\016\363\363\176\223\005\370\046\242\234\201\371\146\373"
6335 "\071\245\323\351\341\346\315\135\064\233\135\037\320\366\153\266"
6336 "\236\204\057\101\020\330\260\264\071\341\126\005\362\202\337\060"
6337 "\114\030\206\001\106\231\345\010\034\026\030\035\071\001\075\004"
6338 "\300\340\056\221\267\160\253\000\336\001\067\256\005\340\140\105"
6339 "\026\335\022\314\322\000\300\315\044\364\017\372\350\102\031\341"
6340 "\200\363\252\314\311\272\012\005\251\277\376\045\307\164\232\111"
6341 "\220\255\316\261\043\123\253\364\101\115\071\006\003\035\267\156"
6342 "\355\242\136\157\207\224\127\237\076\260\047\351\040\024\105\006"
6343 "\303\040\201\046\000\145\024\327\076\270\201\355\255\035\000\126"
6344 "\144\137\251\134\202\246\251\120\025\005\212\252\100\226\045\010"
6345 "\242\140\365\016\364\014\001\136\121\020\114\260\060\350\276\005"
6346 "\002\061\306\270\004\020\267\032\220\025\012\054\370\354\155\347"
6347 "\303\162\337\110\306\001\114\176\205\075\202\233\162\344\257\231"
6348 "\344\323\272\213\204\230\023\101\036\175\173\146\243\043\347\136"
6349 "\162\225\176\277\202\171\362\061\071\254\232\000\202\257\054\230"
6350 "\015\345\127\056\275\212\355\133\073\020\105\001\225\245\045\053"
6351 "\002\320\264\333\204\133\161\001\224\132\325\201\170\135\202\371"
6352 "\113\343\223\013\004\022\246\001\376\213\027\057\152\260\152\040"
6353 "\273\006\130\042\015\200\271\173\002\110\222\125\017\140\234\027"
6354 "\157\275\154\120\173\137\224\216\137\374\136\365\374\356\076\336"
6355 "\227\065\243\303\367\112\342\064\013\177\361\317\041\376\361\374"
6356 "\347\074\006\073\161\001\077\150\337\040\061\014\206\033\067\166"
6357 "\361\306\033\357\241\136\157\172\356\001\361\275\202\176\067\110"
6358 "\113\212\172\361\201\351\176\005\357\017\337\371\362\317\217\167"
6359 "\274\361\176\166\070\160\223\323\034\244\337\353\143\373\226\065"
6360 "\363\233\046\005\033\202\335\171\217\135\164\352\053\012\302\040"
6361 "\173\012\203\016\367\121\176\361\027\177\121\235\133\015\140\175"
6362 "\175\175\131\327\165\337\354\302\325\000\030\077\023\220\201\271"
6363 "\324\056\153\127\167\240\112\334\156\274\136\055\200\067\323\047"
6364 "\235\154\342\364\041\234\174\353\256\044\151\267\141\232\016\363"
6365 "\250\376\300\336\136\023\133\133\173\060\014\063\326\114\076\013"
6366 "\263\365\044\114\216\121\115\200\241\023\320\251\304\053\252\202"
6367 "\312\122\031\355\126\147\364\374\354\020\140\112\251\217\164\051"
6368 "\047\037\100\011\250\012\264\275\275\275\014\240\077\227\004\140"
6369 "\232\346\062\257\052\055\057\222\317\265\235\047\044\330\066\001"
6370 "\306\325\200\202\173\362\305\005\142\166\240\307\077\100\120\021"
6371 "\312\170\125\171\323\065\310\110\222\237\317\363\171\264\132\035"
6372 "\334\274\271\073\212\334\233\345\165\372\151\230\034\366\220\355"
6373 "\164\254\322\337\166\247\037\173\373\207\076\164\001\157\276\361"
6374 "\016\266\156\155\217\324\175\253\007\300\220\020\050\203\100\310"
6375 "\250\253\265\367\311\310\262\314\255\340\054\111\322\062\200\355"
6376 "\271\044\000\135\327\253\266\303\316\251\376\363\234\170\243\070"
6377 "\000\026\234\013\040\212\376\162\140\343\207\305\142\014\216\054"
6378 "\035\144\371\300\014\166\032\222\020\040\006\327\042\010\073\207"
6379 "\044\015\062\302\262\014\303\362\033\054\007\337\070\126\077\111"
6380 "\052\356\042\171\376\275\277\151\233\000\224\062\164\072\006\226"
6381 "\226\144\327\155\225\145\031\147\317\235\301\075\147\117\243\136"
6382 "\157\200\232\024\204\020\310\212\002\125\121\040\311\242\005\176"
6383 "\060\230\336\062\344\314\352\223\301\253\012\064\251\130\200\151"
6384 "\071\001\227\275\040\221\145\231\357\035\267\323\045\071\040\265"
6385 "\127\001\274\035\201\334\307\316\143\211\056\170\326\014\336\236"
6386 "\204\356\033\077\246\076\316\154\315\022\125\323\211\163\017\034"
6387 "\345\247\260\265\125\103\255\326\366\071\074\147\175\235\176\032"
6388 "\046\207\067\026\140\104\000\236\133\057\010\002\326\326\126\003"
6389 "\106\026\363\233\273\303\373\057\212\042\104\121\264\226\017\335"
6390 "\065\001\226\347\226\000\104\121\364\125\004\266\233\056\372\011"
6391 "\040\044\031\310\123\016\314\276\353\356\352\062\131\147\364\240"
6392 "\175\363\210\251\017\252\175\107\002\124\172\206\054\021\211\376"
6393 "\374\174\302\131\225\030\277\257\327\133\330\336\256\217\354\174"
6394 "\136\234\302\074\003\073\017\002\163\126\005\152\066\007\330\100"
6395 "\071\321\043\162\216\155\313\044\144\236\376\002\002\144\131\206"
6396 "\355\063\033\371\022\070\105\165\347\206\000\274\105\015\355\376"
6397 "\151\274\207\153\306\010\005\026\105\346\062\037\262\264\212\216"
6398 "\323\047\056\257\332\167\141\041\270\371\344\347\107\305\053\360"
6399 "\126\073\010\272\335\076\156\335\332\103\257\067\110\070\043\316"
6400 "\336\072\375\244\115\016\067\001\350\251\301\077\062\167\275\232"
6401 "\203\050\214\002\344\246\321\044\164\252\046\200\363\242\170\353"
6402 "\235\076\265\310\253\001\064\235\076\000\061\161\263\310\140\107"
6403 "\136\072\333\072\252\052\157\222\301\231\054\272\060\252\212\017"
6404 "\211\125\302\313\126\367\033\215\266\343\134\347\173\235\176\322"
6405 "\232\211\333\004\060\122\001\177\344\343\012\210\171\051\225\112"
6406 "\250\325\152\336\173\273\074\327\004\340\035\174\132\111\113\004"
6407 "\204\156\327\204\151\332\166\222\071\362\276\372\147\125\176\207"
6408 "\241\154\075\357\130\352\201\036\135\071\210\045\040\207\270\015"
6409 "\057\203\052\011\217\127\035\352\365\026\166\166\032\303\245\250"
6410 "\111\055\351\055\236\203\320\111\000\141\341\300\121\340\267\011"
6411 "\230\067\002\112\345\222\357\071\117\052\030\150\152\046\200\333"
6412 "\116\147\334\202\240\374\342\035\366\354\357\314\004\164\206\001"
6413 "\363\233\117\006\105\322\045\055\223\225\266\162\120\360\340\234"
6414 "\114\235\077\257\132\037\164\215\266\167\077\333\262\336\174\001"
6415 "\073\117\315\304\147\002\244\004\377\150\034\161\366\053\227\112"
6416 "\274\361\267\140\046\200\252\044\123\377\175\345\300\304\000\200"
6417 "\362\324\160\022\023\200\371\125\016\012\313\366\013\046\211\074"
6418 "\152\021\020\360\303\236\031\266\266\152\150\066\333\123\165\232"
6419 "\355\347\154\075\011\022\163\306\256\205\265\010\363\101\073\110"
6420 "\263\164\367\107\033\231\000\323\052\012\262\157\313\200\074\037"
6421 "\100\234\206\040\143\002\220\175\125\155\343\230\002\223\256\034"
6422 "\024\116\064\204\163\156\074\100\307\135\316\343\003\335\033\101"
6423 "\330\156\167\261\275\135\033\226\330\046\013\275\116\077\151\315"
6424 "\304\105\000\034\023\040\152\326\347\150\307\276\170\230\022\307"
6425 "\074\236\153\023\000\234\132\000\111\065\000\167\046\040\163\370"
6426 "\000\202\303\145\343\107\325\345\131\071\210\204\150\024\121\031"
6427 "\177\321\347\340\136\322\013\037\354\206\141\225\332\356\164\172"
6428 "\236\357\027\167\235\176\322\044\026\146\002\044\005\277\065\351"
6429 "\121\010\303\224\034\173\123\115\363\233\000\363\256\001\124\275"
6430 "\003\131\345\145\075\321\260\104\040\247\006\200\200\246\040\356"
6431 "\354\077\036\250\363\252\034\024\006\364\350\301\036\264\356\357"
6432 "\177\317\257\312\313\367\175\214\367\041\250\327\333\330\333\263"
6433 "\113\155\223\005\003\366\376\151\046\116\015\300\071\051\245\001"
6434 "\377\150\314\213\356\115\025\115\341\215\253\371\366\001\170\101"
6435 "\342\252\007\350\140\303\240\233\330\164\021\000\163\244\002\147"
6436 "\033\044\066\330\342\224\276\216\177\274\370\015\062\202\322\174"
6437 "\235\204\025\164\034\236\157\103\327\215\141\377\274\001\354\154"
6438 "\266\203\072\133\117\342\172\255\214\100\006\323\264\152\002\244"
6439 "\005\376\170\314\233\140\220\135\073\225\124\315\147\266\316\265"
6440 "\011\300\253\005\020\253\032\220\043\031\310\133\020\324\062\001"
6441 "\322\170\324\263\003\073\150\046\217\133\014\064\270\105\071\137"
6442 "\063\211\063\076\115\223\015\133\144\167\023\327\054\230\005\140"
6443 "\317\223\146\342\044\200\054\340\147\360\147\004\202\001\212\243"
6444 "\137\306\244\253\002\115\325\004\160\136\220\254\310\034\066\014"
6445 "\316\004\154\172\114\000\053\141\042\256\047\074\131\220\115\130"
6446 "\270\154\330\323\366\316\326\301\277\313\167\020\306\131\255\340"
6447 "\027\341\324\261\263\343\014\341\045\063\001\352\105\065\071\044"
6448 "\011\030\014\070\253\000\051\242\002\171\143\136\125\325\251\125"
6449 "\005\332\327\144\040\277\075\104\075\144\070\376\247\335\166\326"
6450 "\002\260\123\211\371\100\217\337\176\053\176\270\254\327\177\340"
6451 "\005\172\222\165\172\176\342\120\362\175\051\245\330\331\151\214"
6452 "\234\174\363\012\354\171\063\071\354\140\240\146\323\310\004\376"
6453 "\321\230\367\354\077\315\252\100\373\142\002\000\200\304\251\005"
6454 "\140\347\313\207\145\002\002\343\016\055\101\371\365\161\100\035"
6455 "\276\116\037\345\215\217\267\116\317\047\233\174\252\020\267\132"
6456 "\135\324\353\055\253\274\124\114\247\343\301\230\255\047\157\162"
6457 "\330\053\001\111\172\003\004\215\353\250\262\140\223\066\001\046"
6458 "\136\022\354\342\305\213\012\000\315\343\320\200\024\340\003\010"
6459 "\156\013\146\270\030\230\137\020\064\070\306\337\137\046\053\136"
6460 "\011\060\376\313\135\112\053\272\054\030\343\220\121\160\011\257"
6461 "\060\377\205\256\033\270\165\153\327\343\341\217\052\153\005\156"
6462 "\111\254\203\120\302\153\022\327\152\257\004\070\233\325\246\001"
6463 "\077\070\375\043\030\330\210\000\074\337\225\176\376\347\177\136"
6464 "\236\073\015\240\132\255\056\365\373\175\337\005\361\353\001\106"
6465 "\307\001\130\245\231\375\003\054\110\015\017\152\132\031\124\173"
6466 "\064\270\204\027\343\172\356\335\377\047\055\341\025\177\366\147"
6467 "\214\241\321\350\240\331\354\204\144\017\026\353\364\223\277\126"
6468 "\117\076\100\123\207\252\212\251\300\157\217\171\357\367\274\312"
6469 "\300\214\061\264\132\255\045\000\173\163\105\000\375\176\277\312"
6470 "\003\226\177\006\147\021\115\101\306\251\300\026\253\013\201\300"
6471 "\211\352\124\353\165\022\006\015\264\340\362\137\101\125\210\303"
6472 "\264\021\022\263\056\277\177\337\301\300\304\336\136\023\272\156"
6473 "\044\036\300\007\155\235\076\117\011\072\236\073\026\100\307\241"
6474 "\303\132\174\360\173\377\345\304\276\310\262\024\064\116\252\163"
6475 "\107\000\204\020\127\061\020\273\026\200\073\231\307\141\017\005"
6476 "\021\300\320\004\260\354\057\002\101\040\036\037\100\234\146\234"
6477 "\316\033\032\135\302\313\337\156\053\274\374\127\170\276\177\362"
6478 "\326\135\214\061\324\152\055\237\223\257\130\247\307\076\035\313"
6479 "\256\011\340\040\200\200\214\300\270\361\001\056\255\227\215\265"
6480 "\143\273\052\220\123\114\323\314\335\017\060\161\002\060\014\143"
6481 "\331\056\200\350\124\377\171\263\160\170\062\220\255\001\330\261"
6482 "\323\161\122\143\343\265\246\362\203\223\104\070\342\110\300\100"
6483 "\317\332\272\213\214\316\247\323\351\243\136\157\307\164\362\315"
6484 "\266\323\154\077\147\353\111\220\242\054\207\147\004\046\011\016"
6485 "\142\034\047\240\040\010\220\044\311\105\000\223\012\006\232\070"
6486 "\001\210\242\130\365\316\354\101\365\000\151\214\276\200\316\030"
6487 "\000\347\303\342\253\342\311\112\204\007\023\202\167\220\260\020"
6488 "\137\100\174\042\342\151\030\246\111\121\257\267\320\355\016\270"
6489 "\316\251\203\064\133\147\073\336\344\010\321\251\001\070\235\323"
6490 "\111\301\037\064\346\005\121\204\054\313\350\365\172\136\323\271"
6491 "\072\167\004\140\232\346\262\267\026\200\044\111\040\002\277\036"
6492 "\040\367\046\121\066\212\003\260\126\000\310\260\107\033\102\147"
6493 "\352\350\047\021\277\055\266\067\336\040\231\023\056\132\303\260"
6494 "\234\074\135\264\333\275\210\022\141\363\347\064\233\015\277\104"
6495 "\176\367\116\226\211\103\003\030\244\002\176\220\326\313\140\125"
6496 "\274\226\044\211\347\010\234\077\015\300\231\305\144\137\220\246"
6497 "\251\334\107\021\264\012\320\151\033\043\173\337\312\003\020\123"
6498 "\025\371\214\227\361\027\117\335\116\033\121\314\323\022\172\075"
6499 "\035\215\106\173\230\256\033\246\061\024\152\370\054\020\242\253"
6500 "\054\130\306\174\000\136\354\013\343\223\232\031\000\000\040\000"
6501 "\111\104\101\124\001\201\252\252\276\061\072\227\004\300\030\253"
6502 "\072\353\234\003\200\252\305\054\007\066\012\172\361\146\002\332"
6503 "\076\000\026\123\245\117\164\276\241\166\173\134\015\303\135\253"
6504 "\200\237\071\150\030\046\032\215\316\250\002\154\232\052\274\363"
6505 "\340\064\133\064\023\106\222\034\215\123\262\346\003\170\227\001"
6506 "\207\157\313\225\262\157\314\314\245\011\100\010\361\145\002\362"
6507 "\312\201\371\242\372\034\377\066\233\175\007\001\320\204\141\267"
6508 "\131\132\155\045\365\037\170\375\004\301\235\200\132\255\056\272"
6509 "\335\101\354\002\045\007\111\015\237\365\210\104\227\023\260\225"
6510 "\076\037\300\326\172\031\363\217\234\062\247\052\320\134\152\000"
6511 "\224\322\221\017\300\276\040\257\172\343\263\205\174\055\301\014"
6512 "\027\373\132\075\001\170\063\164\226\126\133\044\064\045\070\230"
6513 "\044\370\000\016\312\341\357\365\164\264\132\235\221\272\177\020"
6514 "\234\146\363\002\354\270\046\007\267\054\130\032\223\324\166\046"
6515 "\123\152\025\272\164\210\126\052\361\166\231\137\037\200\313\004"
6516 "\120\103\152\001\170\300\357\164\264\330\076\000\053\202\231\147"
6517 "\002\104\265\332\112\222\053\300\007\063\077\333\057\272\365\266"
6518 "\256\033\150\265\072\320\165\063\361\340\055\242\364\146\353\132"
6519 "\055\063\324\212\046\155\046\314\007\360\216\155\060\153\354\213"
6520 "\160\307\305\224\070\125\201\346\326\007\340\265\261\171\032\000"
6521 "\245\214\013\176\277\006\140\071\001\051\015\263\377\375\353\364"
6522 "\356\104\236\170\276\003\216\015\026\163\320\270\355\374\146\263"
6523 "\073\212\342\233\324\140\057\146\353\351\232\034\166\112\160\334"
6524 "\336\000\076\360\063\257\366\353\055\233\257\162\174\122\254\072"
6525 "\217\004\340\063\001\224\141\055\000\347\162\275\155\002\360\074"
6526 "\252\356\142\040\200\050\206\055\301\105\325\001\140\201\001\070"
6527 "\301\124\036\024\030\024\274\346\157\055\135\366\320\357\353\011"
6528 "\072\377\034\254\106\233\363\174\255\243\232\000\061\172\003\204"
6529 "\201\337\347\377\032\276\325\074\065\001\030\143\023\351\017\270"
6530 "\057\116\100\105\121\340\135\015\243\141\075\001\233\272\353\306"
6531 "\373\355\165\277\012\157\255\074\304\133\227\217\052\341\025\026"
6532 "\341\307\323\026\072\235\236\303\301\127\070\315\026\321\344\260"
6533 "\226\002\211\313\074\215\253\362\163\375\137\236\317\235\053\145"
6534 "\163\155\002\200\123\311\104\226\025\177\122\104\314\236\000\222"
6535 "\204\121\312\147\230\155\317\130\170\013\260\344\203\063\272\222"
6536 "\360\140\240\243\323\351\305\160\360\035\334\152\072\213\162\255"
6537 "\266\043\260\225\244\071\110\300\004\303\063\147\247\125\025\150"
6538 "\052\046\200\227\311\374\325\200\130\240\115\357\047\000\346\013"
6539 "\005\316\243\165\127\370\114\037\254\111\060\006\364\373\003\164"
6540 "\273\003\307\065\220\251\015\366\142\235\176\177\256\325\216\005"
6541 "\350\164\114\120\072\056\123\037\107\345\347\152\000\236\015\371"
6542 "\053\145\163\254\001\270\313\201\111\276\273\022\136\013\100\167"
6543 "\335\170\336\315\216\126\351\371\271\375\356\375\370\340\367\067"
6544 "\026\261\216\075\030\350\103\340\323\200\242\040\205\323\154\121"
6545 "\111\314\236\303\254\230\016\003\325\252\234\012\374\343\261\357"
6546 "\061\223\125\156\125\240\352\074\022\200\317\007\040\112\262\117"
6547 "\053\212\337\026\314\326\000\306\263\265\023\270\316\207\345\116"
6548 "\266\141\036\363\040\274\017\340\330\363\357\137\152\354\367\015"
6549 "\364\172\372\050\175\171\072\113\172\305\072\375\054\231\034\336"
6550 "\232\000\066\001\304\121\371\175\343\156\024\016\354\366\223\161"
6551 "\264\333\371\322\000\056\136\274\050\061\306\112\136\220\311\262"
6552 "\344\137\301\017\063\001\232\003\027\370\275\353\354\156\220\046"
6553 "\133\367\017\166\324\371\075\377\316\031\277\160\232\035\154\022"
6554 "\263\010\200\271\046\250\064\340\267\047\077\357\346\212\314\255"
6555 "\012\124\176\372\351\247\305\057\175\351\113\346\134\020\000\200"
6556 "\045\347\335\267\057\110\344\025\004\015\322\000\034\135\201\354"
6557 "\025\000\177\071\260\350\374\374\140\207\140\060\111\020\102\140"
6558 "\232\126\107\335\301\100\037\331\370\223\135\322\053\326\351\347"
6559 "\341\132\335\065\001\006\211\124\176\377\330\167\023\207\125\027"
6560 "\120\346\151\247\144\210\251\372\134\020\200\044\111\313\246\151"
6561 "\372\212\201\270\312\201\261\020\023\300\223\014\144\325\002\010"
6562 "\036\134\174\317\277\333\037\340\175\370\101\225\172\014\203\242"
6563 "\337\327\241\353\346\324\226\363\026\331\151\266\150\044\346\062"
6564 "\001\032\331\302\201\255\174\000\367\316\322\260\146\206\127\333"
6565 "\034\126\005\232\017\002\240\224\126\275\166\365\250\032\120\130"
6566 "\060\204\347\146\066\233\343\132\000\266\372\357\335\176\374\360"
6567 "\111\300\154\316\367\005\270\325\175\206\176\137\307\140\140\270"
6568 "\010\051\174\140\025\116\263\203\150\162\130\065\001\314\361\004"
6569 "\225\065\027\300\043\242\050\102\222\044\014\006\003\227\006\113"
6570 "\051\315\325\021\070\151\002\340\056\001\362\042\357\030\243\134"
6571 "\026\265\332\202\215\115\000\167\131\147\170\300\034\356\013\340"
6572 "\233\010\200\151\232\030\014\234\263\075\071\100\300\056\114\216"
6573 "\170\327\113\074\004\340\060\001\022\206\003\273\374\005\214\037"
6574 "\007\040\015\213\202\014\006\203\211\072\002\047\112\000\336\202"
6575 "\240\143\023\300\037\217\117\031\343\202\337\064\031\172\075\163"
6576 "\310\212\121\340\014\217\374\163\332\373\246\111\075\240\037\037"
6577 "\243\160\232\025\046\107\264\171\073\176\237\044\034\330\013\176"
6578 "\237\371\073\374\114\224\044\310\262\314\363\135\315\017\001\230"
6579 "\246\131\365\016\010\253\034\030\247\244\267\263\162\260\203\011"
6580 "\132\055\175\164\023\044\211\104\372\000\202\076\267\332\154\123"
6581 "\350\272\011\135\067\206\321\172\044\365\240\055\234\146\007\333"
6582 "\344\360\231\000\111\200\357\121\126\031\145\356\304\230\241\011"
6583 "\340\165\226\017\253\002\315\217\011\040\010\302\262\267\137\237"
6584 "\252\362\313\201\215\266\363\145\002\272\243\000\155\015\200\237"
6585 "\237\357\167\326\121\152\165\323\321\165\323\343\120\041\205\323"
6586 "\254\060\071\122\137\253\263\175\137\326\174\000\136\040\220\100"
6587 "\010\064\155\362\135\202\047\356\003\360\226\003\163\136\224\207"
6588 "\331\370\231\200\276\050\100\041\160\326\267\125\174\323\244\060"
6589 "\115\023\206\141\302\064\251\243\334\066\131\170\140\027\046\307"
6590 "\164\256\325\136\221\142\314\235\256\036\107\345\347\216\177\370"
6591 "\023\325\113\245\362\174\233\000\000\252\376\114\100\325\007\334"
6592 "\320\114\300\226\356\263\273\274\113\172\224\322\021\330\115\223"
6593 "\306\054\362\131\070\315\246\351\064\133\264\153\045\304\032\217"
6594 "\272\316\357\015\020\027\374\256\031\336\163\242\132\111\343\155"
6595 "\127\235\047\002\130\366\136\244\246\251\276\004\234\360\176\000"
6596 "\376\114\100\112\031\114\223\007\170\377\122\140\061\203\025\046"
6597 "\307\244\256\125\222\010\164\235\105\067\007\211\123\036\234\122"
6598 "\020\217\315\137\056\225\346\333\004\160\326\002\340\327\003\264"
6599 "\277\213\233\010\144\315\376\235\116\337\023\363\137\254\323\027"
6600 "\046\307\364\237\255\054\023\164\273\314\227\022\234\046\052\220"
6601 "\062\346\152\325\155\125\316\322\274\340\167\225\331\237\171\002"
6602 "\140\214\371\213\201\214\262\234\142\366\004\164\124\003\262\064"
6603 "\200\142\006\053\110\154\066\114\016\073\045\270\351\350\016\224"
6604 "\066\044\330\131\024\304\076\206\126\322\174\011\152\363\106\000"
6605 "\125\257\012\143\145\071\061\227\016\020\232\011\330\160\152\000"
6606 "\002\202\122\171\213\031\254\060\071\362\175\266\321\307\263\123"
6607 "\202\133\055\075\165\042\320\170\022\144\136\303\141\344\060\237"
6608 "\144\135\300\251\370\000\134\265\000\354\162\140\036\365\207\143"
6609 "\104\001\000\332\155\303\165\303\343\076\324\142\006\053\114\216"
6610 "\111\037\317\156\021\146\030\024\275\236\011\115\023\123\201\337"
6611 "\302\200\351\333\125\323\264\371\136\005\340\125\060\121\174\325"
6612 "\200\070\261\320\256\074\000\167\101\320\142\006\053\114\216\131"
6613 "\271\167\316\241\334\154\350\320\124\061\035\116\300\334\351\360"
6614 "\266\277\114\121\274\170\232\057\002\200\247\202\211\125\013\100"
6615 "\346\072\100\202\324\047\347\052\200\263\051\343\301\234\301\016"
6616 "\266\032\076\153\367\116\226\005\307\104\245\343\310\021\055\025"
6617 "\370\141\147\261\172\073\150\225\374\205\101\221\163\125\240\351"
6618 "\233\000\074\015\040\044\021\310\156\275\144\255\273\222\005\035"
6619 "\350\007\311\344\230\257\173\027\066\116\234\004\220\064\037\300"
6620 "\011\176\153\022\244\276\071\120\221\047\137\025\150\342\004\340"
6621 "\265\141\134\004\140\057\021\122\176\042\020\000\264\133\356\142"
6622 "\040\363\003\354\302\151\266\350\367\316\331\045\270\325\064\222"
6623 "\001\337\063\341\331\321\200\056\163\131\221\047\336\037\160\142"
6624 "\004\160\361\342\105\101\327\365\045\257\011\040\331\213\371\056"
6625 "\023\200\362\157\220\303\007\140\047\002\035\314\331\172\277\114"
6626 "\216\342\336\205\211\242\210\211\065\000\347\254\357\372\234\263"
6627 "\024\156\307\001\170\314\000\273\312\026\233\151\002\350\164\072"
6628 "\025\331\141\264\017\073\233\100\344\146\002\062\056\370\255\033"
6629 "\153\304\326\000\012\247\331\274\001\173\276\315\065\247\117\052"
6630 "\166\102\120\104\373\071\267\266\054\361\252\002\011\077\370\203"
6631 "\077\130\171\356\271\347\132\063\115\000\262\054\373\142\000\044"
6632 "\111\002\021\005\256\017\040\052\027\300\016\003\056\324\360\142"
6633 "\266\236\025\223\303\115\000\106\152\360\133\132\260\247\321\054"
6634 "\263\360\042\212\342\210\000\154\034\125\253\325\052\200\331\046"
6635 "\000\147\133\360\261\315\044\101\040\202\327\374\201\031\026\010"
6636 "\064\052\007\106\366\171\160\026\116\263\042\254\332\113\000\202"
6637 "\157\234\046\005\276\163\022\364\232\306\166\115\000\135\327\135"
6638 "\032\302\140\060\310\315\017\060\061\002\340\065\005\265\212\201"
6639 "\020\117\137\100\306\265\177\254\013\065\061\030\230\303\233\275"
6640 "\150\255\266\366\177\006\133\004\065\174\077\115\016\105\041\241"
6641 "\076\200\270\340\347\231\000\014\200\050\133\165\001\275\337\345"
6642 "\331\044\164\142\004\040\010\002\247\043\220\154\151\000\236\352"
6643 "\047\101\045\273\335\155\301\203\113\201\025\116\263\331\000\366"
6644 "\101\063\071\024\105\010\064\001\222\200\037\260\374\140\136\012"
6645 "\220\004\311\162\232\373\211\242\072\363\004\300\133\256\020\105"
6646 "\161\130\320\043\136\133\260\226\303\261\042\313\044\323\000\053"
6647 "\234\146\105\214\103\336\327\112\210\325\252\336\064\231\277\071"
6648 "\110\102\037\075\327\007\040\217\011\140\122\031\201\223\214\003"
6649 "\360\325\002\120\024\305\367\260\130\230\006\320\164\152\000\223"
6650 "\007\166\341\064\053\256\065\351\365\312\262\105\000\243\346\040"
6651 "\051\027\347\230\135\026\314\161\010\101\020\240\050\376\016\101"
6652 "\316\152\333\063\113\000\204\220\252\135\352\313\026\115\323\002"
6653 "\056\234\353\075\101\323\225\012\234\136\003\050\234\146\205\311"
6654 "\061\251\153\225\145\202\136\017\150\265\314\114\053\363\243\174"
6655 "\000\317\111\250\234\022\172\163\143\002\170\231\153\224\336\350"
6656 "\261\175\170\340\007\306\121\200\366\215\056\146\260\302\344\230"
6657 "\265\147\153\217\313\070\161\000\141\340\007\033\026\005\361\234"
6658 "\254\263\052\320\102\230\000\376\124\140\177\115\364\221\011\340"
6659 "\040\200\255\055\023\375\076\233\340\351\146\031\354\223\375\315"
6660 "\374\007\372\376\234\163\372\363\233\374\205\245\045\261\301\200"
6661 "\371\046\253\104\300\167\232\375\214\002\356\272\100\320\264\122"
6662 "\044\266\146\236\000\106\345\300\174\352\014\013\114\004\002\200"
6663 "\116\147\334\004\365\352\125\023\127\257\232\050\244\220\131\224"
6664 "\156\227\202\122\066\154\172\023\177\326\367\116\222\360\024\026"
6665 "\051\225\265\211\152\000\302\004\115\000\337\062\240\125\017\220"
6666 "\301\331\236\233\327\021\310\226\207\036\136\207\232\062\307\272"
6667 "\220\102\246\051\117\074\171\044\023\370\201\141\151\074\067\074"
6668 "\202\064\200\371\133\006\264\115\000\257\255\037\024\004\304\300"
6669 "\160\357\331\065\174\371\153\177\011\273\173\375\240\073\031\172"
6670 "\233\143\074\011\144\072\002\213\361\240\063\234\136\344\061\262"
6671 "\354\317\222\035\045\313\376\054\363\357\043\163\311\055\226\103"
6672 "\356\114\320\022\237\044\022\334\175\246\232\172\177\257\246\354"
6673 "\274\314\200\076\032\363\143\002\070\057\112\121\224\000\265\047"
6674 "\370\101\155\154\126\260\261\131\211\075\200\130\174\144\145\033"
6675 "\054\131\366\147\323\001\157\036\340\147\231\301\317\362\003\077"
6676 "\313\027\270\211\217\061\341\375\171\051\301\232\252\316\255\017"
6677 "\240\032\132\013\300\251\366\344\004\336\105\001\177\126\315\041"
6678 "\017\315\203\173\234\054\263\166\326\231\173\301\301\317\233\014"
6679 "\001\100\325\264\371\064\001\300\131\005\160\022\000\363\134\364"
6680 "\302\203\277\230\365\367\117\345\237\003\360\003\336\210\130\273"
6681 "\217\206\062\237\032\200\323\116\261\101\056\313\062\167\031\060"
6682 "\013\360\362\000\176\036\063\367\254\202\377\037\376\352\077\302"
6683 "\035\247\356\300\221\043\207\361\340\303\017\340\153\137\376\217"
6684 "\220\044\011\347\316\337\007\111\222\360\307\317\175\035\077\367"
6685 "\251\237\305\277\371\127\377\026\047\117\236\300\162\165\031\365"
6686 "\132\035\153\353\153\170\374\311\017\037\130\360\357\207\346\341"
6687 "\133\005\200\267\221\116\376\004\060\261\125\000\333\004\010\257"
6688 "\007\310\102\173\002\114\153\326\317\002\376\310\375\367\171\346"
6689 "\027\104\021\167\237\071\215\017\076\270\212\077\373\326\267\361"
6690 "\370\223\217\341\307\377\372\137\305\037\077\367\165\000\100\251"
6691 "\244\341\073\337\376\056\000\340\207\376\302\047\360\342\013\057"
6692 "\341\372\365\033\170\354\211\107\367\337\336\317\152\062\144\001"
6693 "\357\076\354\317\063\001\174\216\363\071\061\001\010\143\314\125"
6694 "\016\214\020\062\316\154\142\316\256\100\154\137\301\277\350\052"
6695 "\277\050\010\070\166\154\023\217\374\300\303\370\346\067\276\205"
6696 "\233\067\157\242\124\322\260\262\142\215\241\373\316\235\305\233"
6697 "\127\336\262\006\203\054\341\314\075\167\143\145\165\005\004\044"
6698 "\333\071\024\366\176\032\255\331\167\376\001\004\260\064\323\032"
6699 "\300\257\374\312\257\224\001\210\316\013\023\004\301\312\004\364"
6700 "\027\071\014\036\300\054\043\160\263\072\353\026\300\336\377\350"
6701 "\307\076\202\323\167\337\205\112\245\202\117\374\320\123\020\105"
6702 "\021\257\277\376\006\176\342\047\237\306\306\306\355\070\171\307"
6703 "\011\374\360\217\374\167\170\360\241\013\000\200\123\167\336\201"
6704 "\215\215\243\123\237\365\263\200\067\353\376\263\000\176\140\270"
6705 "\044\316\334\241\000\222\344\117\011\006\040\375\350\217\376\150"
6706 "\171\146\065\000\147\244\222\015\160\121\024\041\004\224\003\363"
6707 "\021\102\141\357\347\266\377\123\237\370\230\353\031\174\342\223"
6708 "\117\215\365\310\325\261\046\171\374\304\061\060\306\160\372\364"
6709 "\135\341\304\134\330\373\271\357\077\052\234\303\271\243\262\054"
6710 "\163\163\043\206\030\353\314\252\011\340\213\001\240\224\016\153"
6711 "\001\370\357\023\245\024\355\126\033\272\141\000\001\046\301\324"
6712 "\124\376\011\022\107\036\344\061\261\045\276\304\373\043\077\360"
6713 "\317\261\312\217\314\373\003\242\044\242\122\251\100\226\375\352"
6714 "\276\044\211\134\062\356\367\373\313\000\156\316\044\001\120\112"
6715 "\253\116\326\142\214\215\010\200\171\236\230\040\210\250\355\325"
6716 "\320\357\367\263\217\353\005\267\367\261\040\113\174\271\222\161"
6717 "\046\360\357\067\171\014\145\000\364\173\175\034\077\161\302\167"
6718 "\103\105\111\202\151\162\163\140\162\161\004\116\312\004\220\274"
6719 "\032\200\141\030\303\013\361\004\007\111\062\132\255\026\030\233"
6720 "\014\160\363\231\271\027\145\175\037\371\200\156\316\125\176\314"
6721 "\200\346\341\025\035\260\034\257\336\152\131\324\014\062\307\244"
6722 "\231\045\000\306\130\223\367\171\257\327\105\251\344\216\154\122"
6723 "\125\015\204\020\364\172\275\264\310\230\340\254\237\017\242\146"
6724 "\041\236\077\073\170\363\000\077\366\035\170\271\074\213\011\144"
6725 "\245\113\242\204\122\251\354\301\021\320\151\167\203\046\331\372"
6726 "\314\022\200\151\232\173\242\050\272\114\000\000\270\171\363\046"
6727 "\326\326\326\134\043\102\024\104\334\175\372\036\274\370\342\013"
6728 "\060\115\143\076\124\376\074\006\033\313\174\201\351\241\273\237"
6729 "\041\275\373\250\362\043\263\227\037\023\001\277\040\012\070\173"
6730 "\357\131\010\002\361\151\302\357\277\377\136\220\231\275\227\213"
6731 "\266\216\311\010\371\345\137\376\345\253\000\066\234\352\313\351"
6732 "\273\357\302\137\373\361\247\055\257\046\363\153\007\273\265\135"
6733 "\364\372\335\302\336\307\042\205\364\346\110\034\163\274\304\027"
6734 "\060\213\103\125\125\254\256\254\102\222\370\115\163\377\331\077"
6735 "\375\035\274\366\352\353\336\257\076\370\352\127\277\172\142\146"
6736 "\065\000\153\322\147\137\001\360\163\316\017\337\274\362\026\256"
6737 "\137\273\216\315\315\115\337\016\252\246\141\343\350\346\310\141"
6738 "\030\070\214\042\307\003\313\250\176\206\300\177\142\340\145\021"
6739 "\063\015\113\101\142\234\015\022\114\242\171\230\014\054\203\275"
6740 "\315\022\114\267\054\106\132\070\113\311\104\054\323\371\207\355"
6741 "\110\206\365\003\110\340\057\277\371\346\133\170\375\265\067\170"
6742 "\304\361\345\334\114\217\011\021\000\010\041\137\142\214\375\234"
6743 "\327\014\370\367\377\356\017\360\163\237\372\133\050\071\012\035"
6744 "\070\007\033\041\004\242\050\306\034\363\054\212\205\222\060\126"
6745 "\046\177\122\036\332\103\274\175\131\214\303\261\114\263\157\242"
6746 "\131\227\163\337\130\014\237\001\313\025\170\054\306\251\245\071"
6747 "\237\361\254\317\110\372\363\210\107\124\356\375\033\315\006\276"
6748 "\370\173\277\317\035\227\224\322\077\310\013\247\023\053\267\363"
6749 "\374\363\317\277\371\304\023\117\374\010\143\354\270\133\325\357"
6750 "\341\355\267\337\301\075\367\234\201\254\050\261\106\305\244\100"
6751 "\077\036\143\054\023\350\263\250\354\361\126\050\130\334\253\317"
6752 "\244\162\307\006\135\040\350\323\150\154\151\317\203\105\074\323"
6753 "\254\044\304\300\330\164\101\157\313\366\366\066\376\371\077\375"
6754 "\277\260\263\263\313\333\341\317\276\366\265\257\375\375\231\047"
6755 "\000\000\170\374\361\307\257\000\370\031\133\317\261\301\331\152"
6756 "\265\160\351\322\313\130\133\133\303\362\362\062\044\121\234\072"
6757 "\350\023\073\247\322\370\014\062\105\064\262\164\052\173\326\070"
6758 "\364\324\240\347\243\213\245\041\240\300\035\243\357\163\230\351"
6759 "\023\357\174\130\014\147\137\376\240\007\200\166\253\215\077\375"
6760 "\306\363\370\275\377\347\213\250\327\033\274\115\050\200\237\274"
6761 "\162\345\312\173\271\151\352\230\260\074\363\314\063\277\306\030"
6762 "\373\137\203\006\334\321\243\107\161\376\374\375\070\162\344\310"
6763 "\050\122\060\216\015\312\270\266\035\307\346\363\126\131\141\234"
6764 "\331\064\150\160\063\346\173\037\246\352\262\330\171\016\314\365"
6765 "\104\235\237\217\276\241\041\360\362\134\023\367\167\042\256\323"
6766 "\175\175\054\204\203\170\225\153\303\207\264\057\301\053\344\031"
6767 "\104\335\157\026\245\336\073\217\315\050\037\142\214\005\376\226"
6768 "\165\253\131\064\170\143\334\253\260\261\033\146\216\364\373\175"
6769 "\134\275\172\015\227\136\272\204\166\273\035\006\247\277\367\325"
6770 "\257\176\365\263\171\342\123\232\064\001\254\254\254\374\152\275"
6771 "\136\077\315\030\173\232\067\140\157\334\270\201\353\327\257\103"
6772 "\121\024\254\256\256\102\323\064\136\362\003\167\220\063\226\014"
6773 "\174\141\333\007\155\023\066\063\006\035\057\352\267\343\236\163"
6774 "\232\153\212\232\311\203\266\011\373\054\316\161\171\307\241\224"
6775 "\306\332\076\315\165\173\217\235\346\232\222\074\323\274\175\110"
6776 "\214\061\014\006\003\364\373\175\064\032\215\070\373\177\041\157"
6777 "\360\117\105\003\000\200\247\237\176\132\334\334\334\374\077\000"
6778 "\374\162\126\020\344\005\366\111\354\223\027\320\213\153\232\215"
6779 "\153\232\041\371\354\322\322\322\337\377\322\227\276\144\316\045"
6780 "\001\330\362\231\317\174\346\257\021\102\376\117\000\047\246\365"
6781 "\360\147\171\360\116\212\360\212\153\312\176\115\063\042\357\021"
6782 "\102\376\227\257\174\345\053\377\156\122\077\100\246\175\105\077"
6783 "\373\263\077\253\255\254\254\174\232\122\372\077\023\102\356\236"
6784 "\324\303\237\265\301\073\113\263\135\161\115\063\017\376\067\030"
6785 "\143\277\323\353\365\176\347\271\347\236\353\115\362\207\310\176"
6786 "\136\345\247\077\375\351\173\010\041\377\075\041\344\056\000\107"
6787 "\010\041\022\317\156\344\074\110\342\371\073\172\017\200\070\216"
6788 "\341\332\316\363\336\265\335\360\075\167\073\347\147\316\337\032"
6789 "\236\027\157\037\327\157\073\354\116\342\271\036\337\276\204\220"
6790 "\052\021\310\072\030\133\045\202\120\305\260\150\213\252\252\050"
6791 "\225\112\211\154\321\064\166\173\232\175\342\354\147\030\072\032"
6792 "\215\346\320\174\247\165\312\150\335\324\315\135\112\151\223\020"
6793 "\302\170\336\061\373\163\112\051\367\075\147\037\146\357\147\077"
6794 "\133\357\173\317\076\314\373\133\336\343\160\176\207\267\117\340"
6795 "\147\236\143\004\336\036\000\133\224\322\067\045\111\372\352\037"
6796 "\376\341\037\276\061\055\014\022\314\227\020\307\113\310\370\177"
6797 "\234\317\170\337\307\371\056\366\113\222\044\361\236\263\367\074"
6798 "\160\370\310\341\217\126\312\245\217\013\202\170\073\357\302\067"
6799 "\067\067\160\354\330\061\314\253\064\032\015\274\366\332\353\176"
6800 "\147\236\111\157\264\333\235\257\157\157\155\177\343\365\327\137"
6801 "\277\144\030\306\260\117\166\254\027\315\270\035\215\330\046\316"
6802 "\147\111\376\237\111\100\035\004\360\047\335\106\110\010\372\304"
6803 "\144\160\354\344\261\215\073\117\335\371\227\227\227\227\376\222"
6804 "\040\010\207\243\056\376\330\261\015\034\077\176\174\342\067\171"
6805 "\122\032\161\243\321\300\253\257\276\026\272\215\151\322\255\166"
6806 "\253\371\225\067\257\274\375\325\153\327\256\335\110\011\366\250"
6807 "\155\151\102\042\310\112\002\336\357\012\002\110\051\102\202\231"
6808 "\072\313\377\151\064\205\330\337\135\170\360\302\243\107\157\277"
6809 "\355\307\145\105\171\224\044\350\203\175\354\330\046\116\234\070"
6810 "\216\171\022\047\231\324\033\015\274\372\375\127\343\232\027\114"
6811 "\037\014\276\175\343\346\255\177\175\351\305\113\377\065\307\131"
6812 "\076\055\150\151\216\004\060\123\044\040\315\311\130\042\123\172"
6813 "\345\141\066\370\276\223\044\111\174\350\103\017\375\205\103\207"
6814 "\326\177\102\222\244\323\111\057\136\126\144\254\256\254\202\020"
6815 "\141\256\010\300\111\157\242\040\044\330\217\020\105\125\077\174"
6816 "\362\344\211\017\157\156\156\134\331\336\336\371\127\337\371\366"
6817 "\167\376\177\016\260\274\023\004\357\073\041\144\173\032\360\077"
6818 "\211\230\050\223\374\357\375\216\315\032\260\346\125\365\317\113"
6819 "\043\020\162\066\043\134\237\237\177\340\374\043\307\216\155\176"
6820 "\132\222\244\063\011\000\200\043\107\016\343\304\311\023\330\330"
6821 "\330\300\341\303\207\120\333\335\303\326\326\166\176\263\363\224"
6822 "\037\142\245\134\206\132\322\160\375\332\165\274\367\336\373\330"
6823 "\336\336\116\344\201\067\164\343\265\253\037\174\360\317\137\176"
6824 "\371\362\367\162\232\345\243\266\111\253\021\304\375\256\040\200"
6825 "\024\252\277\060\001\102\020\060\001\247\342\261\223\307\066\316"
6826 "\235\075\373\214\242\252\117\306\271\110\121\024\261\261\161\024"
6827 "\047\357\070\211\223\047\117\242\134\166\173\374\167\167\166\261"
6828 "\275\275\075\223\017\050\016\216\313\225\262\313\204\351\264\073"
6829 "\170\357\375\367\360\316\073\357\343\306\365\353\261\242\006\001"
6830 "\240\337\353\375\351\367\057\277\366\233\127\257\136\275\076\141"
6831 "\247\035\315\031\360\063\151\012\314\072\001\144\001\172\122\320"
6832 "\347\346\107\170\354\211\107\377\312\241\103\207\177\221\020\122"
6833 "\211\272\300\303\207\017\343\314\231\323\270\353\364\135\101\155"
6834 "\240\000\000\173\273\273\330\336\336\231\333\125\200\162\271\214"
6835 "\143\307\371\253\030\375\176\037\157\276\371\026\256\274\161\045"
6836 "\326\065\062\312\332\333\133\133\277\371\347\177\376\137\277\226"
6837 "\263\275\036\207\000\322\000\076\150\237\202\000\122\316\376\151"
6838 "\110\200\267\117\256\032\305\312\112\245\374\350\207\037\373\337"
6839 "\124\115\173\052\112\305\277\363\316\123\270\360\300\005\034\072"
6840 "\264\036\353\106\354\355\356\005\245\207\316\205\224\312\045\034"
6841 "\073\266\031\271\335\316\366\056\136\172\351\045\274\375\366\073"
6842 "\221\333\366\272\275\077\372\326\363\177\366\153\355\166\273\223"
6843 "\223\103\217\367\135\126\300\107\375\176\101\000\051\147\377\254"
6844 "\044\040\040\107\063\142\163\163\363\266\013\017\235\377\254\044"
6845 "\006\333\372\202\040\340\314\231\273\361\300\003\347\261\134\115"
6846 "\126\325\271\266\127\303\356\356\376\023\100\332\145\302\122\271"
6847 "\204\315\315\215\330\333\327\353\015\134\172\351\022\256\134\171"
6848 "\063\324\074\060\164\343\265\027\136\172\361\357\335\274\166\163"
6849 "\073\343\214\315\373\056\117\360\317\244\057\140\326\011\100\310"
6850 "\001\340\111\201\237\230\020\116\235\072\165\362\276\373\317\376"
6851 "\266\040\010\107\202\056\346\330\261\115\074\366\370\207\261\272"
6852 "\272\232\352\146\324\367\152\330\335\333\303\274\112\251\244\341"
6853 "\350\306\106\342\375\166\367\366\360\347\337\372\163\134\273\166"
6854 "\075\160\033\323\244\267\136\271\374\312\147\336\177\347\375\017"
6855 "\062\330\344\121\333\321\011\021\301\276\212\070\303\340\047\063"
6856 "\110\002\076\102\070\162\344\310\332\003\017\075\360\333\242\050"
6857 "\160\107\267\252\052\370\330\307\077\212\107\037\375\001\150\232"
6858 "\226\372\206\364\373\175\364\172\175\020\102\042\136\210\261\315"
6859 "\364\137\222\054\143\151\151\051\005\161\224\160\367\231\273\261"
6860 "\134\135\306\365\153\067\140\122\223\243\131\221\312\341\303\207"
6861 "\037\253\355\325\377\163\247\323\351\005\054\166\260\230\213\042"
6862 "\336\367\054\346\166\151\337\027\004\220\121\375\117\363\076\063"
6863 "\360\001\020\115\323\224\307\077\362\330\263\222\044\335\355\265"
6864 "\361\011\041\330\334\334\300\137\374\213\077\214\333\156\073\062"
6865 "\372\234\061\206\004\361\077\016\002\260\162\307\247\012\134\344"
6866 "\107\046\162\012\002\260\357\025\143\014\353\353\153\070\175\372"
6867 "\064\166\166\167\321\156\267\175\367\120\020\204\225\333\217\336"
6868 "\176\376\352\007\127\377\223\043\234\070\117\200\056\044\021\314"
6869 "\062\001\314\042\370\135\357\237\374\350\023\237\052\225\112\077"
6870 "\354\004\276\050\210\040\204\340\301\207\037\300\023\117\074\016"
6871 "\131\226\135\353\335\151\300\017\000\203\176\037\203\151\023\100"
6872 "\236\032\200\044\241\262\124\111\066\010\206\340\147\324\052\032"
6873 "\042\313\022\116\237\276\013\202\040\340\326\315\055\010\104\160"
6874 "\101\110\024\205\333\017\035\076\104\337\173\367\275\357\345\014"
6875 "\120\266\250\044\040\314\060\001\114\362\175\226\375\011\000\162"
6876 "\307\035\167\154\056\055\055\375\204\363\200\222\044\102\020\011"
6877 "\356\077\177\037\316\237\277\177\124\342\234\061\313\001\230\026"
6878 "\374\143\255\102\160\274\346\214\004\004\222\372\272\355\256\322"
6879 "\326\275\144\070\177\376\176\234\273\377\136\010\042\201\044\273"
6880 "\347\260\152\165\371\257\037\077\176\374\350\214\215\231\231\365"
6881 "\267\315\127\154\351\154\200\037\000\160\327\231\273\376\046\041"
6882 "\104\165\172\370\005\101\304\311\073\356\300\205\013\027\100\115"
6883 "\012\152\132\375\336\105\061\237\333\354\006\225\220\343\153\072"
6884 "\044\220\151\240\012\326\154\157\337\327\007\036\170\020\047\116"
6885 "\234\204\040\210\020\004\321\171\217\264\063\147\317\374\114\316"
6886 "\023\107\336\140\237\031\142\220\346\024\334\171\035\043\325\303"
6887 "\134\132\132\052\225\264\322\047\335\263\277\204\245\245\045\174"
6888 "\350\221\207\141\072\212\123\312\222\234\171\360\217\300\057\220"
6889 "\051\334\362\214\022\260\116\110\062\376\206\335\057\102\037\266"
6890 "\217\003\200\107\036\175\030\265\132\015\355\126\033\375\301\330"
6891 "\071\130\322\264\037\132\132\132\372\315\126\253\325\165\250\330"
6892 "\044\341\173\336\115\142\051\157\056\313\170\214\102\003\310\161"
6893 "\024\223\254\307\277\357\376\373\076\106\010\134\261\272\242\044"
6894 "\342\334\375\367\201\200\270\146\177\101\310\153\366\007\004\102"
6895 "\146\377\045\010\334\127\036\344\065\062\005\206\367\227\100\300"
6896 "\175\347\356\033\175\356\040\213\312\275\367\335\373\144\136\317"
6897 "\173\102\063\370\114\230\004\322\001\001\175\256\307\057\227\313"
6898 "\147\175\237\225\064\334\166\333\021\060\146\216\146\054\105\121"
6899 "\041\211\222\257\114\064\277\375\131\304\203\222\144\150\132\051"
6900 "\207\113\332\237\011\210\127\351\071\355\003\261\357\061\000\334"
6901 "\176\364\010\112\145\015\335\156\327\243\245\125\356\003\360\237"
6902 "\163\034\007\014\013\050\363\116\000\154\302\044\340\074\376\350"
6903 "\275\044\371\253\366\254\256\256\203\061\300\064\231\153\163\131"
6904 "\221\271\175\052\114\323\204\141\350\261\063\342\124\115\205\252"
6905 "\251\130\164\041\204\130\336\175\327\375\162\226\032\147\216\173"
6906 "\154\141\163\165\165\015\273\073\173\136\302\071\232\043\343\261"
6907 "\224\337\025\004\060\105\120\163\301\232\141\273\100\021\005\321"
6908 "\027\300\257\252\062\250\047\110\245\325\152\141\145\145\005\042"
6909 "\247\363\021\030\003\143\052\272\275\056\014\303\300\101\027\073"
6910 "\126\140\354\320\143\076\327\302\140\320\207\256\017\174\332\223"
6911 "\242\050\261\236\121\014\000\207\055\317\345\261\164\067\163\301"
6912 "\100\263\256\001\004\201\065\011\160\263\022\203\357\075\145\146"
6913 "\035\160\267\163\356\365\007\060\075\035\161\114\152\140\157\157"
6914 "\017\107\157\077\072\354\004\353\177\372\212\252\102\037\014\320"
6915 "\351\164\140\230\306\201\004\276\242\250\120\071\040\166\112\267"
6916 "\327\105\247\323\201\156\370\043\001\007\375\276\357\063\112\315"
6917 "\072\322\257\275\247\001\352\314\107\375\315\023\001\044\001\173"
6918 "\154\340\146\330\307\365\336\320\351\015\157\346\356\366\366\266"
6919 "\117\003\000\200\132\275\016\105\121\160\333\221\043\020\105\376"
6920 "\355\126\144\005\225\312\022\172\375\036\332\355\026\006\203\301"
6921 "\302\003\137\020\004\224\112\045\150\252\066\132\045\341\165\171"
6922 "\143\140\150\265\232\350\166\273\150\066\133\034\177\012\270\205"
6923 "\122\014\323\274\236\020\234\054\341\147\101\340\236\253\100\240"
6924 "\131\326\000\170\000\314\004\134\317\061\322\056\017\221\136\277"
6925 "\163\245\262\124\166\235\154\243\336\100\273\331\104\271\122\361"
6926 "\134\004\305\255\133\067\101\251\211\215\243\033\320\324\122\240"
6927 "\175\053\313\062\226\227\226\061\030\014\320\152\065\321\356\264"
6928 "\147\271\151\105\052\121\125\025\345\122\045\126\136\204\151\232"
6929 "\330\253\355\241\333\353\140\167\157\227\353\070\155\065\133\150"
6930 "\066\233\176\215\241\323\273\002\167\054\177\334\367\131\300\135"
6931 "\204\002\347\245\031\302\023\171\347\170\217\220\367\044\346\373"
6932 "\044\333\372\336\167\332\335\233\307\117\036\373\011\002\342\272"
6933 "\177\255\166\033\267\037\335\000\143\160\275\050\145\350\164\273"
6934 "\350\367\173\220\145\011\113\225\045\210\222\010\121\024\041\012"
6935 "\303\277\303\227\040\212\120\024\005\113\113\313\130\135\135\205"
6936 "\242\252\020\010\201\141\030\163\111\006\204\020\150\232\206\352"
6937 "\162\025\353\353\207\120\255\256\100\125\325\361\065\373\256\137"
6938 "\200\050\212\350\367\373\330\331\335\106\273\323\306\366\366\056"
6939 "\114\203\372\356\053\000\174\367\205\027\320\353\372\172\147\014"
6940 "\136\172\361\322\377\336\355\166\007\041\140\117\002\322\054\344"
6941 "\061\323\246\301\274\231\000\161\146\367\070\063\171\026\015\000"
6942 "\273\273\273\365\101\177\360\015\125\125\077\341\062\003\266\166"
6943 "\160\375\372\165\034\075\352\057\355\117\015\023\133\073\073\350"
6944 "\164\273\150\267\333\330\330\330\104\245\022\220\034\343\000\272"
6945 "\252\250\130\137\135\007\143\014\235\156\007\235\116\033\355\116"
6946 "\007\275\136\167\146\011\101\121\024\224\264\022\112\245\062\312"
6947 "\345\062\104\101\014\234\106\275\237\350\272\216\355\235\155\064"
6948 "\233\015\324\033\015\264\332\155\176\160\021\041\270\366\336\125"
6949 "\354\355\370\123\244\173\375\376\237\354\354\354\064\043\200\037"
6950 "\127\063\130\350\154\300\171\063\001\220\105\165\347\260\165\232"
6951 "\350\060\002\200\275\377\356\007\377\342\356\173\116\077\005\117"
6952 "\060\325\245\027\057\015\147\274\145\356\105\065\033\115\164\333"
6953 "\035\354\325\152\330\334\330\300\346\306\061\250\252\346\033\023"
6954 "\074\173\130\121\124\254\256\254\331\116\056\164\173\135\164\273"
6955 "\135\164\273\035\164\173\135\364\373\375\251\223\202\054\053\320"
6956 "\206\135\213\064\255\204\222\126\202\044\111\321\043\234\171\035"
6957 "\246\024\073\073\333\330\331\335\106\263\325\102\155\257\006\323"
6958 "\014\356\205\331\250\067\360\312\053\227\171\243\306\170\357\355"
6959 "\267\277\020\001\350\244\263\072\233\360\373\175\125\265\147\126"
6960 "\173\304\144\253\002\145\075\046\371\304\047\237\172\246\134\251"
6961 "\374\044\357\344\057\134\270\037\207\216\034\016\015\003\226\144"
6962 "\031\153\053\053\070\176\354\204\245\021\224\053\041\154\310\020"
6963 "\061\215\202\201\141\320\037\140\240\367\061\030\350\320\365\001"
6964 "\006\203\001\006\372\000\206\141\300\064\115\230\246\365\067\054"
6965 "\020\311\016\273\265\136\022\044\121\204\044\313\120\024\005\212"
6966 "\254\100\226\144\310\262\014\125\325\106\253\033\321\274\303\047"
6967 "\070\303\060\260\275\175\013\133\333\133\150\064\232\250\325\366"
6968 "\240\207\054\213\062\306\260\275\265\205\227\057\135\346\176\337"
6969 "\152\065\377\345\037\377\321\327\377\031\362\251\014\224\127\341"
6970 "\217\242\042\120\206\363\233\164\135\300\324\004\260\162\150\245"
6971 "\372\304\143\217\177\121\024\305\023\274\223\277\367\276\263\070"
6972 "\172\364\266\310\307\054\212\042\252\325\145\154\156\154\142\163"
6973 "\363\030\016\037\072\302\215\040\214\236\124\347\143\173\306\030"
6974 "\352\215\072\266\167\266\260\263\275\215\275\172\015\215\106\303"
6975 "\012\237\216\030\015\327\257\335\300\353\234\026\143\103\247\341"
6976 "\273\337\372\346\237\375\315\132\255\326\106\076\325\174\363\250"
6977 "\376\073\263\325\200\346\205\000\246\131\031\070\361\377\167\335"
6978 "\165\307\311\263\347\316\375\013\102\010\267\326\327\332\332\072"
6979 "\316\137\270\057\026\224\011\054\207\331\312\312\012\116\335\161"
6980 "\012\267\337\166\073\326\327\016\215\302\150\131\304\254\032\255"
6981 "\044\260\044\132\171\256\333\333\240\337\335\335\301\315\133\067"
6982 "\260\273\273\213\106\263\211\176\257\037\213\350\010\010\136\172"
6983 "\351\022\352\265\072\377\370\224\355\275\362\362\345\277\375\356"
6984 "\273\357\176\200\374\252\003\117\242\034\370\114\365\006\230\227"
6985 "\306\040\171\000\176\142\375\000\316\235\077\367\300\251\123\167"
6986 "\374\066\041\244\034\244\122\237\073\167\037\126\327\327\022\315"
6987 "\242\252\246\142\171\151\011\167\234\070\211\315\315\143\130\133"
6988 "\135\307\362\162\065\062\050\042\002\245\311\110\202\245\337\276"
6989 "\333\353\242\126\333\303\136\155\017\037\134\375\000\173\265\032"
6990 "\332\355\066\372\234\300\235\060\163\144\167\147\027\337\277\374"
6991 "\375\060\046\152\275\375\326\273\237\271\174\371\362\053\310\277"
6992 "\237\137\336\375\001\146\146\366\237\027\002\000\246\327\034\044"
6993 "\165\107\240\263\147\317\336\163\347\335\247\236\025\210\160\133"
6994 "\030\240\317\237\277\037\252\252\202\046\124\247\005\042\100\053"
6995 "\153\130\251\256\340\304\361\343\270\355\360\155\130\133\137\307"
6996 "\152\165\025\212\242\306\262\267\343\176\220\146\173\152\232\150"
6997 "\064\033\150\064\352\330\331\333\301\365\033\327\261\273\273\207"
6998 "\156\247\203\156\267\233\374\172\005\001\275\156\027\257\134\272"
6999 "\214\376\040\230\060\250\111\257\137\171\343\315\137\171\343\215"
7000 "\067\256\144\000\177\220\332\077\251\016\101\105\147\240\051\230"
7001 "\002\131\232\202\246\352\011\170\374\370\361\333\356\277\160\377"
7002 "\077\221\044\361\134\330\305\150\212\206\173\357\277\007\225\112"
7003 "\045\123\036\000\021\004\150\232\206\043\207\017\343\360\241\333"
7004 "\160\370\320\041\254\256\256\141\251\122\201\246\152\320\064\015"
7005 "\252\043\322\056\211\103\221\267\101\177\060\030\026\047\355\242"
7006 "\327\353\241\336\250\143\157\157\017\073\273\073\330\331\336\102"
7007 "\253\143\315\356\111\063\035\275\216\321\126\263\211\327\136\175"
7008 "\035\375\136\270\246\240\033\372\313\057\175\357\322\337\275\161"
7009 "\343\306\066\322\165\002\116\002\376\074\233\204\242\040\200\374"
7010 "\115\201\151\374\037\335\010\264\044\311\037\171\374\211\117\055"
7011 "\055\055\377\064\042\002\255\104\111\304\135\167\336\211\103\107"
7012 "\016\015\075\363\371\215\015\121\020\040\311\022\044\111\302\241"
7013 "\365\303\250\224\104\034\164\140\000\000\006\051\111\104\101\124"
7014 "\113\320\112\326\062\235\246\151\276\265\171\257\364\372\075\364"
7015 "\172\175\164\173\326\014\136\157\064\320\355\166\140\030\006\014"
7016 "\335\200\111\363\323\142\005\301\132\165\330\336\332\301\333\157"
7017 "\275\035\272\374\147\373\373\132\315\346\027\376\364\033\317\377"
7018 "\236\141\061\150\036\135\202\363\154\053\026\106\000\050\010\040"
7019 "\037\123\040\117\000\013\051\101\037\110\006\347\056\234\273\160"
7020 "\362\370\211\137\025\045\061\126\067\340\245\245\012\116\235\072"
7021 "\205\245\352\062\014\323\004\215\006\301\134\213\050\212\220\104"
7022 "\021\215\106\003\357\276\375\036\132\355\126\254\375\014\323\170"
7023 "\343\375\167\076\370\265\313\227\057\277\214\364\055\303\343\364"
7024 "\355\313\322\130\164\056\132\203\317\043\001\354\047\011\304\371"
7025 "\316\265\235\054\313\342\043\217\076\362\143\353\153\153\077\117"
7026 "\004\162\070\266\363\117\121\161\307\251\223\130\133\137\003\010"
7027 "\301\140\060\230\373\234\000\102\010\024\125\005\050\303\356\356"
7028 "\056\336\171\347\035\350\003\075\366\376\224\322\255\275\235\275"
7029 "\377\373\073\337\371\356\227\165\135\067\023\202\075\157\240\057"
7030 "\004\370\347\225\000\110\016\000\117\062\263\307\006\174\320\167"
7031 "\253\253\113\225\013\017\076\374\077\055\057\057\075\035\264\134"
7032 "\030\046\053\325\052\216\156\156\240\132\255\102\226\145\230\246"
7033 "\201\201\256\317\054\051\020\142\025\102\021\005\011\246\241\243"
7034 "\136\153\340\372\265\353\150\064\033\211\217\305\050\333\153\064"
7035 "\233\377\346\205\357\276\360\377\072\152\374\061\144\233\375\263"
7036 "\000\077\355\276\050\010\140\066\111\040\355\214\037\227\030\106"
7037 "\257\345\345\145\355\374\003\347\377\362\352\312\312\117\012\242"
7038 "\160\107\172\233\131\300\341\303\207\260\276\276\216\112\245\002"
7039 "\111\125\040\016\153\350\367\246\030\016\054\010\002\124\105\001"
7040 "\021\254\072\210\203\201\216\116\247\143\205\364\156\355\202\262"
7041 "\364\176\002\323\064\337\255\327\033\377\337\013\337\175\341\313"
7042 "\335\156\267\237\000\370\131\234\201\151\374\010\163\013\376\171"
7043 "\046\000\044\000\345\276\202\076\350\365\340\203\017\076\162\370"
7044 "\366\303\377\203\246\252\237\004\240\344\165\123\112\345\022\252"
7045 "\313\125\124\052\126\042\216\242\052\220\044\011\242\044\016\173"
7046 "\023\010\040\144\030\245\307\340\363\330\013\202\000\020\273\051"
7047 "\007\300\030\005\245\024\246\141\302\060\014\014\372\003\264\073"
7048 "\155\164\332\035\064\232\115\164\073\335\334\036\050\143\254\337"
7049 "\357\367\377\313\255\133\133\377\341\322\213\227\136\210\251\326"
7050 "\317\072\031\240\040\200\351\222\100\336\240\317\233\000\134\347"
7051 "\175\350\320\241\352\351\063\247\077\126\135\136\372\230\242\252"
7052 "\117\004\005\023\055\252\060\306\332\203\176\377\133\315\106\363"
7053 "\117\256\134\171\353\117\167\166\166\032\010\116\326\311\033\370"
7054 "\131\235\207\163\015\376\105\040\200\040\307\140\134\300\046\005"
7055 "\264\220\047\370\275\237\227\112\045\365\276\373\356\175\164\155"
7056 "\175\355\007\025\105\375\260\020\320\160\164\336\205\122\172\265"
7057 "\337\353\175\173\267\126\173\356\265\313\257\175\307\241\342\007"
7058 "\201\075\057\022\110\103\010\064\345\167\050\010\140\177\264\001"
7059 "\041\047\000\347\246\356\307\001\077\357\377\123\247\116\155\036"
7060 "\335\074\372\150\245\134\172\110\126\324\373\104\121\070\205\371"
7061 "\353\345\100\115\323\170\147\060\060\056\167\072\255\027\257\136"
7062 "\273\376\355\367\337\171\377\232\007\324\210\001\370\111\220\300"
7063 "\044\010\141\356\100\203\005\044\201\124\313\166\071\003\076\065"
7064 "\360\021\120\221\150\165\165\265\174\362\316\223\347\252\313\325"
7065 "\373\025\125\271\123\226\344\123\242\050\234\232\025\263\201\061"
7066 "\326\066\114\363\075\303\060\336\036\364\373\157\067\353\255\227"
7067 "\337\175\367\335\127\207\331\171\100\362\042\034\323\046\201\254"
7068 "\313\212\050\010\140\166\375\002\323\002\174\126\360\107\275\367"
7069 "\375\075\171\162\363\350\372\372\241\223\152\251\174\233\242\050"
7070 "\033\262\044\036\021\105\351\210\040\212\267\023\001\145\201\010"
7071 "\313\103\222\110\133\002\316\144\214\165\030\143\015\312\150\207"
7072 "\032\364\226\151\032\267\014\303\330\352\017\364\233\335\156\367"
7073 "\306\316\326\316\173\127\257\136\275\205\340\216\272\054\047\022"
7074 "\230\066\021\304\045\003\024\004\060\333\104\040\114\021\354\102"
7075 "\300\071\104\175\026\006\370\120\022\210\170\017\130\313\220\152"
7076 "\145\245\262\274\266\274\026\053\050\151\257\271\267\335\256\267"
7077 "\233\315\146\263\357\001\057\070\377\307\151\253\235\246\142\116"
7078 "\224\066\100\367\131\073\230\173\220\340\000\221\300\264\147\372"
7079 "\114\052\177\014\022\210\103\004\141\317\071\121\146\161\002\022"
7080 "\210\042\203\074\265\201\375\324\014\120\020\300\301\046\002\344"
7081 "\360\135\142\225\077\201\026\020\364\214\223\074\167\226\221\004"
7082 "\302\212\161\002\371\233\001\050\200\137\020\300\064\210\040\011"
7083 "\370\171\377\013\031\125\376\050\055\040\017\360\347\115\002\131"
7084 "\374\001\263\340\043\130\110\100\034\104\231\226\163\057\211\303"
7085 "\057\053\370\243\064\201\074\236\067\213\371\177\126\177\100\126"
7086 "\142\110\113\004\070\110\340\077\310\004\220\205\010\322\202\077"
7087 "\010\354\121\132\100\032\273\237\114\360\131\247\165\004\206\201"
7088 "\077\017\237\100\036\044\200\203\002\374\202\000\322\021\101\134"
7089 "\360\307\235\365\323\330\374\211\275\377\011\307\001\233\020\011"
7090 "\244\365\005\044\365\017\040\003\011\340\240\000\277\040\200\144"
7091 "\104\060\011\225\037\310\346\370\343\275\117\002\176\222\002\350"
7092 "\121\044\220\145\131\060\211\006\060\051\155\340\100\016\370\102"
7093 "\302\211\040\217\131\077\111\137\302\064\016\277\151\251\377\161"
7094 "\034\202\171\220\300\264\115\202\003\075\320\013\111\256\025\114"
7095 "\122\345\217\003\372\044\052\077\111\061\006\330\004\110\040\056"
7096 "\031\044\371\054\255\203\020\007\035\370\005\001\244\277\127\151"
7097 "\034\175\171\250\374\151\226\375\110\016\317\075\115\100\120\134"
7098 "\300\307\001\172\336\046\101\041\005\001\114\204\014\200\351\007"
7099 "\372\220\011\203\077\057\022\310\323\037\220\206\004\012\051\010"
7100 "\140\152\144\020\027\360\223\264\373\047\345\007\110\033\020\224"
7101 "\067\011\304\355\352\133\110\101\000\373\346\063\100\006\022\110"
7102 "\253\005\114\022\374\171\222\100\226\100\041\024\263\174\101\000"
7103 "\213\100\010\171\330\375\323\006\377\044\110\040\213\077\240\220"
7104 "\202\000\346\332\144\310\323\356\117\003\176\222\002\350\151\174"
7105 "\000\171\371\003\012\051\010\340\100\220\102\026\042\210\172\266"
7106 "\171\072\001\263\372\000\012\260\027\004\120\110\314\347\263\137"
7107 "\340\217\103\004\131\111\240\220\202\000\012\311\351\371\355\207"
7108 "\023\060\216\071\120\110\041\205\024\122\110\041\205\024\122\110"
7109 "\041\205\024\122\110\041\205\024\122\110\041\205\024\122\110\041"
7110 "\205\024\122\110\041\205\024\122\110\041\205\024\122\110\041\205"
7111 "\024\122\110\041\205\024\122\110\041\205\024\122\110\041\205\024"
7112 "\122\110\106\371\157\300\217\357\273\256\250\302\177\000\000\000"
7113 "\000\111\105\116\104\256\102\140\202\000\000\050\165\165\141\171"
7114 "\051\166\151\162\164\055\166\151\145\167\145\162\055\141\165\164"
7115 "\150\056\165\151\000\000\000\000\005\034\000\000\000\000\000\000"
7116 "\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061"
7117 "\056\060\042\040\145\156\143\157\144\151\156\147\075\042\125\124"
7118 "\106\055\070\042\077\076\012\074\151\156\164\145\162\146\141\143"
7119 "\145\076\012\040\040\074\041\055\055\040\151\156\164\145\162\146"
7120 "\141\143\145\055\162\145\161\165\151\162\145\163\040\147\164\153"
7121 "\053\040\062\056\061\062\040\055\055\076\012\040\040\074\157\142"
7122 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\104"
7123 "\151\141\154\157\147\042\040\151\144\075\042\141\165\164\150\042"
7124 "\076\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7125 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
7126 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
7127 "\076\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7128 "\156\141\155\145\075\042\142\157\162\144\145\162\137\167\151\144"
7129 "\164\150\042\076\065\074\057\160\162\157\160\145\162\164\171\076"
7130 "\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
7131 "\141\155\145\075\042\164\151\164\154\145\042\040\164\162\141\156"
7132 "\163\154\141\164\141\142\154\145\075\042\171\145\163\042\076\101"
7133 "\165\164\150\145\156\164\151\143\141\164\151\157\156\040\162\145"
7134 "\161\165\151\162\145\144\074\057\160\162\157\160\145\162\164\171"
7135 "\076\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7136 "\156\141\155\145\075\042\155\157\144\141\154\042\076\124\162\165"
7137 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7138 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7139 "\042\167\151\156\144\157\167\137\160\157\163\151\164\151\157\156"
7140 "\042\076\143\145\156\164\145\162\055\157\156\055\160\141\162\145"
7141 "\156\164\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7142 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7143 "\075\042\144\145\163\164\162\157\171\137\167\151\164\150\137\160"
7144 "\141\162\145\156\164\042\076\124\162\165\145\074\057\160\162\157"
7145 "\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157\160"
7146 "\145\162\164\171\040\156\141\155\145\075\042\164\171\160\145\137"
7147 "\150\151\156\164\042\076\144\151\141\154\157\147\074\057\160\162"
7148 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
7149 "\160\145\162\164\171\040\156\141\155\145\075\042\163\153\151\160"
7150 "\137\164\141\163\153\142\141\162\137\150\151\156\164\042\076\124"
7151 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
7152 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7153 "\145\075\042\163\153\151\160\137\160\141\147\145\162\137\150\151"
7154 "\156\164\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
7155 "\164\171\076\012\040\040\040\040\074\143\150\151\154\144\040\151"
7156 "\156\164\145\162\156\141\154\055\143\150\151\154\144\075\042\166"
7157 "\142\157\170\042\076\012\040\040\040\040\040\040\074\157\142\152"
7158 "\145\143\164\040\143\154\141\163\163\075\042\107\164\153\102\157"
7159 "\170\042\040\151\144\075\042\144\151\141\154\157\147\055\166\142"
7160 "\157\170\061\042\076\012\040\040\040\040\040\040\040\040\074\160"
7161 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151"
7162 "\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157"
7163 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\074"
7164 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
7165 "\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074"
7166 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7167 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7168 "\145\075\042\157\162\151\145\156\164\141\164\151\157\156\042\076"
7169 "\166\145\162\164\151\143\141\154\074\057\160\162\157\160\145\162"
7170 "\164\171\076\012\040\040\040\040\040\040\040\040\074\160\162\157"
7171 "\160\145\162\164\171\040\156\141\155\145\075\042\163\160\141\143"
7172 "\151\156\147\042\076\062\074\057\160\162\157\160\145\162\164\171"
7173 "\076\012\040\040\040\040\040\040\040\040\074\143\150\151\154\144"
7174 "\040\151\156\164\145\162\156\141\154\055\143\150\151\154\144\075"
7175 "\042\141\143\164\151\157\156\137\141\162\145\141\042\076\012\040"
7176 "\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164"
7177 "\040\143\154\141\163\163\075\042\107\164\153\102\165\164\164\157"
7178 "\156\102\157\170\042\040\151\144\075\042\144\151\141\154\157\147"
7179 "\055\141\143\164\151\157\156\137\141\162\145\141\061\042\076\012"
7180 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7181 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
7182 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
7183 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
7184 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7185 "\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163"
7186 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7187 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7188 "\164\171\040\156\141\155\145\075\042\154\141\171\157\165\164\137"
7189 "\163\164\171\154\145\042\076\145\156\144\074\057\160\162\157\160"
7190 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
7191 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
7192 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
7193 "\143\154\141\163\163\075\042\107\164\153\102\165\164\164\157\156"
7194 "\042\040\151\144\075\042\142\165\164\164\157\156\055\143\141\156"
7195 "\143\145\154\042\076\012\040\040\040\040\040\040\040\040\040\040"
7196 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7197 "\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162\141"
7198 "\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042\076"
7199 "\137\103\141\156\143\145\154\074\057\160\162\157\160\145\162\164"
7200 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7201 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7202 "\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145"
7203 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
7204 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7205 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
7206 "\146\157\143\165\163\042\076\124\162\165\145\074\057\160\162\157"
7207 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
7208 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7209 "\040\156\141\155\145\075\042\162\145\143\145\151\166\145\163\137"
7210 "\144\145\146\141\165\154\164\042\076\124\162\165\145\074\057\160"
7211 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
7212 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7213 "\164\171\040\156\141\155\145\075\042\165\163\145\137\141\143\164"
7214 "\151\157\156\137\141\160\160\145\141\162\141\156\143\145\042\076"
7215 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
7216 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7217 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7218 "\042\165\163\145\137\165\156\144\145\162\154\151\156\145\042\076"
7219 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
7220 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
7221 "\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040\040"
7222 "\040\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012"
7223 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7224 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7225 "\145\170\160\141\156\144\042\076\106\141\154\163\145\074\057\160"
7226 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
7227 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7228 "\164\171\040\156\141\155\145\075\042\146\151\154\154\042\076\106"
7229 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
7230 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7231 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7232 "\160\157\163\151\164\151\157\156\042\076\060\074\057\160\162\157"
7233 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
7234 "\040\040\040\040\040\074\057\160\141\143\153\151\156\147\076\012"
7235 "\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143\150"
7236 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
7237 "\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
7238 "\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
7239 "\154\141\163\163\075\042\107\164\153\102\165\164\164\157\156\042"
7240 "\040\151\144\075\042\142\165\164\164\157\156\055\157\153\042\076"
7241 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7242 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7243 "\042\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164"
7244 "\141\142\154\145\075\042\171\145\163\042\076\137\117\113\074\057"
7245 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
7246 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7247 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
7248 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
7249 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7250 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7251 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\124\162"
7252 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7253 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7254 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141"
7255 "\156\137\144\145\146\141\165\154\164\042\076\124\162\165\145\074"
7256 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7257 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
7258 "\145\162\164\171\040\156\141\155\145\075\042\150\141\163\137\144"
7259 "\145\146\141\165\154\164\042\076\124\162\165\145\074\057\160\162"
7260 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7261 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
7262 "\171\040\156\141\155\145\075\042\162\145\143\145\151\166\145\163"
7263 "\137\144\145\146\141\165\154\164\042\076\124\162\165\145\074\057"
7264 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
7265 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7266 "\162\164\171\040\156\141\155\145\075\042\165\163\145\137\141\143"
7267 "\164\151\157\156\137\141\160\160\145\141\162\141\156\143\145\042"
7268 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
7269 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7270 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7271 "\075\042\165\163\145\137\165\156\144\145\162\154\151\156\145\042"
7272 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
7273 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7274 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
7275 "\040\040\040\040\040\040\040\074\160\141\143\153\151\156\147\076"
7276 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7277 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7278 "\042\145\170\160\141\156\144\042\076\106\141\154\163\145\074\057"
7279 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
7280 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7281 "\162\164\171\040\156\141\155\145\075\042\146\151\154\154\042\076"
7282 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
7283 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7284 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7285 "\042\160\157\163\151\164\151\157\156\042\076\063\074\057\160\162"
7286 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7287 "\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147\076"
7288 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143"
7289 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
7290 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
7291 "\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040\040"
7292 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7293 "\162\164\171\040\156\141\155\145\075\042\145\170\160\141\156\144"
7294 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
7295 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
7296 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\146"
7297 "\151\154\154\042\076\124\162\165\145\074\057\160\162\157\160\145"
7298 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
7299 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7300 "\042\160\141\143\153\137\164\171\160\145\042\076\145\156\144\074"
7301 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7302 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7303 "\040\156\141\155\145\075\042\160\157\163\151\164\151\157\156\042"
7304 "\076\060\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7305 "\040\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156"
7306 "\147\076\012\040\040\040\040\040\040\040\040\074\057\143\150\151"
7307 "\154\144\076\012\040\040\040\040\040\040\040\040\074\143\150\151"
7308 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\074\157"
7309 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
7310 "\114\141\142\145\154\042\040\151\144\075\042\155\145\163\163\141"
7311 "\147\145\042\076\012\040\040\040\040\040\040\040\040\040\040\040"
7312 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7313 "\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057"
7314 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
7315 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7316 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
7317 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
7318 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7319 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\170\141"
7320 "\154\151\147\156\042\076\060\074\057\160\162\157\160\145\162\164"
7321 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
7322 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\171"
7323 "\141\154\151\147\156\042\076\060\074\057\160\162\157\160\145\162"
7324 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7325 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7326 "\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164\141"
7327 "\142\154\145\075\042\171\145\163\042\076\154\141\142\145\154\074"
7328 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7329 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7330 "\040\156\141\155\145\075\042\165\163\145\137\155\141\162\153\165"
7331 "\160\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
7332 "\171\076\012\040\040\040\040\040\040\040\040\040\040\074\057\157"
7333 "\142\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040"
7334 "\040\074\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
7335 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7336 "\040\156\141\155\145\075\042\145\170\160\141\156\144\042\076\106"
7337 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
7338 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7339 "\160\145\162\164\171\040\156\141\155\145\075\042\146\151\154\154"
7340 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
7341 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7342 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\160\157"
7343 "\163\151\164\151\157\156\042\076\061\074\057\160\162\157\160\145"
7344 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\074"
7345 "\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040"
7346 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
7347 "\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040"
7348 "\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141"
7349 "\163\163\075\042\107\164\153\124\141\142\154\145\042\040\151\144"
7350 "\075\042\164\141\142\154\145\061\042\076\012\040\040\040\040\040"
7351 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7352 "\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076"
7353 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
7354 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7355 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
7356 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
7357 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7358 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
7359 "\155\145\075\042\156\137\162\157\167\163\042\076\062\074\057\160"
7360 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
7361 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
7362 "\141\155\145\075\042\156\137\143\157\154\165\155\156\163\042\076"
7363 "\062\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7364 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7365 "\164\171\040\156\141\155\145\075\042\143\157\154\165\155\156\137"
7366 "\163\160\141\143\151\156\147\042\076\066\074\057\160\162\157\160"
7367 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
7368 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7369 "\075\042\162\157\167\137\163\160\141\143\151\156\147\042\076\066"
7370 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
7371 "\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012"
7372 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157"
7373 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
7374 "\114\141\142\145\154\042\040\151\144\075\042\160\162\157\155\160"
7375 "\164\055\160\141\163\163\167\157\162\144\042\076\012\040\040\040"
7376 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
7377 "\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163"
7378 "\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160"
7379 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
7380 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7381 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
7382 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
7383 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7384 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7385 "\075\042\170\141\154\151\147\156\042\076\061\074\057\160\162\157"
7386 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
7387 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7388 "\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162"
7389 "\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042"
7390 "\076\120\141\163\163\167\157\162\144\072\074\057\160\162\157\160"
7391 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
7392 "\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040"
7393 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\141\143"
7394 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
7395 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7396 "\156\141\155\145\075\042\164\157\160\137\141\164\164\141\143\150"
7397 "\042\076\061\074\057\160\162\157\160\145\162\164\171\076\012\040"
7398 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7399 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\142"
7400 "\157\164\164\157\155\137\141\164\164\141\143\150\042\076\062\074"
7401 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7402 "\040\040\040\040\040\040\040\040\040\074\057\160\141\143\153\151"
7403 "\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7404 "\074\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
7405 "\040\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040"
7406 "\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145"
7407 "\143\164\040\143\154\141\163\163\075\042\107\164\153\114\141\142"
7408 "\145\154\042\040\151\144\075\042\160\162\157\155\160\164\055\165"
7409 "\163\145\162\156\141\155\145\042\076\012\040\040\040\040\040\040"
7410 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7411 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
7412 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
7413 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7414 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7415 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141"
7416 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
7417 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7418 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\170"
7419 "\141\154\151\147\156\042\076\061\074\057\160\162\157\160\145\162"
7420 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7421 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
7422 "\155\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163"
7423 "\154\141\164\141\142\154\145\075\042\171\145\163\042\076\125\163"
7424 "\145\162\156\141\155\145\072\074\057\160\162\157\160\145\162\164"
7425 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7426 "\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040"
7427 "\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012"
7428 "\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151"
7429 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7430 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
7431 "\042\107\164\153\105\156\164\162\171\042\040\151\144\075\042\143"
7432 "\162\145\144\055\165\163\145\162\156\141\155\145\042\076\012\040"
7433 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7434 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166"
7435 "\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162"
7436 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7437 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
7438 "\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165"
7439 "\163\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
7440 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7441 "\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040"
7442 "\040\040\040\040\040\040\040\040\040\074\160\141\143\153\151\156"
7443 "\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7444 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7445 "\145\075\042\154\145\146\164\137\141\164\164\141\143\150\042\076"
7446 "\061\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7447 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
7448 "\157\160\145\162\164\171\040\156\141\155\145\075\042\162\151\147"
7449 "\150\164\137\141\164\164\141\143\150\042\076\062\074\057\160\162"
7450 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7451 "\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147\076"
7452 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143"
7453 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
7454 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
7455 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
7456 "\143\154\141\163\163\075\042\107\164\153\105\156\164\162\171\042"
7457 "\040\151\144\075\042\143\162\145\144\055\160\141\163\163\167\157"
7458 "\162\144\042\076\012\040\040\040\040\040\040\040\040\040\040\040"
7459 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
7460 "\141\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162"
7461 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7462 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7463 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141"
7464 "\156\137\146\157\143\165\163\042\076\124\162\165\145\074\057\160"
7465 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
7466 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7467 "\164\171\040\156\141\155\145\075\042\166\151\163\151\142\151\154"
7468 "\151\164\171\042\076\106\141\154\163\145\074\057\160\162\157\160"
7469 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
7470 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7471 "\156\141\155\145\075\042\141\143\164\151\166\141\164\145\163\137"
7472 "\144\145\146\141\165\154\164\042\076\124\162\165\145\074\057\160"
7473 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
7474 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
7475 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7476 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
7477 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7478 "\164\171\040\156\141\155\145\075\042\154\145\146\164\137\141\164"
7479 "\164\141\143\150\042\076\061\074\057\160\162\157\160\145\162\164"
7480 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7481 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7482 "\145\075\042\162\151\147\150\164\137\141\164\164\141\143\150\042"
7483 "\076\062\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7484 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7485 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\164\157"
7486 "\160\137\141\164\164\141\143\150\042\076\061\074\057\160\162\157"
7487 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
7488 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7489 "\040\156\141\155\145\075\042\142\157\164\164\157\155\137\141\164"
7490 "\164\141\143\150\042\076\062\074\057\160\162\157\160\145\162\164"
7491 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7492 "\040\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040"
7493 "\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076"
7494 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150"
7495 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
7496 "\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163"
7497 "\075\042\107\164\153\103\150\145\143\153\102\165\164\164\157\156"
7498 "\042\040\151\144\075\042\163\150\157\167\055\160\141\163\163\167"
7499 "\157\162\144\042\076\012\040\040\040\040\040\040\040\040\040\040"
7500 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7501 "\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076\124"
7502 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
7503 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7504 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
7505 "\141\156\137\146\157\143\165\163\042\076\124\162\165\145\074\057"
7506 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
7507 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7508 "\162\164\171\040\156\141\155\145\075\042\141\143\164\151\166\145"
7509 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
7510 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7511 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7512 "\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163\154"
7513 "\141\164\141\142\154\145\075\042\171\145\163\042\076\123\150\157"
7514 "\167\040\160\141\163\163\167\157\162\144\074\057\160\162\157\160"
7515 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
7516 "\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040"
7517 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\141\143"
7518 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
7519 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7520 "\156\141\155\145\075\042\154\145\146\164\137\141\164\164\141\143"
7521 "\150\042\076\061\074\057\160\162\157\160\145\162\164\171\076\012"
7522 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7523 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7524 "\162\151\147\150\164\137\141\164\164\141\143\150\042\076\062\074"
7525 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7526 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
7527 "\145\162\164\171\040\156\141\155\145\075\042\164\157\160\137\141"
7528 "\164\164\141\143\150\042\076\062\074\057\160\162\157\160\145\162"
7529 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7530 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
7531 "\155\145\075\042\142\157\164\164\157\155\137\141\164\164\141\143"
7532 "\150\042\076\063\074\057\160\162\157\160\145\162\164\171\076\012"
7533 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
7534 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
7535 "\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040"
7536 "\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164"
7537 "\076\012\040\040\040\040\040\040\040\040\040\040\074\160\141\143"
7538 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
7539 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7540 "\075\042\145\170\160\141\156\144\042\076\106\141\154\163\145\074"
7541 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7542 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7543 "\040\156\141\155\145\075\042\146\151\154\154\042\076\124\162\165"
7544 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7545 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7546 "\164\171\040\156\141\155\145\075\042\160\157\163\151\164\151\157"
7547 "\156\042\076\062\074\057\160\162\157\160\145\162\164\171\076\012"
7548 "\040\040\040\040\040\040\040\040\040\040\074\057\160\141\143\153"
7549 "\151\156\147\076\012\040\040\040\040\040\040\040\040\074\057\143"
7550 "\150\151\154\144\076\012\040\040\040\040\040\040\074\057\157\142"
7551 "\152\145\143\164\076\012\040\040\040\040\074\057\143\150\151\154"
7552 "\144\076\012\040\040\040\040\074\141\143\164\151\157\156\055\167"
7553 "\151\144\147\145\164\163\076\012\040\040\040\040\040\040\074\141"
7554 "\143\164\151\157\156\055\167\151\144\147\145\164\040\162\145\163"
7555 "\160\157\156\163\145\075\042\055\066\042\076\142\165\164\164\157"
7556 "\156\055\143\141\156\143\145\154\074\057\141\143\164\151\157\156"
7557 "\055\167\151\144\147\145\164\076\012\040\040\040\040\040\040\074"
7558 "\141\143\164\151\157\156\055\167\151\144\147\145\164\040\162\145"
7559 "\163\160\157\156\163\145\075\042\055\065\042\076\142\165\164\164"
7560 "\157\156\055\157\153\074\057\141\143\164\151\157\156\055\167\151"
7561 "\144\147\145\164\076\012\040\040\040\040\074\057\141\143\164\151"
7562 "\157\156\055\167\151\144\147\145\164\163\076\012\040\040\074\057"
7563 "\157\142\152\145\143\164\076\012\074\057\151\156\164\145\162\146"
7564 "\141\143\145\076\012\000\000\050\165\165\141\171\051\166\151\162"
7565 "\164\055\155\141\156\141\147\145\162\057\000\000\024\000\000\000"
7566 "\166\151\162\164\055\166\151\145\167\145\162\056\160\156\147\000"
7567 "\306\003\000\000\000\000\000\000\211\120\116\107\015\012\032\012"
7568 "\000\000\000\015\111\110\104\122\000\000\000\026\000\000\000\026"
7569 "\010\006\000\000\000\304\264\154\073\000\000\000\004\163\102\111"
7570 "\124\010\010\010\010\174\010\144\210\000\000\000\011\160\110\131"
7571 "\163\000\000\015\327\000\000\015\327\001\102\050\233\170\000\000"
7572 "\000\031\164\105\130\164\123\157\146\164\167\141\162\145\000\167"
7573 "\167\167\056\151\156\153\163\143\141\160\145\056\157\162\147\233"
7574 "\356\074\032\000\000\003\103\111\104\101\124\070\215\265\225\301"
7575 "\153\044\105\024\207\277\252\352\164\117\047\146\263\272\201\215"
7576 "\010\046\233\015\021\365\354\305\233\053\330\254\316\105\020\374"
7577 "\007\274\010\236\005\157\202\007\117\336\005\361\266\240\242\040"
7578 "\271\145\216\256\222\243\054\254\254\353\146\020\223\135\115\202"
7579 "\146\234\154\046\125\335\063\375\252\074\114\317\114\317\104\274"
7580 "\004\037\074\272\253\250\372\352\367\136\075\136\251\054\313\370"
7581 "\077\054\002\150\066\233\357\213\310\107\041\204\370\042\060\245"
7582 "\224\304\161\374\351\326\326\326\173\052\313\062\232\315\146\367"
7583 "\346\033\257\055\055\055\055\135\110\145\277\350\363\315\327\337"
7584 "\016\032\215\306\345\010\040\204\220\244\151\312\233\157\175\311"
7585 "\374\122\230\132\034\246\207\204\000\212\060\376\317\117\025\137"
7586 "\175\361\066\161\254\211\223\030\245\224\267\326\306\321\324\256"
7587 "\271\202\253\353\163\050\324\050\070\224\032\205\071\073\126\020"
7588 "\140\377\101\037\347\006\264\167\177\145\165\165\155\214\032\203"
7589 "\105\074\245\200\165\045\112\115\000\347\340\101\115\035\122\364"
7590 "\005\200\027\136\174\176\112\143\005\016\303\270\202\242\220\131"
7591 "\225\241\006\003\245\002\203\322\323\175\174\306\161\367\024\071"
7592 "\136\100\304\363\323\335\173\254\255\315\050\016\200\047\020\264"
7593 "\246\022\060\046\117\224\103\321\057\071\072\076\301\272\076\041"
7594 "\004\100\021\353\010\357\205\315\347\066\060\306\114\203\235\165"
7595 "\004\037\360\101\121\010\323\171\254\354\161\317\161\322\313\011"
7596 "\101\023\305\215\361\274\161\021\042\302\317\367\176\141\175\175"
7597 "\235\074\317\261\326\126\140\347\010\301\103\320\014\274\042\324"
7598 "\362\052\342\071\265\005\042\012\063\227\062\153\132\153\104\204"
7599 "\353\033\327\110\222\004\347\134\115\261\163\125\052\015\375\240"
7600 "\307\151\057\305\063\050\101\105\011\121\164\216\071\134\146\074"
7601 "\042\045\273\017\366\271\276\261\201\265\147\024\105\177\010\266"
7602 "\326\016\053\123\033\006\114\362\204\201\310\374\073\160\144\245"
7603 "\051\020\361\254\136\173\226\106\043\301\271\034\255\365\020\234"
7604 "\347\371\220\143\064\041\236\377\157\322\254\142\135\342\275\040"
7605 "\122\002\012\353\054\345\240\234\050\006\305\245\071\303\337\373"
7606 "\275\163\233\033\015\103\043\061\344\271\220\027\223\262\121\100"
7607 "\052\201\070\001\021\101\051\310\135\116\257\327\233\050\126\012"
7608 "\076\371\370\045\274\227\031\254\042\135\230\107\033\115\360\036"
7609 "\167\146\153\330\311\307\373\200\102\125\042\253\313\053\245\054"
7610 "\072\307\235\106\232\246\030\175\376\226\312\276\000\303\003\243"
7611 "\050\231\122\134\267\116\247\103\121\024\132\153\335\127\131\226"
7612 "\221\246\351\007\145\131\176\050\042\027\156\233\111\222\174\146"
7613 "\255\175\127\215\032\175\253\325\122\300\034\220\246\151\172\351"
7614 "\365\346\315\366\215\033\257\304\233\233\233\030\143\010\004\010"
7615 "\303\272\365\301\263\367\333\036\333\333\333\362\343\235\073\257"
7616 "\266\357\267\333\200\003\054\120\144\131\026\352\161\067\200\005"
7617 "\140\301\071\367\304\301\301\341\347\337\335\276\375\316\336\303"
7618 "\075\263\262\362\264\136\271\272\202\321\206\303\243\103\376\070"
7619 "\070\010\217\036\076\222\303\203\243\235\366\375\266\001\226\201"
7620 "\136\045\254\007\234\325\301\123\235\167\347\207\235\133\313\313"
7621 "\313\273\127\226\257\274\274\270\270\270\361\344\123\227\237\061"
7622 "\332\104\235\116\347\257\223\156\367\367\156\267\173\367\350\350"
7623 "\317\357\201\242\266\067\000\003\000\125\177\363\132\255\126\124"
7624 "\127\016\044\063\343\010\310\107\041\127\356\200\323\152\056\317"
7625 "\262\114\316\201\153\271\256\273\001\164\345\012\360\214\032\342"
7626 "\260\124\002\340\263\054\233\212\370\037\346\371\225\163\333\170"
7627 "\275\033\000\000\000\000\111\105\116\104\256\102\140\202\000\000"
7628 "\050\165\165\141\171\051\166\151\162\164\055\166\151\145\167\145"
7629 "\162\056\160\156\147\000\000\000\235\004\000\000\000\000\000\000"
7630 "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104\122"
7631 "\000\000\000\030\000\000\000\030\010\006\000\000\000\340\167\075"
7632 "\370\000\000\000\006\142\113\107\104\000\377\000\377\000\377\240"
7633 "\275\247\223\000\000\000\011\160\110\131\163\000\000\015\327\000"
7634 "\000\015\327\001\102\050\233\170\000\000\003\266\111\104\101\124"
7635 "\110\307\335\325\333\117\333\145\034\307\161\164\306\215\315\104"
7636 "\143\230\134\030\135\342\130\012\043\331\324\265\143\224\156\034"
7637 "\132\350\012\155\051\035\164\033\343\320\261\342\066\355\010\062"
7638 "\126\342\164\001\056\146\112\327\063\254\130\263\030\143\242\161"
7639 "\331\077\240\166\135\301\073\335\072\260\140\111\107\151\313\241"
7640 "\100\146\064\273\153\101\364\343\267\355\117\266\337\050\323\205"
7641 "\170\343\223\274\322\323\323\347\375\173\236\137\322\146\144\374"
7642 "\157\106\177\177\277\316\152\265\056\131\054\026\154\004\255\261"
7643 "\342\160\070\006\322\005\036\004\103\001\374\362\353\342\206\104"
7644 "\347\147\140\263\331\226\235\116\347\126\126\300\156\267\307\242"
7645 "\013\063\020\224\132\121\241\260\260\224\127\263\211\344\364\050"
7646 "\067\047\211\144\146\010\112\054\210\056\314\257\106\150\255\070"
7647 "\355\346\245\364\201\212\076\064\166\230\321\324\141\141\130\321"
7648 "\174\076\105\335\231\140\303\311\013\051\055\072\073\132\056\330"
7649 "\041\252\066\042\030\232\306\360\367\036\104\246\303\353\007\146"
7650 "\346\042\070\040\354\303\221\263\006\324\276\173\005\165\357\375"
7651 "\315\010\225\066\345\350\071\242\065\341\330\271\004\063\216\267"
7652 "\231\161\120\322\227\014\374\303\016\154\261\231\331\060\016\224"
7653 "\031\040\175\347\012\144\247\123\344\147\030\247\215\250\076\223"
7654 "\242\070\153\104\125\253\001\105\107\273\221\053\356\300\056\356"
7655 "\045\004\046\303\360\014\335\102\070\022\112\037\260\121\040\062"
7656 "\033\102\201\310\210\212\123\217\320\230\040\156\175\250\244\271"
7657 "\017\171\322\213\330\041\354\304\353\145\347\223\162\366\367\142"
7658 "\042\020\104\342\210\027\357\107\323\007\364\172\175\054\074\075"
7659 "\005\236\320\204\142\065\055\164\062\245\264\305\274\152\237\352"
7660 "\062\162\052\057\141\247\344\043\026\116\341\145\214\373\003\270"
7661 "\351\166\041\024\236\202\301\140\210\367\364\364\260\003\335\335"
7662 "\335\261\120\144\022\274\062\013\370\115\126\024\066\331\300\157"
7663 "\116\051\150\260\140\267\122\017\116\365\307\151\345\025\351\361"
7664 "\323\230\037\341\351\040\346\027\347\320\333\333\273\066\240\323"
7665 "\351\142\241\360\044\270\102\073\270\215\003\253\336\254\267\043"
7666 "\137\145\171\242\335\207\114\270\073\352\303\167\256\157\060\025"
7667 "\016\242\253\113\027\157\157\157\147\007\264\132\155\154\052\021"
7668 "\050\277\212\275\215\237\074\225\374\122\033\156\173\107\021\010"
7669 "\372\351\076\314\242\255\255\155\155\100\243\321\044\003\005\207"
7670 "\007\261\357\324\027\117\145\217\160\000\077\334\366\302\037\360"
7671 "\121\140\016\232\126\115\134\255\126\263\003\365\365\365\261\304"
7672 "\366\312\145\237\322\056\034\153\010\144\116\210\152\257\101\040"
7673 "\165\262\336\347\221\202\222\176\214\370\274\030\363\217\044\357"
7674 "\101\103\103\103\134\241\120\260\003\112\245\222\156\162\020\276"
7675 "\361\021\214\372\356\074\306\213\300\324\004\046\043\001\334\013"
7676 "\115\320\015\365\062\356\246\214\077\264\260\030\005\255\265\066"
7677 "\040\257\226\077\270\343\375\021\077\373\307\322\233\030\117\313"
7678 "\377\230\304\334\252\252\252\145\231\114\306\376\261\243\342\007"
7679 "\122\251\164\111\042\221\140\043\052\053\053\127\152\152\152\006"
7680 "\327\373\133\170\206\074\117\136\314\314\314\174\355\110\235\162"
7681 "\351\352\140\077\134\356\157\161\153\350\046\334\103\056\270\075"
7682 "\056\170\206\335\311\347\237\175\176\015\252\143\265\053\071\271"
7683 "\071\305\364\235\127\311\313\144\013\263\116\332\221\111\262\310"
7684 "\016\222\317\027\360\035\252\343\165\313\272\213\235\177\230\355"
7685 "\046\174\165\375\113\134\277\361\065\154\003\126\164\175\330\365"
7686 "\347\211\246\023\277\037\052\076\070\114\163\313\310\136\262\223"
7687 "\144\223\155\353\005\266\074\032\040\374\254\254\254\367\071\271"
7688 "\234\033\134\036\167\244\134\054\272\177\130\042\376\155\177\001"
7689 "\357\036\207\263\313\223\235\275\335\116\163\352\110\021\331\303"
7690 "\004\136\141\116\141\335\361\034\171\201\271\222\067\110\036\171"
7691 "\213\010\210\230\124\021\041\051\044\157\063\027\222\230\267\235"
7692 "\271\362\115\031\377\142\044\316\360\131\146\162\042\270\231\071"
7693 "\276\155\114\174\053\363\172\063\363\371\246\047\235\373\177\072"
7694 "\376\002\050\171\234\031\067\145\234\200\000\000\000\045\164\105"
7695 "\130\164\144\141\164\145\072\143\162\145\141\164\145\000\062\060"
7696 "\061\061\055\061\062\055\061\061\124\061\070\072\062\061\072\061"
7697 "\065\053\060\060\072\060\060\273\174\223\267\000\000\000\045\164"
7698 "\105\130\164\144\141\164\145\072\155\157\144\151\146\171\000\062"
7699 "\060\060\070\055\060\061\055\060\063\124\061\067\072\060\070\072"
7700 "\062\060\053\060\060\072\060\060\146\260\277\252\000\000\000\031"
7701 "\164\105\130\164\123\157\146\164\167\141\162\145\000\167\167\167"
7702 "\056\151\156\153\163\143\141\160\145\056\157\162\147\233\356\074"
7703 "\032\000\000\000\000\111\105\116\104\256\102\140\202\000\000\050"
7704 "\165\165\141\171\051\162\145\155\157\164\145\055\166\151\145\167"
7705 "\145\162\055\143\157\156\156\145\143\164\056\165\151\000\000\000"
7706 "\013\033\000\000\000\000\000\000\074\077\170\155\154\040\166\145"
7707 "\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157"
7708 "\144\151\156\147\075\042\125\124\106\055\070\042\077\076\012\074"
7709 "\041\055\055\040\107\145\156\145\162\141\164\145\144\040\167\151"
7710 "\164\150\040\147\154\141\144\145\040\063\056\061\070\056\063\040"
7711 "\055\055\076\012\074\151\156\164\145\162\146\141\143\145\076\012"
7712 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
7713 "\042\107\164\153\127\151\156\144\157\167\042\040\151\144\075\042"
7714 "\162\145\155\157\164\145\055\166\151\145\167\145\162\055\143\157"
7715 "\156\156\145\143\164\151\157\156\055\167\151\156\144\157\167\042"
7716 "\076\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7717 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
7718 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
7719 "\076\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7720 "\156\141\155\145\075\042\164\151\164\154\145\042\040\164\162\141"
7721 "\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042\076"
7722 "\103\157\156\156\145\143\164\151\157\156\040\144\145\164\141\151"
7723 "\154\163\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7724 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7725 "\075\042\167\151\156\144\157\167\055\160\157\163\151\164\151\157"
7726 "\156\042\076\063\074\057\160\162\157\160\145\162\164\171\076\012"
7727 "\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040"
7728 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
7729 "\042\107\164\153\126\102\157\170\042\040\151\144\075\042\155\141"
7730 "\151\156\055\142\157\170\042\076\012\040\040\040\040\040\040\040"
7731 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7732 "\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057"
7733 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
7734 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7735 "\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154"
7736 "\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7737 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7738 "\156\141\155\145\075\042\142\157\162\144\145\162\137\167\151\144"
7739 "\164\150\042\076\061\060\074\057\160\162\157\160\145\162\164\171"
7740 "\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7741 "\162\164\171\040\156\141\155\145\075\042\163\160\141\143\151\156"
7742 "\147\042\076\062\060\074\057\160\162\157\160\145\162\164\171\076"
7743 "\012\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076"
7744 "\012\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145"
7745 "\143\164\040\143\154\141\163\163\075\042\107\164\153\126\102\157"
7746 "\170\042\040\151\144\075\042\143\157\156\156\145\143\164\151\157"
7747 "\156\055\141\144\144\162\145\163\163\055\142\157\170\042\076\012"
7748 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7749 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
7750 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
7751 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
7752 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7753 "\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163"
7754 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7755 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7756 "\164\171\040\156\141\155\145\075\042\163\160\141\143\151\156\147"
7757 "\042\076\066\074\057\160\162\157\160\145\162\164\171\076\012\040"
7758 "\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154"
7759 "\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7760 "\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042"
7761 "\107\164\153\114\141\142\145\154\042\040\151\144\075\042\143\157"
7762 "\156\156\145\143\164\151\157\156\055\141\144\144\162\145\163\163"
7763 "\055\154\141\142\145\154\042\076\012\040\040\040\040\040\040\040"
7764 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7765 "\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154\145"
7766 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
7767 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7768 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7769 "\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154"
7770 "\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7771 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7772 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\170\141"
7773 "\154\151\147\156\042\076\060\074\057\160\162\157\160\145\162\164"
7774 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7775 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7776 "\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163\154"
7777 "\141\164\141\142\154\145\075\042\171\145\163\042\076\103\157\156"
7778 "\156\145\143\164\151\157\156\040\137\101\144\144\162\145\163\163"
7779 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
7780 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7781 "\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137"
7782 "\165\156\144\145\162\154\151\156\145\042\076\124\162\165\145\074"
7783 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7784 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
7785 "\145\162\164\171\040\156\141\155\145\075\042\155\156\145\155\157"
7786 "\156\151\143\137\167\151\144\147\145\164\042\076\143\157\156\156"
7787 "\145\143\164\151\157\156\055\141\144\144\162\145\163\163\055\145"
7788 "\156\164\162\171\074\057\160\162\157\160\145\162\164\171\076\012"
7789 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7790 "\074\141\164\164\162\151\142\165\164\145\163\076\012\040\040\040"
7791 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7792 "\141\164\164\162\151\142\165\164\145\040\156\141\155\145\075\042"
7793 "\167\145\151\147\150\164\042\040\166\141\154\165\145\075\042\142"
7794 "\157\154\144\042\057\076\012\040\040\040\040\040\040\040\040\040"
7795 "\040\040\040\040\040\040\040\074\057\141\164\164\162\151\142\165"
7796 "\164\145\163\076\012\040\040\040\040\040\040\040\040\040\040\040"
7797 "\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040"
7798 "\040\040\040\040\040\040\040\040\040\040\040\074\160\141\143\153"
7799 "\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040"
7800 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
7801 "\141\155\145\075\042\145\170\160\141\156\144\042\076\106\141\154"
7802 "\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7803 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7804 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\146\151"
7805 "\154\154\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
7806 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7807 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
7808 "\155\145\075\042\160\157\163\151\164\151\157\156\042\076\060\074"
7809 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7810 "\040\040\040\040\040\040\040\040\040\074\057\160\141\143\153\151"
7811 "\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7812 "\074\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
7813 "\040\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040"
7814 "\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145"
7815 "\143\164\040\143\154\141\163\163\075\042\107\164\153\105\156\164"
7816 "\162\171\042\040\151\144\075\042\143\157\156\156\145\143\164\151"
7817 "\157\156\055\141\144\144\162\145\163\163\055\145\156\164\162\171"
7818 "\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7819 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7820 "\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145"
7821 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
7822 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7823 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
7824 "\146\157\143\165\163\042\076\124\162\165\145\074\057\160\162\157"
7825 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
7826 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
7827 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\141"
7828 "\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040"
7829 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7830 "\040\156\141\155\145\075\042\145\170\160\141\156\144\042\076\106"
7831 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
7832 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7833 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7834 "\146\151\154\154\042\076\124\162\165\145\074\057\160\162\157\160"
7835 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
7836 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
7837 "\156\141\155\145\075\042\160\157\163\151\164\151\157\156\042\076"
7838 "\061\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7839 "\040\040\040\040\040\040\040\040\040\040\040\074\057\160\141\143"
7840 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
7841 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
7842 "\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040"
7843 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157\142"
7844 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\114"
7845 "\141\142\145\154\042\040\151\144\075\042\145\170\141\155\160\154"
7846 "\145\055\154\141\142\145\154\042\076\012\040\040\040\040\040\040"
7847 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
7848 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
7849 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
7850 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
7851 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
7852 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141"
7853 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
7854 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7855 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\170"
7856 "\141\154\151\147\156\042\076\060\074\057\160\162\157\160\145\162"
7857 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7858 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
7859 "\155\145\075\042\163\145\156\163\151\164\151\166\145\042\076\106"
7860 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
7861 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7862 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7863 "\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164\141"
7864 "\142\154\145\075\042\171\145\163\042\076\106\157\162\040\145\170"
7865 "\141\155\160\154\145\054\040\163\160\151\143\145\072\057\057\146"
7866 "\157\157\056\145\170\141\155\160\154\145\056\157\162\147\072\065"
7867 "\071\060\060\074\057\160\162\157\160\145\162\164\171\076\012\040"
7868 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\157"
7869 "\142\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040"
7870 "\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040"
7871 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7872 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\145"
7873 "\170\160\141\156\144\042\076\106\141\154\163\145\074\057\160\162"
7874 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7875 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
7876 "\171\040\156\141\155\145\075\042\146\151\154\154\042\076\124\162"
7877 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7878 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7879 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\160\157"
7880 "\163\151\164\151\157\156\042\076\062\074\057\160\162\157\160\145"
7881 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
7882 "\040\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040"
7883 "\040\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154"
7884 "\144\076\012\040\040\040\040\040\040\040\040\040\040\074\057\157"
7885 "\142\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040"
7886 "\040\074\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
7887 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7888 "\040\156\141\155\145\075\042\145\170\160\141\156\144\042\076\106"
7889 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
7890 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
7891 "\160\145\162\164\171\040\156\141\155\145\075\042\146\151\154\154"
7892 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
7893 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
7894 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\160\157"
7895 "\163\151\164\151\157\156\042\076\060\074\057\160\162\157\160\145"
7896 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\074"
7897 "\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040"
7898 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
7899 "\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040"
7900 "\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141"
7901 "\163\163\075\042\107\164\153\126\102\157\170\042\040\151\144\075"
7902 "\042\162\145\143\145\156\164\055\143\150\157\157\163\145\162\055"
7903 "\142\157\170\042\076\012\040\040\040\040\040\040\040\040\040\040"
7904 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7905 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
7906 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7907 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7908 "\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163"
7909 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
7910 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
7911 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\163"
7912 "\160\141\143\151\156\147\042\076\066\074\057\160\162\157\160\145"
7913 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
7914 "\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
7915 "\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
7916 "\154\141\163\163\075\042\107\164\153\114\141\142\145\154\042\040"
7917 "\151\144\075\042\162\145\143\145\156\164\055\143\150\157\157\163"
7918 "\145\162\055\154\141\142\145\154\042\076\012\040\040\040\040\040"
7919 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
7920 "\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142"
7921 "\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
7922 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7923 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
7924 "\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106"
7925 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
7926 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7927 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7928 "\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164\141"
7929 "\142\154\145\075\042\171\145\163\042\076\122\145\143\145\156\164"
7930 "\040\143\157\156\156\145\143\164\151\157\156\163\074\057\160\162"
7931 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7932 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
7933 "\171\040\156\141\155\145\075\042\170\141\154\151\147\156\042\076"
7934 "\060\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
7935 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\141\164"
7936 "\164\162\151\142\165\164\145\163\076\012\040\040\040\040\040\040"
7937 "\040\040\040\040\040\040\040\040\040\040\040\040\074\141\164\164"
7938 "\162\151\142\165\164\145\040\156\141\155\145\075\042\167\145\151"
7939 "\147\150\164\042\040\166\141\154\165\145\075\042\142\157\154\144"
7940 "\042\057\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7941 "\040\040\040\040\074\057\141\164\164\162\151\142\165\164\145\163"
7942 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7943 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
7944 "\040\040\040\040\040\040\040\040\074\160\141\143\153\151\156\147"
7945 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7946 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7947 "\075\042\145\170\160\141\156\144\042\076\106\141\154\163\145\074"
7948 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
7949 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
7950 "\145\162\164\171\040\156\141\155\145\075\042\146\151\154\154\042"
7951 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
7952 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7953 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7954 "\042\160\157\163\151\164\151\157\156\042\076\060\074\057\160\162"
7955 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
7956 "\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147\076"
7957 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143"
7958 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
7959 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
7960 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
7961 "\143\154\141\163\163\075\042\107\164\153\122\145\143\145\156\164"
7962 "\103\150\157\157\163\145\162\127\151\144\147\145\164\042\040\151"
7963 "\144\075\042\162\145\143\145\156\164\055\143\150\157\157\163\145"
7964 "\162\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
7965 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
7966 "\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106"
7967 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
7968 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7969 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
7970 "\154\151\155\151\164\042\076\062\060\074\057\160\162\157\160\145"
7971 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
7972 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
7973 "\141\155\145\075\042\154\157\143\141\154\137\157\156\154\171\042"
7974 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
7975 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7976 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
7977 "\075\042\163\150\157\167\137\151\143\157\156\163\042\076\106\141"
7978 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
7979 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7980 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\163"
7981 "\157\162\164\137\164\171\160\145\042\076\155\162\165\074\057\160"
7982 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
7983 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
7984 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
7985 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
7986 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
7987 "\164\171\040\156\141\155\145\075\042\145\170\160\141\156\144\042"
7988 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
7989 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
7990 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
7991 "\042\146\151\154\154\042\076\124\162\165\145\074\057\160\162\157"
7992 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
7993 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
7994 "\040\156\141\155\145\075\042\160\157\163\151\164\151\157\156\042"
7995 "\076\061\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
7996 "\040\040\040\040\040\040\040\040\040\040\040\040\074\057\160\141"
7997 "\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040"
7998 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040"
7999 "\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012"
8000 "\040\040\040\040\040\040\040\040\040\040\074\160\141\143\153\151"
8001 "\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8002 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8003 "\145\170\160\141\156\144\042\076\124\162\165\145\074\057\160\162"
8004 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8005 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8006 "\155\145\075\042\146\151\154\154\042\076\124\162\165\145\074\057"
8007 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8008 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8009 "\156\141\155\145\075\042\160\157\163\151\164\151\157\156\042\076"
8010 "\062\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8011 "\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147"
8012 "\076\012\040\040\040\040\040\040\040\040\074\057\143\150\151\154"
8013 "\144\076\012\040\040\040\040\040\040\040\040\074\143\150\151\154"
8014 "\144\076\012\040\040\040\040\040\040\040\040\040\040\074\157\142"
8015 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\110"
8016 "\102\165\164\164\157\156\102\157\170\042\040\151\144\075\042\142"
8017 "\165\164\164\157\156\055\142\157\170\042\076\012\040\040\040\040"
8018 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8019 "\171\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042"
8020 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
8021 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
8022 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
8023 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
8024 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8025 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8026 "\141\155\145\075\042\162\145\163\151\172\145\137\155\157\144\145"
8027 "\042\076\151\155\155\145\144\151\141\164\145\074\057\160\162\157"
8028 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8029 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8030 "\145\075\042\163\160\141\143\151\156\147\042\076\066\074\057\160"
8031 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8032 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8033 "\141\155\145\075\042\154\141\171\157\165\164\137\163\164\171\154"
8034 "\145\042\076\145\156\144\074\057\160\162\157\160\145\162\164\171"
8035 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
8036 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
8037 "\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163"
8038 "\163\075\042\107\164\153\102\165\164\164\157\156\042\040\151\144"
8039 "\075\042\143\141\156\143\145\154\055\142\165\164\164\157\156\042"
8040 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8041 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8042 "\075\042\154\141\142\145\154\042\040\164\162\141\156\163\154\141"
8043 "\164\141\142\154\145\075\042\171\145\163\042\076\137\103\141\156"
8044 "\143\145\154\074\057\160\162\157\160\145\162\164\171\076\012\040"
8045 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8046 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166"
8047 "\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162"
8048 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8049 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8050 "\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165"
8051 "\163\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
8052 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8053 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8054 "\145\075\042\162\145\143\145\151\166\145\163\137\144\145\146\141"
8055 "\165\154\164\042\076\124\162\165\145\074\057\160\162\157\160\145"
8056 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8057 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8058 "\141\155\145\075\042\165\163\145\137\165\156\144\145\162\154\151"
8059 "\156\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
8060 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8061 "\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040"
8062 "\040\040\040\040\040\040\040\040\040\040\074\160\141\143\153\151"
8063 "\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8064 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8065 "\155\145\075\042\145\170\160\141\156\144\042\076\124\162\165\145"
8066 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8067 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
8068 "\160\145\162\164\171\040\156\141\155\145\075\042\146\151\154\154"
8069 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
8070 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8071 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8072 "\075\042\160\157\163\151\164\151\157\156\042\076\060\074\057\160"
8073 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8074 "\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147"
8075 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
8076 "\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040"
8077 "\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040"
8078 "\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164"
8079 "\040\143\154\141\163\163\075\042\107\164\153\102\165\164\164\157"
8080 "\156\042\040\151\144\075\042\143\157\156\156\145\143\164\055\142"
8081 "\165\164\164\157\156\042\076\012\040\040\040\040\040\040\040\040"
8082 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8083 "\171\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164"
8084 "\162\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163"
8085 "\042\076\103\137\157\156\156\145\143\164\074\057\160\162\157\160"
8086 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8087 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8088 "\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076\124"
8089 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
8090 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8091 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
8092 "\141\156\137\146\157\143\165\163\042\076\124\162\165\145\074\057"
8093 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8094 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8095 "\162\164\171\040\156\141\155\145\075\042\162\145\143\145\151\166"
8096 "\145\163\137\144\145\146\141\165\154\164\042\076\124\162\165\145"
8097 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8098 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
8099 "\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137"
8100 "\165\156\144\145\162\154\151\156\145\042\076\124\162\165\145\074"
8101 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8102 "\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143"
8103 "\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8104 "\040\074\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
8105 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
8106 "\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141\156"
8107 "\144\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
8108 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8109 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8110 "\145\075\042\146\151\154\154\042\076\124\162\165\145\074\057\160"
8111 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8112 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8113 "\164\171\040\156\141\155\145\075\042\160\157\163\151\164\151\157"
8114 "\156\042\076\061\074\057\160\162\157\160\145\162\164\171\076\012"
8115 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
8116 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
8117 "\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040"
8118 "\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164"
8119 "\076\012\040\040\040\040\040\040\040\040\040\040\074\160\141\143"
8120 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
8121 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8122 "\075\042\145\170\160\141\156\144\042\076\106\141\154\163\145\074"
8123 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8124 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8125 "\040\156\141\155\145\075\042\146\151\154\154\042\076\106\141\154"
8126 "\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
8127 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8128 "\162\164\171\040\156\141\155\145\075\042\160\141\143\153\137\164"
8129 "\171\160\145\042\076\145\156\144\074\057\160\162\157\160\145\162"
8130 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8131 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8132 "\160\157\163\151\164\151\157\156\042\076\063\074\057\160\162\157"
8133 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8134 "\040\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040"
8135 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
8136 "\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040"
8137 "\040\074\057\143\150\151\154\144\076\012\040\040\074\057\157\142"
8138 "\152\145\143\164\076\012\074\057\151\156\164\145\162\146\141\143"
8139 "\145\076\012\000\000\050\165\165\141\171\051\166\151\162\164\055"
8140 "\166\151\145\167\145\162\056\160\156\147\000\000\000\000\000\000"
8141 "\226\002\000\000\000\000\000\000\211\120\116\107\015\012\032\012"
8142 "\000\000\000\015\111\110\104\122\000\000\000\020\000\000\000\020"
8143 "\010\006\000\000\000\037\363\377\141\000\000\000\004\163\102\111"
8144 "\124\010\010\010\010\174\010\144\210\000\000\000\011\160\110\131"
8145 "\163\000\000\015\327\000\000\015\327\001\102\050\233\170\000\000"
8146 "\000\031\164\105\130\164\123\157\146\164\167\141\162\145\000\167"
8147 "\167\167\056\151\156\153\163\143\141\160\145\056\157\162\147\233"
8148 "\356\074\032\000\000\002\023\111\104\101\124\070\215\245\223\313"
8149 "\152\024\101\024\206\277\123\125\163\155\110\062\040\006\142\022"
8150 "\043\046\013\267\336\066\272\160\143\006\035\360\031\174\004\067"
8151 "\202\270\121\120\004\361\061\174\203\154\134\010\011\021\042\342"
8152 "\336\140\274\201\046\020\203\141\110\234\351\352\351\236\356\072"
8153 "\056\072\021\023\003\101\074\233\052\252\352\377\317\167\316\241"
8154 "\244\335\156\363\077\341\072\235\316\035\021\171\250\252\265\177"
8155 "\021\212\210\127\325\273\116\125\037\267\157\134\217\232\215\046"
8156 "\171\256\307\147\164\202\265\206\156\267\133\137\132\174\365\304"
8157 "\251\152\155\164\164\204\371\233\317\111\351\003\240\172\204\321"
8158 "\336\121\115\042\136\276\270\315\310\350\050\100\303\355\337\247"
8159 "\241\317\205\253\143\210\310\036\042\200\224\253\000\132\356\337"
8160 "\054\157\263\372\356\075\123\123\223\045\121\232\246\200\240\342"
8161 "\210\323\120\012\024\104\344\200\111\066\314\331\356\376\004\034"
8162 "\147\147\147\061\022\112\003\357\075\041\024\030\143\030\344\122"
8163 "\146\053\233\004\224\302\315\037\073\304\076\005\240\141\132\174"
8164 "\130\133\143\172\172\222\044\111\160\111\222\120\024\001\214\043"
8165 "\311\313\154\212\040\100\234\244\354\364\022\124\035\225\372\136"
8166 "\265\211\145\172\346\064\025\147\360\336\343\342\070\106\203\142"
8167 "\114\205\101\160\373\000\044\351\220\154\150\160\265\350\340\370"
8168 "\254\345\363\307\117\314\315\315\322\357\367\113\002\105\021\153"
8169 "\111\203\003\005\105\121\153\251\330\043\206\141\207\114\234\232"
8170 "\300\030\312\022\274\367\000\030\343\260\325\350\157\305\241\030"
8171 "\232\076\105\121\240\010\161\034\343\102\050\273\331\152\070\262"
8172 "\315\301\261\006\121\325\041\106\061\042\045\201\163\256\267\376"
8173 "\155\243\365\354\321\371\143\305\277\051\322\234\365\365\015\200"
8174 "\035\351\164\072\267\152\265\332\003\021\215\100\014\060\123\251"
8175 "\070\127\251\126\305\032\003\100\021\002\131\226\151\076\314\207"
8176 "\300\127\320\240\312\256\367\311\175\227\347\371\102\236\347\013"
8177 "\000\252\032\265\116\214\275\235\157\267\317\135\272\170\231\361"
8178 "\223\343\250\052\133\133\337\131\171\275\242\113\313\113\253\111"
8179 "\157\160\045\313\062\277\117\043\207\277\263\061\146\244\336\254"
8180 "\077\155\106\315\153\326\232\063\200\026\241\370\062\360\203\305"
8181 "\336\156\377\236\210\304\177\276\377\005\167\217\362\106\271\223"
8182 "\015\036\000\000\000\000\111\105\116\104\256\102\140\202\000\000"
8183 "\050\165\165\141\171\051\062\065\066\170\062\065\066\057\000\000"
8184 "\001\000\000\000\166\151\162\164\055\166\151\145\167\145\162\055"
8185 "\160\162\145\146\145\162\145\156\143\145\163\056\165\151\000\000"
8186 "\040\033\000\000\000\000\000\000\074\077\170\155\154\040\166\145"
8187 "\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157"
8188 "\144\151\156\147\075\042\125\124\106\055\070\042\077\076\012\074"
8189 "\151\156\164\145\162\146\141\143\145\076\012\040\040\074\041\055"
8190 "\055\040\151\156\164\145\162\146\141\143\145\055\162\145\161\165"
8191 "\151\162\145\163\040\147\164\153\053\040\062\056\066\040\055\055"
8192 "\076\012\040\040\074\041\055\055\040\151\156\164\145\162\146\141"
8193 "\143\145\055\156\141\155\151\156\147\055\160\157\154\151\143\171"
8194 "\040\164\157\160\154\145\166\145\154\055\143\157\156\164\145\170"
8195 "\164\165\141\154\040\055\055\076\012\040\040\074\157\142\152\145"
8196 "\143\164\040\143\154\141\163\163\075\042\107\164\153\104\151\141"
8197 "\154\157\147\042\040\151\144\075\042\160\162\145\146\145\162\145"
8198 "\156\143\145\163\042\076\012\040\040\040\040\074\160\162\157\160"
8199 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
8200 "\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157"
8201 "\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157\160"
8202 "\145\162\164\171\040\156\141\155\145\075\042\142\157\162\144\145"
8203 "\162\137\167\151\144\164\150\042\076\065\074\057\160\162\157\160"
8204 "\145\162\164\171\076\012\040\040\040\040\074\160\162\157\160\145"
8205 "\162\164\171\040\156\141\155\145\075\042\164\151\164\154\145\042"
8206 "\040\164\162\141\156\163\154\141\164\141\142\154\145\075\042\171"
8207 "\145\163\042\076\120\162\145\146\145\162\145\156\143\145\163\074"
8208 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074"
8209 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\164"
8210 "\171\160\145\137\150\151\156\164\042\076\156\157\162\155\141\154"
8211 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8212 "\074\163\151\147\156\141\154\040\156\141\155\145\075\042\144\145"
8213 "\154\145\164\145\055\145\166\145\156\164\042\040\150\141\156\144"
8214 "\154\145\162\075\042\147\164\153\137\167\151\144\147\145\164\137"
8215 "\150\151\144\145\137\157\156\137\144\145\154\145\164\145\042\040"
8216 "\163\167\141\160\160\145\144\075\042\156\157\042\057\076\012\040"
8217 "\040\040\040\074\143\150\151\154\144\040\151\156\164\145\162\156"
8218 "\141\154\055\143\150\151\154\144\075\042\166\142\157\170\042\076"
8219 "\012\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
8220 "\154\141\163\163\075\042\107\164\153\126\102\157\170\042\040\151"
8221 "\144\075\042\144\151\141\154\157\147\055\166\142\157\170\061\042"
8222 "\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8223 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
8224 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
8225 "\171\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160"
8226 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
8227 "\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157"
8228 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\074"
8229 "\143\150\151\154\144\040\151\156\164\145\162\156\141\154\055\143"
8230 "\150\151\154\144\075\042\141\143\164\151\157\156\137\141\162\145"
8231 "\141\042\076\012\040\040\040\040\040\040\040\040\040\040\074\157"
8232 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
8233 "\110\102\165\164\164\157\156\102\157\170\042\040\151\144\075\042"
8234 "\144\151\141\154\157\147\055\141\143\164\151\157\156\137\141\162"
8235 "\145\141\061\042\076\012\040\040\040\040\040\040\040\040\040\040"
8236 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8237 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
8238 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8239 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8240 "\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163"
8241 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
8242 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
8243 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154"
8244 "\141\171\157\165\164\137\163\164\171\154\145\042\076\145\156\144"
8245 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8246 "\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012"
8247 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
8248 "\154\141\143\145\150\157\154\144\145\162\057\076\012\040\040\040"
8249 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
8250 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
8251 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
8252 "\040\040\040\040\074\160\154\141\143\145\150\157\154\144\145\162"
8253 "\057\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
8254 "\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
8255 "\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040"
8256 "\040\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012"
8257 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
8258 "\160\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141"
8259 "\156\144\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
8260 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8261 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8262 "\146\151\154\154\042\076\124\162\165\145\074\057\160\162\157\160"
8263 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8264 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8265 "\075\042\160\157\163\151\164\151\157\156\042\076\060\074\057\160"
8266 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8267 "\040\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040"
8268 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
8269 "\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040"
8270 "\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164"
8271 "\040\143\154\141\163\163\075\042\107\164\153\116\157\164\145\142"
8272 "\157\157\153\042\040\151\144\075\042\156\157\164\145\142\157\157"
8273 "\153\061\042\076\012\040\040\040\040\040\040\040\040\040\040\040"
8274 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
8275 "\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057"
8276 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8277 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8278 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
8279 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
8280 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150"
8281 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
8282 "\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163"
8283 "\075\042\107\164\153\126\102\157\170\042\040\151\144\075\042\166"
8284 "\142\157\170\061\042\076\012\040\040\040\040\040\040\040\040\040"
8285 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8286 "\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076"
8287 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
8288 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8289 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8290 "\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145"
8291 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8292 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
8293 "\160\145\162\164\171\040\156\141\155\145\075\042\142\157\162\144"
8294 "\145\162\137\167\151\144\164\150\042\076\061\070\074\057\160\162"
8295 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8296 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8297 "\171\040\156\141\155\145\075\042\163\160\141\143\151\156\147\042"
8298 "\076\066\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
8299 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
8300 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
8301 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
8302 "\143\154\141\163\163\075\042\107\164\153\114\141\142\145\154\042"
8303 "\040\151\144\075\042\154\141\142\145\154\062\042\076\012\040\040"
8304 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8305 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8306 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
8307 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8308 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8309 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
8310 "\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074"
8311 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8312 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8313 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\170"
8314 "\141\154\151\147\156\042\076\060\074\057\160\162\157\160\145\162"
8315 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8316 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8317 "\171\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164"
8318 "\162\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163"
8319 "\042\076\106\157\154\144\145\162\040\163\150\141\162\151\156\147"
8320 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8321 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8322 "\074\141\164\164\162\151\142\165\164\145\163\076\012\040\040\040"
8323 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8324 "\040\040\040\074\141\164\164\162\151\142\165\164\145\040\156\141"
8325 "\155\145\075\042\167\145\151\147\150\164\042\040\166\141\154\165"
8326 "\145\075\042\142\157\154\144\042\057\076\012\040\040\040\040\040"
8327 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8328 "\057\141\164\164\162\151\142\165\164\145\163\076\012\040\040\040"
8329 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8330 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
8331 "\040\040\040\040\040\040\040\040\040\040\040\074\160\141\143\153"
8332 "\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040"
8333 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8334 "\164\171\040\156\141\155\145\075\042\145\170\160\141\156\144\042"
8335 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
8336 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8337 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8338 "\156\141\155\145\075\042\146\151\154\154\042\076\106\141\154\163"
8339 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8340 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8341 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
8342 "\042\160\157\163\151\164\151\157\156\042\076\060\074\057\160\162"
8343 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8344 "\040\040\040\040\040\040\040\040\040\040\074\057\160\141\143\153"
8345 "\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040"
8346 "\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040"
8347 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
8348 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
8349 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
8350 "\143\154\141\163\163\075\042\107\164\153\124\141\142\154\145\042"
8351 "\040\151\144\075\042\164\141\142\154\145\061\042\076\012\040\040"
8352 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8353 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8354 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
8355 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8356 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8357 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
8358 "\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074"
8359 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8360 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8361 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\142"
8362 "\157\162\144\145\162\137\167\151\144\164\150\042\076\066\074\057"
8363 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8364 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
8365 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\156\137"
8366 "\162\157\167\163\042\076\063\074\057\160\162\157\160\145\162\164"
8367 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8368 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8369 "\040\156\141\155\145\075\042\156\137\143\157\154\165\155\156\163"
8370 "\042\076\062\074\057\160\162\157\160\145\162\164\171\076\012\040"
8371 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8372 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8373 "\145\075\042\143\157\154\165\155\156\137\163\160\141\143\151\156"
8374 "\147\042\076\061\062\074\057\160\162\157\160\145\162\164\171\076"
8375 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8376 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8377 "\141\155\145\075\042\162\157\167\137\163\160\141\143\151\156\147"
8378 "\042\076\066\074\057\160\162\157\160\145\162\164\171\076\012\040"
8379 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8380 "\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040"
8381 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8382 "\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042"
8383 "\107\164\153\103\150\145\143\153\102\165\164\164\157\156\042\040"
8384 "\151\144\075\042\143\142\163\150\141\162\145\146\157\154\144\145"
8385 "\162\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8386 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
8387 "\160\145\162\164\171\040\156\141\155\145\075\042\154\141\142\145"
8388 "\154\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075"
8389 "\042\171\145\163\042\076\123\150\141\162\145\040\146\157\154\144"
8390 "\145\162\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
8391 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8392 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8393 "\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076\124"
8394 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
8395 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8396 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8397 "\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163"
8398 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
8399 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8400 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8401 "\162\164\171\040\156\141\155\145\075\042\162\145\143\145\151\166"
8402 "\145\163\137\144\145\146\141\165\154\164\042\076\106\141\154\163"
8403 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8404 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8405 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8406 "\141\155\145\075\042\144\162\141\167\137\151\156\144\151\143\141"
8407 "\164\157\162\042\076\124\162\165\145\074\057\160\162\157\160\145"
8408 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8409 "\040\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152"
8410 "\145\143\164\076\012\040\040\040\040\040\040\040\040\040\040\040"
8411 "\040\040\040\040\040\040\040\040\040\040\040\074\160\141\143\153"
8412 "\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040"
8413 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
8414 "\157\160\145\162\164\171\040\156\141\155\145\075\042\170\137\157"
8415 "\160\164\151\157\156\163\042\057\076\012\040\040\040\040\040\040"
8416 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8417 "\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
8418 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8419 "\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
8420 "\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151"
8421 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8422 "\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143"
8423 "\164\040\143\154\141\163\163\075\042\107\164\153\103\150\145\143"
8424 "\153\102\165\164\164\157\156\042\040\151\144\075\042\143\142\163"
8425 "\150\141\162\145\146\157\154\144\145\162\162\157\042\076\012\040"
8426 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8427 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8428 "\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162"
8429 "\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042"
8430 "\076\122\145\141\144\055\157\156\154\171\074\057\160\162\157\160"
8431 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8432 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
8433 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151"
8434 "\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157"
8435 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8436 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8437 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
8438 "\141\156\137\146\157\143\165\163\042\076\124\162\165\145\074\057"
8439 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8440 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8441 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8442 "\075\042\162\145\143\145\151\166\145\163\137\144\145\146\141\165"
8443 "\154\164\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
8444 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8445 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
8446 "\157\160\145\162\164\171\040\156\141\155\145\075\042\144\162\141"
8447 "\167\137\151\156\144\151\143\141\164\157\162\042\076\124\162\165"
8448 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8449 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8450 "\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040"
8451 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8452 "\040\040\040\074\160\141\143\153\151\156\147\076\012\040\040\040"
8453 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8454 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8455 "\141\155\145\075\042\162\151\147\150\164\137\141\164\164\141\143"
8456 "\150\042\076\062\074\057\160\162\157\160\145\162\164\171\076\012"
8457 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8458 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8459 "\171\040\156\141\155\145\075\042\164\157\160\137\141\164\164\141"
8460 "\143\150\042\076\061\074\057\160\162\157\160\145\162\164\171\076"
8461 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8462 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8463 "\164\171\040\156\141\155\145\075\042\142\157\164\164\157\155\137"
8464 "\141\164\164\141\143\150\042\076\062\074\057\160\162\157\160\145"
8465 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8466 "\040\040\040\040\040\040\040\040\040\040\040\074\057\160\141\143"
8467 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
8468 "\040\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154"
8469 "\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8470 "\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040"
8471 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8472 "\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141"
8473 "\163\163\075\042\107\164\153\103\150\145\143\153\102\165\164\164"
8474 "\157\156\042\040\151\144\075\042\143\142\163\150\141\162\145\143"
8475 "\154\151\160\142\157\141\162\144\042\076\012\040\040\040\040\040"
8476 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8477 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8478 "\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163\154"
8479 "\141\164\141\142\154\145\075\042\171\145\163\042\076\123\150\141"
8480 "\162\145\040\143\154\151\160\142\157\141\162\144\074\057\160\162"
8481 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8482 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8483 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8484 "\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160"
8485 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8486 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8487 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
8488 "\042\143\141\156\137\146\157\143\165\163\042\076\124\162\165\145"
8489 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8490 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8491 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8492 "\155\145\075\042\162\145\143\145\151\166\145\163\137\144\145\146"
8493 "\141\165\154\164\042\076\106\141\154\163\145\074\057\160\162\157"
8494 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8495 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8496 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\144"
8497 "\162\141\167\137\151\156\144\151\143\141\164\157\162\042\076\124"
8498 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
8499 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8500 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
8501 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8502 "\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040"
8503 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8504 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8505 "\040\156\141\155\145\075\042\162\151\147\150\164\137\141\164\164"
8506 "\141\143\150\042\076\062\074\057\160\162\157\160\145\162\164\171"
8507 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8508 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8509 "\162\164\171\040\156\141\155\145\075\042\164\157\160\137\141\164"
8510 "\164\141\143\150\042\076\062\074\057\160\162\157\160\145\162\164"
8511 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8512 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
8513 "\145\162\164\171\040\156\141\155\145\075\042\142\157\164\164\157"
8514 "\155\137\141\164\164\141\143\150\042\076\063\074\057\160\162\157"
8515 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8516 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\160"
8517 "\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040"
8518 "\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143\150"
8519 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
8520 "\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076"
8521 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8522 "\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
8523 "\154\141\163\163\075\042\107\164\153\106\151\154\145\103\150\157"
8524 "\157\163\145\162\102\165\164\164\157\156\042\040\151\144\075\042"
8525 "\146\143\163\150\141\162\145\146\157\154\144\145\162\042\076\012"
8526 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8527 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8528 "\171\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042"
8529 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
8530 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8531 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8532 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
8533 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
8534 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8535 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
8536 "\157\160\145\162\164\171\040\156\141\155\145\075\042\141\143\164"
8537 "\151\157\156\042\076\163\145\154\145\143\164\055\146\157\154\144"
8538 "\145\162\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
8539 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8540 "\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040"
8541 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8542 "\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040\040"
8543 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8544 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8545 "\156\141\155\145\075\042\154\145\146\164\137\141\164\164\141\143"
8546 "\150\042\076\061\074\057\160\162\157\160\145\162\164\171\076\012"
8547 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8548 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8549 "\171\040\156\141\155\145\075\042\162\151\147\150\164\137\141\164"
8550 "\164\141\143\150\042\076\062\074\057\160\162\157\160\145\162\164"
8551 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8552 "\040\040\040\040\040\040\040\040\040\074\057\160\141\143\153\151"
8553 "\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8554 "\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076"
8555 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8556 "\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040"
8557 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8558 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
8559 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
8560 "\157\160\145\162\164\171\040\156\141\155\145\075\042\145\170\160"
8561 "\141\156\144\042\076\106\141\154\163\145\074\057\160\162\157\160"
8562 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8563 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8564 "\162\164\171\040\156\141\155\145\075\042\146\151\154\154\042\076"
8565 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
8566 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8567 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8568 "\141\155\145\075\042\160\157\163\151\164\151\157\156\042\076\061"
8569 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8570 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
8571 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
8572 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
8573 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8574 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
8575 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
8576 "\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154"
8577 "\144\040\164\171\160\145\075\042\164\141\142\042\076\012\040\040"
8578 "\040\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152"
8579 "\145\143\164\040\143\154\141\163\163\075\042\107\164\153\114\141"
8580 "\142\145\154\042\040\151\144\075\042\154\141\142\145\154\061\042"
8581 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8582 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8583 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
8584 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8585 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
8586 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
8587 "\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157"
8588 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8589 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8590 "\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162"
8591 "\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042"
8592 "\076\123\160\151\143\145\074\057\160\162\157\160\145\162\164\171"
8593 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8594 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
8595 "\040\040\040\040\040\040\040\040\074\160\141\143\153\151\156\147"
8596 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8597 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8598 "\075\042\164\141\142\137\146\151\154\154\042\076\106\141\154\163"
8599 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8600 "\040\040\040\040\040\040\040\040\040\040\040\074\057\160\141\143"
8601 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
8602 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
8603 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
8604 "\040\040\040\040\040\040\040\040\040\074\160\141\143\153\151\156"
8605 "\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
8606 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\145"
8607 "\170\160\141\156\144\042\076\124\162\165\145\074\057\160\162\157"
8608 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8609 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8610 "\145\075\042\146\151\154\154\042\076\124\162\165\145\074\057\160"
8611 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8612 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8613 "\141\155\145\075\042\160\157\163\151\164\151\157\156\042\076\061"
8614 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8615 "\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147\076"
8616 "\012\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
8617 "\076\012\040\040\040\040\040\040\074\057\157\142\152\145\143\164"
8618 "\076\012\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
8619 "\040\074\057\157\142\152\145\143\164\076\012\074\057\151\156\164"
8620 "\145\162\146\141\143\145\076\012\000\000\050\165\165\141\171\051"
8621 "\166\151\162\164\055\166\151\145\167\145\162\055\147\165\145\163"
8622 "\164\055\144\145\164\141\151\154\163\056\165\151\000\000\000\000"
8623 "\024\025\000\000\000\000\000\000\074\077\170\155\154\040\166\145"
8624 "\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157"
8625 "\144\151\156\147\075\042\125\124\106\055\070\042\077\076\012\074"
8626 "\041\055\055\040\107\145\156\145\162\141\164\145\144\040\167\151"
8627 "\164\150\040\147\154\141\144\145\040\063\056\061\066\056\060\040"
8628 "\157\156\040\124\150\165\040\112\141\156\040\061\066\040\061\066"
8629 "\072\061\063\072\063\070\040\062\060\061\064\040\055\055\076\012"
8630 "\074\151\156\164\145\162\146\141\143\145\076\012\040\040\074\041"
8631 "\055\055\040\151\156\164\145\162\146\141\143\145\055\162\145\161"
8632 "\165\151\162\145\163\040\147\164\153\053\040\063\056\060\040\055"
8633 "\055\076\012\040\040\074\157\142\152\145\143\164\040\143\154\141"
8634 "\163\163\075\042\107\164\153\104\151\141\154\157\147\042\040\151"
8635 "\144\075\042\147\165\145\163\164\144\145\164\141\151\154\163\144"
8636 "\151\141\154\157\147\042\076\012\040\040\040\040\074\160\162\157"
8637 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
8638 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
8639 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
8640 "\160\145\162\164\171\040\156\141\155\145\075\042\164\151\164\154"
8641 "\145\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075"
8642 "\042\171\145\163\042\076\107\165\145\163\164\040\104\145\164\141"
8643 "\151\154\163\074\057\160\162\157\160\145\162\164\171\076\012\040"
8644 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8645 "\145\075\042\162\145\163\151\172\141\142\154\145\042\076\124\162"
8646 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
8647 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8648 "\075\042\144\145\146\141\165\154\164\137\167\151\144\164\150\042"
8649 "\076\064\060\060\074\057\160\162\157\160\145\162\164\171\076\012"
8650 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8651 "\155\145\075\042\164\171\160\145\137\150\151\156\164\042\076\144"
8652 "\151\141\154\157\147\074\057\160\162\157\160\145\162\164\171\076"
8653 "\012\040\040\040\040\074\163\151\147\156\141\154\040\156\141\155"
8654 "\145\075\042\162\145\163\160\157\156\163\145\042\040\150\141\156"
8655 "\144\154\145\162\075\042\166\151\162\164\137\166\151\145\167\145"
8656 "\162\137\167\151\156\144\157\167\137\147\165\145\163\164\137\144"
8657 "\145\164\141\151\154\163\137\162\145\163\160\157\156\163\145\042"
8658 "\040\163\167\141\160\160\145\144\075\042\156\157\042\057\076\012"
8659 "\040\040\040\040\074\143\150\151\154\144\040\151\156\164\145\162"
8660 "\156\141\154\055\143\150\151\154\144\075\042\166\142\157\170\042"
8661 "\076\012\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
8662 "\143\154\141\163\163\075\042\107\164\153\102\157\170\042\040\151"
8663 "\144\075\042\144\151\141\154\157\147\055\166\142\157\170\062\042"
8664 "\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8665 "\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157"
8666 "\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160"
8667 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\074\160"
8668 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\157\162"
8669 "\151\145\156\164\141\164\151\157\156\042\076\166\145\162\164\151"
8670 "\143\141\154\074\057\160\162\157\160\145\162\164\171\076\012\040"
8671 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8672 "\040\156\141\155\145\075\042\163\160\141\143\151\156\147\042\076"
8673 "\062\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8674 "\040\040\040\040\040\074\143\150\151\154\144\040\151\156\164\145"
8675 "\162\156\141\154\055\143\150\151\154\144\075\042\141\143\164\151"
8676 "\157\156\137\141\162\145\141\042\076\012\040\040\040\040\040\040"
8677 "\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163"
8678 "\163\075\042\107\164\153\102\165\164\164\157\156\102\157\170\042"
8679 "\040\151\144\075\042\144\151\141\154\157\147\055\141\143\164\151"
8680 "\157\156\137\141\162\145\141\062\042\076\012\040\040\040\040\040"
8681 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8682 "\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163"
8683 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
8684 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
8685 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154"
8686 "\141\171\157\165\164\137\163\164\171\154\145\042\076\145\156\144"
8687 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8688 "\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012"
8689 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157"
8690 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
8691 "\102\165\164\164\157\156\042\040\151\144\075\042\142\165\164\164"
8692 "\157\156\061\042\076\012\040\040\040\040\040\040\040\040\040\040"
8693 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8694 "\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162\141"
8695 "\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042\076"
8696 "\137\103\154\157\163\145\074\057\160\162\157\160\145\162\164\171"
8697 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8698 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8699 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
8700 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8701 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
8702 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
8703 "\157\143\165\163\042\076\124\162\165\145\074\057\160\162\157\160"
8704 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8705 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8706 "\156\141\155\145\075\042\162\145\143\145\151\166\145\163\137\144"
8707 "\145\146\141\165\154\164\042\076\124\162\165\145\074\057\160\162"
8708 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8709 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8710 "\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144\145"
8711 "\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162\157"
8712 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8713 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
8714 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\141"
8715 "\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040"
8716 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8717 "\040\156\141\155\145\075\042\145\170\160\141\156\144\042\076\106"
8718 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
8719 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8720 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8721 "\146\151\154\154\042\076\124\162\165\145\074\057\160\162\157\160"
8722 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8723 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8724 "\156\141\155\145\075\042\160\157\163\151\164\151\157\156\042\076"
8725 "\060\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8726 "\040\040\040\040\040\040\040\040\040\040\040\074\057\160\141\143"
8727 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040"
8728 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
8729 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
8730 "\040\040\040\040\040\040\040\040\040\074\160\141\143\153\151\156"
8731 "\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
8732 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\145"
8733 "\170\160\141\156\144\042\076\106\141\154\163\145\074\057\160\162"
8734 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8735 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8736 "\155\145\075\042\146\151\154\154\042\076\124\162\165\145\074\057"
8737 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8738 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8739 "\156\141\155\145\075\042\160\141\143\153\137\164\171\160\145\042"
8740 "\076\145\156\144\074\057\160\162\157\160\145\162\164\171\076\012"
8741 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
8742 "\160\145\162\164\171\040\156\141\155\145\075\042\160\157\163\151"
8743 "\164\151\157\156\042\076\060\074\057\160\162\157\160\145\162\164"
8744 "\171\076\012\040\040\040\040\040\040\040\040\040\040\074\057\160"
8745 "\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040"
8746 "\074\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
8747 "\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
8748 "\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163"
8749 "\075\042\107\164\153\124\141\142\154\145\042\040\151\144\075\042"
8750 "\147\162\151\144\061\042\076\012\040\040\040\040\040\040\040\040"
8751 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8752 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
8753 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8754 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8755 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
8756 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
8757 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8758 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
8759 "\042\142\157\162\144\145\162\137\167\151\144\164\150\042\076\066"
8760 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8761 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8762 "\171\040\156\141\155\145\075\042\162\157\167\137\163\160\141\143"
8763 "\151\156\147\042\076\066\074\057\160\162\157\160\145\162\164\171"
8764 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
8765 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143\157"
8766 "\154\165\155\156\137\163\160\141\143\151\156\147\042\076\066\074"
8767 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8768 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8769 "\040\156\141\155\145\075\042\156\137\162\157\167\163\042\076\062"
8770 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
8771 "\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012"
8772 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157"
8773 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
8774 "\114\141\142\145\154\042\040\151\144\075\042\154\141\142\145\154"
8775 "\061\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8776 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8777 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
8778 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
8779 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
8780 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
8781 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
8782 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8783 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8784 "\164\171\040\156\141\155\145\075\042\170\141\154\151\147\156\042"
8785 "\076\061\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
8786 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
8787 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154\141"
8788 "\142\145\154\042\040\164\162\141\156\163\154\141\164\141\142\154"
8789 "\145\075\042\171\145\163\042\076\116\141\155\145\072\074\057\160"
8790 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8791 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
8792 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8793 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
8794 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8795 "\164\171\040\156\141\155\145\075\042\170\137\157\160\164\151\157"
8796 "\156\163\042\076\107\124\113\137\123\110\122\111\116\113\040\174"
8797 "\040\107\124\113\137\106\111\114\114\074\057\160\162\157\160\145"
8798 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8799 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8800 "\141\155\145\075\042\171\137\157\160\164\151\157\156\163\042\076"
8801 "\107\124\113\137\106\111\114\114\074\057\160\162\157\160\145\162"
8802 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8803 "\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040\040"
8804 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
8805 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
8806 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
8807 "\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163"
8808 "\163\075\042\107\164\153\114\141\142\145\154\042\040\151\144\075"
8809 "\042\154\141\142\145\154\062\042\076\012\040\040\040\040\040\040"
8810 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8811 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
8812 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
8813 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8814 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8815 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141"
8816 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
8817 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8818 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\170"
8819 "\141\154\151\147\156\042\076\061\074\057\160\162\157\160\145\162"
8820 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8821 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8822 "\155\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163"
8823 "\154\141\164\141\142\154\145\075\042\171\145\163\042\076\107\125"
8824 "\111\104\072\074\057\160\162\157\160\145\162\164\171\076\012\040"
8825 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\157"
8826 "\142\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040"
8827 "\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040"
8828 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8829 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\164"
8830 "\157\160\137\141\164\164\141\143\150\042\076\061\074\057\160\162"
8831 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8832 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8833 "\171\040\156\141\155\145\075\042\142\157\164\164\157\155\137\141"
8834 "\164\164\141\143\150\042\076\062\074\057\160\162\157\160\145\162"
8835 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8836 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
8837 "\155\145\075\042\170\137\157\160\164\151\157\156\163\042\076\107"
8838 "\124\113\137\123\110\122\111\116\113\040\174\040\107\124\113\137"
8839 "\106\111\114\114\074\057\160\162\157\160\145\162\164\171\076\012"
8840 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8841 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8842 "\171\137\157\160\164\151\157\156\163\042\076\107\124\113\137\106"
8843 "\111\114\114\074\057\160\162\157\160\145\162\164\171\076\012\040"
8844 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\160"
8845 "\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040"
8846 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
8847 "\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076"
8848 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8849 "\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164"
8850 "\153\114\141\142\145\154\042\040\151\144\075\042\156\141\155\145"
8851 "\166\141\154\165\145\154\141\142\145\154\042\076\012\040\040\040"
8852 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
8853 "\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163"
8854 "\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160"
8855 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8856 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8857 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
8858 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
8859 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8860 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8861 "\075\042\170\141\154\151\147\156\042\076\060\074\057\160\162\157"
8862 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8863 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
8864 "\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162"
8865 "\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042"
8866 "\076\154\141\142\145\154\074\057\160\162\157\160\145\162\164\171"
8867 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8868 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
8869 "\075\042\163\145\154\145\143\164\141\142\154\145\042\076\124\162"
8870 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
8871 "\040\040\040\040\040\040\040\040\040\040\040\040\074\057\157\142"
8872 "\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040\040"
8873 "\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040\040"
8874 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
8875 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154\145"
8876 "\146\164\137\141\164\164\141\143\150\042\076\061\074\057\160\162"
8877 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
8878 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8879 "\171\040\156\141\155\145\075\042\162\151\147\150\164\137\141\164"
8880 "\164\141\143\150\042\076\062\074\057\160\162\157\160\145\162\164"
8881 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
8882 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8883 "\145\075\042\171\137\157\160\164\151\157\156\163\042\076\107\124"
8884 "\113\137\106\111\114\114\074\057\160\162\157\160\145\162\164\171"
8885 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8886 "\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
8887 "\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012"
8888 "\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151"
8889 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
8890 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
8891 "\042\107\164\153\114\141\142\145\154\042\040\151\144\075\042\147"
8892 "\165\151\144\166\141\154\165\145\154\141\142\145\154\042\076\012"
8893 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8894 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
8895 "\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160"
8896 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
8897 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
8898 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
8899 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
8900 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8901 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8902 "\141\155\145\075\042\170\141\154\151\147\156\042\076\060\074\057"
8903 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8904 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
8905 "\162\164\171\040\156\141\155\145\075\042\154\141\142\145\154\042"
8906 "\040\164\162\141\156\163\154\141\164\141\142\154\145\075\042\171"
8907 "\145\163\042\076\154\141\142\145\154\074\057\160\162\157\160\145"
8908 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8909 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
8910 "\141\155\145\075\042\163\145\154\145\143\164\141\142\154\145\042"
8911 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
8912 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8913 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
8914 "\040\040\040\040\040\040\040\074\160\141\143\153\151\156\147\076"
8915 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
8916 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
8917 "\042\154\145\146\164\137\141\164\164\141\143\150\042\076\061\074"
8918 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8919 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
8920 "\145\162\164\171\040\156\141\155\145\075\042\162\151\147\150\164"
8921 "\137\141\164\164\141\143\150\042\076\062\074\057\160\162\157\160"
8922 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
8923 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
8924 "\156\141\155\145\075\042\164\157\160\137\141\164\164\141\143\150"
8925 "\042\076\061\074\057\160\162\157\160\145\162\164\171\076\012\040"
8926 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
8927 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\142"
8928 "\157\164\164\157\155\137\141\164\164\141\143\150\042\076\062\074"
8929 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
8930 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
8931 "\145\162\164\171\040\156\141\155\145\075\042\171\137\157\160\164"
8932 "\151\157\156\163\042\076\107\124\113\137\106\111\114\114\074\057"
8933 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8934 "\040\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156"
8935 "\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
8936 "\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
8937 "\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040"
8938 "\040\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012"
8939 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
8940 "\160\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141"
8941 "\156\144\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
8942 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
8943 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
8944 "\042\146\151\154\154\042\076\124\162\165\145\074\057\160\162\157"
8945 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
8946 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
8947 "\145\075\042\160\157\163\151\164\151\157\156\042\076\061\074\057"
8948 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
8949 "\040\040\040\040\074\057\160\141\143\153\151\156\147\076\012\040"
8950 "\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012"
8951 "\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012"
8952 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
8953 "\040\074\141\143\164\151\157\156\055\167\151\144\147\145\164\163"
8954 "\076\012\040\040\040\040\040\040\074\141\143\164\151\157\156\055"
8955 "\167\151\144\147\145\164\040\162\145\163\160\157\156\163\145\075"
8956 "\042\055\067\042\076\142\165\164\164\157\156\061\074\057\141\143"
8957 "\164\151\157\156\055\167\151\144\147\145\164\076\012\040\040\040"
8958 "\040\074\057\141\143\164\151\157\156\055\167\151\144\147\145\164"
8959 "\163\076\012\040\040\074\057\157\142\152\145\143\164\076\012\074"
8960 "\057\151\156\164\145\162\146\141\143\145\076\012\000\000\050\165"
8961 "\165\141\171\051\166\151\162\164\055\166\151\145\167\145\162\056"
8962 "\165\151\000\000\000\000\000\000\325\116\000\000\000\000\000\000"
8963 "\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061"
8964 "\056\060\042\040\145\156\143\157\144\151\156\147\075\042\125\124"
8965 "\106\055\070\042\077\076\012\074\041\055\055\040\107\145\156\145"
8966 "\162\141\164\145\144\040\167\151\164\150\040\147\154\141\144\145"
8967 "\040\063\056\062\060\056\060\040\055\055\076\012\074\151\156\164"
8968 "\145\162\146\141\143\145\076\012\040\040\074\162\145\161\165\151"
8969 "\162\145\163\040\154\151\142\075\042\147\164\153\053\042\040\166"
8970 "\145\162\163\151\157\156\075\042\063\056\060\042\057\076\012\040"
8971 "\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042"
8972 "\107\164\153\101\143\143\145\154\107\162\157\165\160\042\040\151"
8973 "\144\075\042\141\143\143\145\154\147\162\157\165\160\042\057\076"
8974 "\012\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163"
8975 "\075\042\107\164\153\101\160\160\154\151\143\141\164\151\157\156"
8976 "\127\151\156\144\157\167\042\040\151\144\075\042\166\151\145\167"
8977 "\145\162\042\076\012\040\040\040\040\074\160\162\157\160\145\162"
8978 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
8979 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
8980 "\162\164\171\076\012\040\040\040\040\074\160\162\157\160\145\162"
8981 "\164\171\040\156\141\155\145\075\042\144\145\146\141\165\154\164"
8982 "\137\167\151\144\164\150\042\076\061\060\062\064\074\057\160\162"
8983 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
8984 "\160\145\162\164\171\040\156\141\155\145\075\042\144\145\146\141"
8985 "\165\154\164\137\150\145\151\147\150\164\042\076\067\066\070\074"
8986 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074"
8987 "\163\151\147\156\141\154\040\156\141\155\145\075\042\144\145\154"
8988 "\145\164\145\055\145\166\145\156\164\042\040\150\141\156\144\154"
8989 "\145\162\075\042\166\151\162\164\137\166\151\145\167\145\162\137"
8990 "\167\151\156\144\157\167\137\144\145\154\145\164\145\042\040\163"
8991 "\167\141\160\160\145\144\075\042\156\157\042\057\076\012\040\040"
8992 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
8993 "\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107"
8994 "\164\153\117\166\145\162\154\141\171\042\040\151\144\075\042\166"
8995 "\151\145\167\145\162\055\157\166\145\162\154\141\171\042\076\012"
8996 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
8997 "\171\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042"
8998 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
8999 "\012\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9000 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
9001 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9002 "\162\164\171\076\012\040\040\040\040\040\040\040\040\074\143\150"
9003 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\074"
9004 "\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164"
9005 "\153\126\102\157\170\042\040\151\144\075\042\166\151\145\167\145"
9006 "\162\055\142\157\170\042\076\012\040\040\040\040\040\040\040\040"
9007 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9008 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
9009 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9010 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9011 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
9012 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9013 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9014 "\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
9015 "\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
9016 "\154\141\163\163\075\042\107\164\153\115\145\156\165\102\141\162"
9017 "\042\040\151\144\075\042\164\157\160\055\155\145\156\165\042\076"
9018 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9019 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9020 "\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057"
9021 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
9022 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
9023 "\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157"
9024 "\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160"
9025 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
9026 "\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040\040"
9027 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9028 "\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107"
9029 "\164\153\115\145\156\165\111\164\145\155\042\040\151\144\075\042"
9030 "\155\145\156\165\055\146\151\154\145\042\076\012\040\040\040\040"
9031 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9032 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
9033 "\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160"
9034 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
9035 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9036 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
9037 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
9038 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
9039 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9040 "\157\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145"
9041 "\137\141\143\164\151\157\156\137\141\160\160\145\141\162\141\156"
9042 "\143\145\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9043 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9044 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9045 "\164\171\040\156\141\155\145\075\042\154\141\142\145\154\042\040"
9046 "\164\162\141\156\163\154\141\164\141\142\154\145\075\042\171\145"
9047 "\163\042\076\137\106\151\154\145\074\057\160\162\157\160\145\162"
9048 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9049 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
9050 "\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144\145"
9051 "\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162\157"
9052 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9053 "\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154"
9054 "\144\040\164\171\160\145\075\042\163\165\142\155\145\156\165\042"
9055 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9056 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
9057 "\143\154\141\163\163\075\042\107\164\153\115\145\156\165\042\040"
9058 "\151\144\075\042\155\145\156\165\061\042\076\012\040\040\040\040"
9059 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9060 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9061 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
9062 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9063 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9064 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9065 "\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076"
9066 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
9067 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9068 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9069 "\164\171\040\156\141\155\145\075\042\141\143\143\145\154\137\147"
9070 "\162\157\165\160\042\076\141\143\143\145\154\147\162\157\165\160"
9071 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9072 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9073 "\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040"
9074 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9075 "\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154"
9076 "\141\163\163\075\042\107\164\153\115\145\156\165\111\164\145\155"
9077 "\042\040\151\144\075\042\155\145\156\165\055\146\151\154\145\055"
9078 "\163\143\162\145\145\156\163\150\157\164\042\076\012\040\040\040"
9079 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9080 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9081 "\164\171\040\156\141\155\145\075\042\163\145\156\163\151\164\151"
9082 "\166\145\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9083 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9084 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9085 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9086 "\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057"
9087 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
9088 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9089 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
9090 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
9091 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
9092 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9093 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
9094 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\165\163"
9095 "\145\137\141\143\164\151\157\156\137\141\160\160\145\141\162\141"
9096 "\156\143\145\042\076\106\141\154\163\145\074\057\160\162\157\160"
9097 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
9098 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9099 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
9100 "\075\042\154\141\142\145\154\042\040\164\162\141\156\163\154\141"
9101 "\164\141\142\154\145\075\042\171\145\163\042\076\137\123\143\162"
9102 "\145\145\156\163\150\157\164\074\057\160\162\157\160\145\162\164"
9103 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9104 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9105 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\165"
9106 "\163\145\137\165\156\144\145\162\154\151\156\145\042\076\124\162"
9107 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
9108 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9109 "\040\040\040\040\040\040\040\040\040\040\074\163\151\147\156\141"
9110 "\154\040\156\141\155\145\075\042\141\143\164\151\166\141\164\145"
9111 "\042\040\150\141\156\144\154\145\162\075\042\166\151\162\164\137"
9112 "\166\151\145\167\145\162\137\167\151\156\144\157\167\137\155\145"
9113 "\156\165\137\146\151\154\145\137\163\143\162\145\145\156\163\150"
9114 "\157\164\042\040\163\167\141\160\160\145\144\075\042\156\157\042"
9115 "\057\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9116 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\157"
9117 "\142\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040"
9118 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9119 "\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
9120 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9121 "\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
9122 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9123 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
9124 "\042\107\164\153\115\145\156\165\111\164\145\155\042\040\151\144"
9125 "\075\042\155\145\156\165\055\146\151\154\145\055\165\163\142\055"
9126 "\144\145\166\151\143\145\055\163\145\154\145\143\164\151\157\156"
9127 "\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9128 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9129 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166"
9130 "\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162"
9131 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9132 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9133 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9134 "\155\145\075\042\163\145\156\163\151\164\151\166\145\042\076\106"
9135 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
9136 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9137 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9138 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
9139 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
9140 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9141 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9142 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9143 "\155\145\075\042\165\163\145\137\141\143\164\151\157\156\137\141"
9144 "\160\160\145\141\162\141\156\143\145\042\076\106\141\154\163\145"
9145 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9146 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9147 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
9148 "\171\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164"
9149 "\162\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163"
9150 "\042\076\137\125\123\102\040\144\145\166\151\143\145\040\163\145"
9151 "\154\145\143\164\151\157\156\074\057\160\162\157\160\145\162\164"
9152 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9153 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9154 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\165"
9155 "\163\145\137\165\156\144\145\162\154\151\156\145\042\076\124\162"
9156 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
9157 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9158 "\040\040\040\040\040\040\040\040\040\040\074\163\151\147\156\141"
9159 "\154\040\156\141\155\145\075\042\141\143\164\151\166\141\164\145"
9160 "\042\040\150\141\156\144\154\145\162\075\042\166\151\162\164\137"
9161 "\166\151\145\167\145\162\137\167\151\156\144\157\167\137\155\145"
9162 "\156\165\137\146\151\154\145\137\165\163\142\137\144\145\166\151"
9163 "\143\145\137\163\145\154\145\143\164\151\157\156\042\040\163\167"
9164 "\141\160\160\145\144\075\042\156\157\042\057\076\012\040\040\040"
9165 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9166 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
9167 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9168 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
9169 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9170 "\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144"
9171 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9172 "\040\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152"
9173 "\145\143\164\040\143\154\141\163\163\075\042\107\164\153\115\145"
9174 "\156\165\111\164\145\155\042\040\151\144\075\042\155\145\156\165"
9175 "\055\146\151\154\145\055\163\155\141\162\164\143\141\162\144\055"
9176 "\151\156\163\145\162\164\042\076\012\040\040\040\040\040\040\040"
9177 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9178 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9179 "\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076"
9180 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
9181 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9182 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9183 "\157\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145"
9184 "\137\141\143\164\151\157\156\137\141\160\160\145\141\162\141\156"
9185 "\143\145\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9186 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9187 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9188 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9189 "\042\141\143\143\145\154\137\160\141\164\150\042\076\046\154\164"
9190 "\073\166\151\162\164\055\166\151\145\167\145\162\046\147\164\073"
9191 "\057\146\151\154\145\057\163\155\141\162\164\143\141\162\144\055"
9192 "\151\156\163\145\162\164\074\057\160\162\157\160\145\162\164\171"
9193 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9194 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
9195 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154\141"
9196 "\142\145\154\042\040\164\162\141\156\163\154\141\164\141\142\154"
9197 "\145\075\042\171\145\163\042\076\123\155\141\162\164\143\141\162"
9198 "\144\040\151\156\163\145\162\164\151\157\156\074\057\160\162\157"
9199 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9200 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9201 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
9202 "\145\075\042\165\163\145\137\165\156\144\145\162\154\151\156\145"
9203 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
9204 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9205 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\163"
9206 "\151\147\156\141\154\040\156\141\155\145\075\042\141\143\164\151"
9207 "\166\141\164\145\042\040\150\141\156\144\154\145\162\075\042\166"
9208 "\151\162\164\137\166\151\145\167\145\162\137\167\151\156\144\157"
9209 "\167\137\155\145\156\165\137\146\151\154\145\137\163\155\141\162"
9210 "\164\143\141\162\144\137\151\156\163\145\162\164\042\040\163\167"
9211 "\141\160\160\145\144\075\042\156\157\042\057\076\012\040\040\040"
9212 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9213 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
9214 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9215 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
9216 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9217 "\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144"
9218 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9219 "\040\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152"
9220 "\145\143\164\040\143\154\141\163\163\075\042\107\164\153\115\145"
9221 "\156\165\111\164\145\155\042\040\151\144\075\042\155\145\156\165"
9222 "\055\146\151\154\145\055\163\155\141\162\164\143\141\162\144\055"
9223 "\162\145\155\157\166\145\042\076\012\040\040\040\040\040\040\040"
9224 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9225 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9226 "\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076"
9227 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
9228 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9229 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9230 "\157\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145"
9231 "\137\141\143\164\151\157\156\137\141\160\160\145\141\162\141\156"
9232 "\143\145\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9233 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9234 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9235 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9236 "\042\141\143\143\145\154\137\160\141\164\150\042\076\046\154\164"
9237 "\073\166\151\162\164\055\166\151\145\167\145\162\046\147\164\073"
9238 "\057\146\151\154\145\057\163\155\141\162\164\143\141\162\144\055"
9239 "\162\145\155\157\166\145\074\057\160\162\157\160\145\162\164\171"
9240 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9241 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
9242 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154\141"
9243 "\142\145\154\042\040\164\162\141\156\163\154\141\164\141\142\154"
9244 "\145\075\042\171\145\163\042\076\123\155\141\162\164\143\141\162"
9245 "\144\040\162\145\155\157\166\141\154\074\057\160\162\157\160\145"
9246 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9247 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9248 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9249 "\042\165\163\145\137\165\156\144\145\162\154\151\156\145\042\076"
9250 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
9251 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9252 "\040\040\040\040\040\040\040\040\040\040\040\040\074\163\151\147"
9253 "\156\141\154\040\156\141\155\145\075\042\141\143\164\151\166\141"
9254 "\164\145\042\040\150\141\156\144\154\145\162\075\042\166\151\162"
9255 "\164\137\166\151\145\167\145\162\137\167\151\156\144\157\167\137"
9256 "\155\145\156\165\137\146\151\154\145\137\163\155\141\162\164\143"
9257 "\141\162\144\137\162\145\155\157\166\145\042\040\163\167\141\160"
9258 "\160\145\144\075\042\156\157\042\057\076\012\040\040\040\040\040"
9259 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9260 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
9261 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9262 "\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012"
9263 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9264 "\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012"
9265 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9266 "\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143"
9267 "\164\040\143\154\141\163\163\075\042\107\164\153\115\145\156\165"
9268 "\111\164\145\155\042\040\151\144\075\042\155\145\156\165\055\143"
9269 "\150\141\156\147\145\055\143\144\042\076\012\040\040\040\040\040"
9270 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9271 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9272 "\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163"
9273 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
9274 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9275 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9276 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154"
9277 "\141\142\145\154\042\040\164\162\141\156\163\154\141\164\141\142"
9278 "\154\145\075\042\171\145\163\042\076\137\103\150\141\156\147\145"
9279 "\040\103\104\074\057\160\162\157\160\145\162\164\171\076\012\040"
9280 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9281 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9282 "\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137\165"
9283 "\156\144\145\162\154\151\156\145\042\076\124\162\165\145\074\057"
9284 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
9285 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9286 "\040\040\040\040\040\040\074\163\151\147\156\141\154\040\156\141"
9287 "\155\145\075\042\141\143\164\151\166\141\164\145\042\040\150\141"
9288 "\156\144\154\145\162\075\042\166\151\162\164\137\166\151\145\167"
9289 "\145\162\137\167\151\156\144\157\167\137\155\145\156\165\137\143"
9290 "\150\141\156\147\145\137\143\144\137\141\143\164\151\166\141\164"
9291 "\145\042\040\163\167\141\160\160\145\144\075\042\156\157\042\057"
9292 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9293 "\040\040\040\040\040\040\040\040\040\040\040\040\074\057\157\142"
9294 "\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040\040"
9295 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
9296 "\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040"
9297 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9298 "\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040"
9299 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9300 "\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042"
9301 "\107\164\153\115\145\156\165\111\164\145\155\042\040\151\144\075"
9302 "\042\155\145\156\165\055\160\162\145\146\145\162\145\156\143\145"
9303 "\163\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9304 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9305 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
9306 "\163\145\156\163\151\164\151\166\145\042\076\106\141\154\163\145"
9307 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9308 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9309 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
9310 "\171\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042"
9311 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
9312 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9313 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9314 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
9315 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
9316 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
9317 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9318 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9319 "\141\155\145\075\042\154\141\142\145\154\042\040\164\162\141\156"
9320 "\163\154\141\164\141\142\154\145\075\042\171\145\163\042\076\137"
9321 "\120\162\145\146\145\162\145\156\143\145\163\074\057\160\162\157"
9322 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9323 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9324 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
9325 "\145\075\042\165\163\145\137\165\156\144\145\162\154\151\156\145"
9326 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
9327 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9328 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\163"
9329 "\151\147\156\141\154\040\156\141\155\145\075\042\141\143\164\151"
9330 "\166\141\164\145\042\040\150\141\156\144\154\145\162\075\042\166"
9331 "\151\162\164\137\166\151\145\167\145\162\137\167\151\156\144\157"
9332 "\167\137\155\145\156\165\137\160\162\145\146\145\162\145\156\143"
9333 "\145\163\137\143\142\042\040\163\167\141\160\160\145\144\075\042"
9334 "\156\157\042\057\076\012\040\040\040\040\040\040\040\040\040\040"
9335 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9336 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
9337 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9338 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
9339 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9340 "\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040"
9341 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9342 "\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141"
9343 "\163\163\075\042\107\164\153\123\145\160\141\162\141\164\157\162"
9344 "\115\145\156\165\111\164\145\155\042\040\151\144\075\042\163\145"
9345 "\160\141\162\141\164\157\162\155\145\156\165\151\164\145\155\061"
9346 "\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9347 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9348 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166"
9349 "\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162"
9350 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9351 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9352 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9353 "\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106"
9354 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
9355 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9356 "\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145"
9357 "\143\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9358 "\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143\150"
9359 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
9360 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150"
9361 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
9362 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9363 "\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164"
9364 "\153\115\145\156\165\111\164\145\155\042\040\151\144\075\042\151"
9365 "\155\141\147\145\155\145\156\165\151\164\145\155\065\042\076\012"
9366 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9367 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9368 "\160\145\162\164\171\040\156\141\155\145\075\042\154\141\142\145"
9369 "\154\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075"
9370 "\042\171\145\163\042\076\137\121\165\151\164\074\057\160\162\157"
9371 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9372 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9373 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
9374 "\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145"
9375 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9376 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9377 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
9378 "\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165"
9379 "\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162"
9380 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9381 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9382 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
9383 "\165\163\145\137\141\143\164\151\157\156\137\141\160\160\145\141"
9384 "\162\141\156\143\145\042\076\106\141\154\163\145\074\057\160\162"
9385 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9386 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9387 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9388 "\155\145\075\042\165\163\145\137\165\156\144\145\162\154\151\156"
9389 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
9390 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9391 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9392 "\141\143\143\145\154\145\162\141\164\157\162\040\153\145\171\075"
9393 "\042\161\042\040\163\151\147\156\141\154\075\042\141\143\164\151"
9394 "\166\141\164\145\042\040\155\157\144\151\146\151\145\162\163\075"
9395 "\042\107\104\113\137\123\110\111\106\124\137\115\101\123\113\040"
9396 "\174\040\107\104\113\137\103\117\116\124\122\117\114\137\115\101"
9397 "\123\113\042\057\076\012\040\040\040\040\040\040\040\040\040\040"
9398 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9399 "\040\040\074\163\151\147\156\141\154\040\156\141\155\145\075\042"
9400 "\141\143\164\151\166\141\164\145\042\040\150\141\156\144\154\145"
9401 "\162\075\042\166\151\162\164\137\166\151\145\167\145\162\137\167"
9402 "\151\156\144\157\167\137\155\145\156\165\137\146\151\154\145\137"
9403 "\161\165\151\164\042\040\163\167\141\160\160\145\144\075\042\156"
9404 "\157\042\057\076\012\040\040\040\040\040\040\040\040\040\040\040"
9405 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9406 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
9407 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9408 "\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040\040"
9409 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9410 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
9411 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
9412 "\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040"
9413 "\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143"
9414 "\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9415 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040"
9416 "\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151"
9417 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9418 "\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154"
9419 "\141\163\163\075\042\107\164\153\115\145\156\165\111\164\145\155"
9420 "\042\040\151\144\075\042\155\145\156\165\055\155\141\143\150\151"
9421 "\156\145\042\076\012\040\040\040\040\040\040\040\040\040\040\040"
9422 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9423 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
9424 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9425 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9426 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9427 "\164\171\040\156\141\155\145\075\042\154\141\142\145\154\042\040"
9428 "\164\162\141\156\163\154\141\164\141\142\154\145\075\042\171\145"
9429 "\163\042\076\137\115\141\143\150\151\156\145\074\057\160\162\157"
9430 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9431 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9432 "\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137\165"
9433 "\156\144\145\162\154\151\156\145\042\076\124\162\165\145\074\057"
9434 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
9435 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
9436 "\150\151\154\144\040\164\171\160\145\075\042\163\165\142\155\145"
9437 "\156\165\042\076\012\040\040\040\040\040\040\040\040\040\040\040"
9438 "\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145"
9439 "\143\164\040\143\154\141\163\163\075\042\107\164\153\115\145\156"
9440 "\165\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9441 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9442 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
9443 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
9444 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9445 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9446 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
9447 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
9448 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
9449 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9450 "\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
9451 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9452 "\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163"
9453 "\075\042\107\164\153\103\150\145\143\153\115\145\156\165\111\164"
9454 "\145\155\042\040\151\144\075\042\155\145\156\165\055\166\155\055"
9455 "\160\141\165\163\145\042\076\012\040\040\040\040\040\040\040\040"
9456 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9457 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9458 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
9459 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9460 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9461 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9462 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
9463 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9464 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9465 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9466 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9467 "\042\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164"
9468 "\141\142\154\145\075\042\171\145\163\042\076\137\120\141\165\163"
9469 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9470 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9471 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9472 "\164\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144"
9473 "\145\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162"
9474 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9475 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9476 "\040\040\040\040\074\163\151\147\156\141\154\040\156\141\155\145"
9477 "\075\042\164\157\147\147\154\145\144\042\040\150\141\156\144\154"
9478 "\145\162\075\042\166\151\162\164\137\166\151\145\167\145\162\137"
9479 "\167\151\156\144\157\167\137\155\145\156\165\137\155\141\143\150"
9480 "\151\156\145\137\160\141\165\163\145\042\040\163\167\141\160\160"
9481 "\145\144\075\042\156\157\042\057\076\012\040\040\040\040\040\040"
9482 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9483 "\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040"
9484 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9485 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
9486 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9487 "\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040"
9488 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9489 "\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164"
9490 "\040\143\154\141\163\163\075\042\107\164\153\123\145\160\141\162"
9491 "\141\164\157\162\115\145\156\165\111\164\145\155\042\076\012\040"
9492 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9493 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9494 "\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142"
9495 "\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
9496 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9497 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9498 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
9499 "\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145"
9500 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9501 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9502 "\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012"
9503 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9504 "\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076"
9505 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9506 "\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076"
9507 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9508 "\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145"
9509 "\143\164\040\143\154\141\163\163\075\042\107\164\153\115\145\156"
9510 "\165\111\164\145\155\042\040\151\144\075\042\155\145\156\165\055"
9511 "\166\155\055\162\145\163\145\164\042\076\012\040\040\040\040\040"
9512 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9513 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9514 "\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076"
9515 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
9516 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9517 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9518 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
9519 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
9520 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9521 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9522 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9523 "\155\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163"
9524 "\154\141\164\141\142\154\145\075\042\171\145\163\042\076\137\122"
9525 "\145\163\145\164\074\057\160\162\157\160\145\162\164\171\076\012"
9526 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9527 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9528 "\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137"
9529 "\165\156\144\145\162\154\151\156\145\042\076\124\162\165\145\074"
9530 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
9531 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9532 "\040\040\040\040\040\040\040\074\163\151\147\156\141\154\040\156"
9533 "\141\155\145\075\042\141\143\164\151\166\141\164\145\042\040\150"
9534 "\141\156\144\154\145\162\075\042\166\151\162\164\137\166\151\145"
9535 "\167\145\162\137\167\151\156\144\157\167\137\155\145\156\165\137"
9536 "\155\141\143\150\151\156\145\137\162\145\163\145\164\042\040\163"
9537 "\167\141\160\160\145\144\075\042\156\157\042\057\076\012\040\040"
9538 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9539 "\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164"
9540 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9541 "\040\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154"
9542 "\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9543 "\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154"
9544 "\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9545 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157\142"
9546 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\115"
9547 "\145\156\165\111\164\145\155\042\040\151\144\075\042\155\145\156"
9548 "\165\055\166\155\055\160\157\167\145\162\144\157\167\156\042\076"
9549 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9550 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9551 "\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163"
9552 "\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160"
9553 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
9554 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9555 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
9556 "\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154"
9557 "\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
9558 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9559 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
9560 "\162\164\171\040\156\141\155\145\075\042\154\141\142\145\154\042"
9561 "\040\164\162\141\156\163\154\141\164\141\142\154\145\075\042\171"
9562 "\145\163\042\076\137\120\157\167\145\162\040\144\157\167\156\074"
9563 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
9564 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9565 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9566 "\040\156\141\155\145\075\042\165\163\145\137\165\156\144\145\162"
9567 "\154\151\156\145\042\076\124\162\165\145\074\057\160\162\157\160"
9568 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
9569 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9570 "\040\040\074\163\151\147\156\141\154\040\156\141\155\145\075\042"
9571 "\141\143\164\151\166\141\164\145\042\040\150\141\156\144\154\145"
9572 "\162\075\042\166\151\162\164\137\166\151\145\167\145\162\137\167"
9573 "\151\156\144\157\167\137\155\145\156\165\137\155\141\143\150\151"
9574 "\156\145\137\160\157\167\145\162\144\157\167\156\042\040\163\167"
9575 "\141\160\160\145\144\075\042\156\157\042\057\076\012\040\040\040"
9576 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9577 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
9578 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9579 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
9580 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9581 "\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164"
9582 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9583 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
9584 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9585 "\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040"
9586 "\040\040\040\040\040\040\040\040\040\040\040\074\057\143\150\151"
9587 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9588 "\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040"
9589 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157"
9590 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
9591 "\115\145\156\165\111\164\145\155\042\040\151\144\075\042\155\145"
9592 "\156\165\055\166\151\145\167\042\076\012\040\040\040\040\040\040"
9593 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
9594 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151"
9595 "\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157"
9596 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9597 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9598 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
9599 "\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157"
9600 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9601 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9602 "\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137\141"
9603 "\143\164\151\157\156\137\141\160\160\145\141\162\141\156\143\145"
9604 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
9605 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9606 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9607 "\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162"
9608 "\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042"
9609 "\076\137\126\151\145\167\074\057\160\162\157\160\145\162\164\171"
9610 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9611 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
9612 "\156\141\155\145\075\042\165\163\145\137\165\156\144\145\162\154"
9613 "\151\156\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
9614 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9615 "\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144\040"
9616 "\164\171\160\145\075\042\163\165\142\155\145\156\165\042\076\012"
9617 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9618 "\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154"
9619 "\141\163\163\075\042\107\164\153\115\145\156\165\042\040\151\144"
9620 "\075\042\155\145\156\165\062\042\076\012\040\040\040\040\040\040"
9621 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9622 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
9623 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
9624 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
9625 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9626 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
9627 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141"
9628 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
9629 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9630 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9631 "\040\156\141\155\145\075\042\141\143\143\145\154\137\147\162\157"
9632 "\165\160\042\076\141\143\143\145\154\147\162\157\165\160\074\057"
9633 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
9634 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9635 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
9636 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9637 "\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163"
9638 "\163\075\042\107\164\153\103\150\145\143\153\115\145\156\165\111"
9639 "\164\145\155\042\040\151\144\075\042\155\145\156\165\055\166\151"
9640 "\145\167\055\146\165\154\154\163\143\162\145\145\156\042\076\012"
9641 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9642 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9643 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
9644 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
9645 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9646 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9647 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9648 "\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163"
9649 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9650 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9651 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9652 "\164\171\040\156\141\155\145\075\042\165\163\145\137\141\143\164"
9653 "\151\157\156\137\141\160\160\145\141\162\141\156\143\145\042\076"
9654 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
9655 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9656 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9657 "\157\160\145\162\164\171\040\156\141\155\145\075\042\141\143\143"
9658 "\145\154\137\160\141\164\150\042\076\046\154\164\073\166\151\162"
9659 "\164\055\166\151\145\167\145\162\046\147\164\073\057\166\151\145"
9660 "\167\057\164\157\147\147\154\145\055\146\165\154\154\163\143\162"
9661 "\145\145\156\074\057\160\162\157\160\145\162\164\171\076\012\040"
9662 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9663 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9664 "\145\162\164\171\040\156\141\155\145\075\042\154\141\142\145\154"
9665 "\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075\042"
9666 "\171\145\163\042\076\137\106\165\154\154\040\163\143\162\145\145"
9667 "\156\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9668 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9669 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9670 "\164\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144"
9671 "\145\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162"
9672 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9673 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9674 "\040\040\040\040\074\163\151\147\156\141\154\040\156\141\155\145"
9675 "\075\042\164\157\147\147\154\145\144\042\040\150\141\156\144\154"
9676 "\145\162\075\042\166\151\162\164\137\166\151\145\167\145\162\137"
9677 "\167\151\156\144\157\167\137\155\145\156\165\137\166\151\145\167"
9678 "\137\146\165\154\154\163\143\162\145\145\156\042\040\163\167\141"
9679 "\160\160\145\144\075\042\156\157\042\057\076\012\040\040\040\040"
9680 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9681 "\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012"
9682 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9683 "\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076"
9684 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9685 "\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076"
9686 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9687 "\040\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145"
9688 "\143\164\040\143\154\141\163\163\075\042\107\164\153\115\145\156"
9689 "\165\111\164\145\155\042\040\151\144\075\042\155\145\156\165\055"
9690 "\166\151\145\167\055\172\157\157\155\042\076\012\040\040\040\040"
9691 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9692 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
9693 "\171\040\156\141\155\145\075\042\163\145\156\163\151\164\151\166"
9694 "\145\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162"
9695 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9696 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9697 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
9698 "\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160"
9699 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
9700 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9701 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9702 "\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076"
9703 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
9704 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9705 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9706 "\157\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145"
9707 "\137\141\143\164\151\157\156\137\141\160\160\145\141\162\141\156"
9708 "\143\145\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
9709 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9710 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9711 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9712 "\042\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164"
9713 "\141\142\154\145\075\042\171\145\163\042\076\137\132\157\157\155"
9714 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9715 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9716 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
9717 "\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144\145"
9718 "\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162\157"
9719 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9720 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9721 "\040\040\040\074\143\150\151\154\144\040\164\171\160\145\075\042"
9722 "\163\165\142\155\145\156\165\042\076\012\040\040\040\040\040\040"
9723 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9724 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
9725 "\143\154\141\163\163\075\042\107\164\153\115\145\156\165\042\040"
9726 "\151\144\075\042\155\145\156\165\064\042\076\012\040\040\040\040"
9727 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9728 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9729 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
9730 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
9731 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9732 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9733 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9734 "\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076"
9735 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
9736 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9737 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9738 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9739 "\042\141\143\143\145\154\137\147\162\157\165\160\042\076\141\143"
9740 "\143\145\154\147\162\157\165\160\074\057\160\162\157\160\145\162"
9741 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9742 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9743 "\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040"
9744 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9745 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157"
9746 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
9747 "\115\145\156\165\111\164\145\155\042\040\151\144\075\042\155\145"
9748 "\156\165\055\166\151\145\167\055\172\157\157\155\055\151\156\042"
9749 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9750 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9751 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
9752 "\156\141\155\145\075\042\141\143\143\145\154\137\160\141\164\150"
9753 "\042\076\046\154\164\073\166\151\162\164\055\166\151\145\167\145"
9754 "\162\046\147\164\073\057\166\151\145\167\057\172\157\157\155\055"
9755 "\151\156\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
9756 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9757 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9758 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
9759 "\075\042\154\141\142\145\154\042\040\164\162\141\156\163\154\141"
9760 "\164\141\142\154\145\075\042\171\145\163\042\076\132\157\157\155"
9761 "\040\137\111\156\074\057\160\162\157\160\145\162\164\171\076\012"
9762 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9763 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9764 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9765 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
9766 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9767 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9768 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9769 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9770 "\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163"
9771 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9772 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9773 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9774 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9775 "\042\165\163\145\137\141\143\164\151\157\156\137\141\160\160\145"
9776 "\141\162\141\156\143\145\042\076\106\141\154\163\145\074\057\160"
9777 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
9778 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9779 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9780 "\157\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145"
9781 "\137\165\156\144\145\162\154\151\156\145\042\076\124\162\165\145"
9782 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9783 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9784 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9785 "\074\163\151\147\156\141\154\040\156\141\155\145\075\042\141\143"
9786 "\164\151\166\141\164\145\042\040\150\141\156\144\154\145\162\075"
9787 "\042\166\151\162\164\137\166\151\145\167\145\162\137\167\151\156"
9788 "\144\157\167\137\155\145\156\165\137\166\151\145\167\137\172\157"
9789 "\157\155\137\151\156\042\040\163\167\141\160\160\145\144\075\042"
9790 "\156\157\042\057\076\012\040\040\040\040\040\040\040\040\040\040"
9791 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9792 "\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164"
9793 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9794 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9795 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
9796 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9797 "\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154"
9798 "\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9799 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9800 "\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141"
9801 "\163\163\075\042\107\164\153\115\145\156\165\111\164\145\155\042"
9802 "\040\151\144\075\042\155\145\156\165\055\166\151\145\167\055\172"
9803 "\157\157\155\055\157\165\164\042\076\012\040\040\040\040\040\040"
9804 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9805 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
9806 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\141\143"
9807 "\143\145\154\137\160\141\164\150\042\076\046\154\164\073\166\151"
9808 "\162\164\055\166\151\145\167\145\162\046\147\164\073\057\166\151"
9809 "\145\167\057\172\157\157\155\055\157\165\164\074\057\160\162\157"
9810 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9811 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9812 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9813 "\145\162\164\171\040\156\141\155\145\075\042\154\141\142\145\154"
9814 "\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075\042"
9815 "\171\145\163\042\076\132\157\157\155\040\137\117\165\164\074\057"
9816 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
9817 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9818 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
9819 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151"
9820 "\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157"
9821 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9822 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9823 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9824 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
9825 "\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157"
9826 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9827 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9828 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
9829 "\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137\141"
9830 "\143\164\151\157\156\137\141\160\160\145\141\162\141\156\143\145"
9831 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
9832 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9833 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9834 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9835 "\040\156\141\155\145\075\042\165\163\145\137\165\156\144\145\162"
9836 "\154\151\156\145\042\076\124\162\165\145\074\057\160\162\157\160"
9837 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
9838 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9839 "\040\040\040\040\040\040\040\040\040\040\074\163\151\147\156\141"
9840 "\154\040\156\141\155\145\075\042\141\143\164\151\166\141\164\145"
9841 "\042\040\150\141\156\144\154\145\162\075\042\166\151\162\164\137"
9842 "\166\151\145\167\145\162\137\167\151\156\144\157\167\137\155\145"
9843 "\156\165\137\166\151\145\167\137\172\157\157\155\137\157\165\164"
9844 "\042\040\163\167\141\160\160\145\144\075\042\156\157\042\057\076"
9845 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9846 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9847 "\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040"
9848 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9849 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143"
9850 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
9851 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9852 "\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040\040"
9853 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9854 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9855 "\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107"
9856 "\164\153\123\145\160\141\162\141\164\157\162\115\145\156\165\111"
9857 "\164\145\155\042\040\151\144\075\042\163\145\160\141\162\141\164"
9858 "\157\162\155\145\156\165\151\164\145\155\064\042\076\012\040\040"
9859 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9860 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9861 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
9862 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
9863 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
9864 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9865 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
9866 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
9867 "\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074"
9868 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
9869 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9870 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\157"
9871 "\142\152\145\143\164\076\012\040\040\040\040\040\040\040\040\040"
9872 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9873 "\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012"
9874 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9875 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9876 "\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
9877 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9878 "\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143"
9879 "\164\040\143\154\141\163\163\075\042\107\164\153\115\145\156\165"
9880 "\111\164\145\155\042\040\151\144\075\042\155\145\156\165\055\166"
9881 "\151\145\167\055\172\157\157\155\055\162\145\163\145\164\042\076"
9882 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9883 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9884 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9885 "\141\155\145\075\042\141\143\143\145\154\137\160\141\164\150\042"
9886 "\076\046\154\164\073\166\151\162\164\055\166\151\145\167\145\162"
9887 "\046\147\164\073\057\166\151\145\167\057\172\157\157\155\055\162"
9888 "\145\163\145\164\074\057\160\162\157\160\145\162\164\171\076\012"
9889 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9890 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9891 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
9892 "\155\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163"
9893 "\154\141\164\141\142\154\145\075\042\171\145\163\042\076\137\116"
9894 "\157\162\155\141\154\040\123\151\172\145\074\057\160\162\157\160"
9895 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
9896 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9897 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
9898 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
9899 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
9900 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9901 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9902 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9903 "\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163"
9904 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
9905 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
9906 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9907 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
9908 "\040\156\141\155\145\075\042\165\163\145\137\141\143\164\151\157"
9909 "\156\137\141\160\160\145\141\162\141\156\143\145\042\076\106\141"
9910 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
9911 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9912 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9913 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
9914 "\145\075\042\165\163\145\137\165\156\144\145\162\154\151\156\145"
9915 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
9916 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9917 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9918 "\040\040\040\040\040\040\074\163\151\147\156\141\154\040\156\141"
9919 "\155\145\075\042\141\143\164\151\166\141\164\145\042\040\150\141"
9920 "\156\144\154\145\162\075\042\166\151\162\164\137\166\151\145\167"
9921 "\145\162\137\167\151\156\144\157\167\137\155\145\156\165\137\166"
9922 "\151\145\167\137\172\157\157\155\137\162\145\163\145\164\042\040"
9923 "\163\167\141\160\160\145\144\075\042\156\157\042\057\076\012\040"
9924 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9925 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9926 "\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040"
9927 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9928 "\040\040\040\040\040\040\040\040\040\040\040\074\057\143\150\151"
9929 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
9930 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9931 "\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040"
9932 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9933 "\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076"
9934 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9935 "\040\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152"
9936 "\145\143\164\076\012\040\040\040\040\040\040\040\040\040\040\040"
9937 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143"
9938 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
9939 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
9940 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
9941 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9942 "\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107"
9943 "\164\153\115\145\156\165\111\164\145\155\042\040\151\144\075\042"
9944 "\155\145\156\165\055\144\151\163\160\154\141\171\163\042\076\012"
9945 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9946 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
9947 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
9948 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
9949 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
9950 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9951 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
9952 "\042\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163"
9953 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9954 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9955 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9956 "\164\171\040\156\141\155\145\075\042\165\163\145\137\141\143\164"
9957 "\151\157\156\137\141\160\160\145\141\162\141\156\143\145\042\076"
9958 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
9959 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9960 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9961 "\157\160\145\162\164\171\040\156\141\155\145\075\042\154\141\142"
9962 "\145\154\042\040\164\162\141\156\163\154\141\164\141\142\154\145"
9963 "\075\042\171\145\163\042\076\137\104\151\163\160\154\141\171\163"
9964 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
9965 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9966 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
9967 "\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144\145"
9968 "\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162\157"
9969 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
9970 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9971 "\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040"
9972 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9973 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040"
9974 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9975 "\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040"
9976 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9977 "\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154"
9978 "\141\163\163\075\042\107\164\153\115\145\156\165\111\164\145\155"
9979 "\042\040\151\144\075\042\155\145\156\165\055\166\151\145\167\055"
9980 "\162\145\154\145\141\163\145\055\143\165\162\163\157\162\042\076"
9981 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9982 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
9983 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
9984 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
9985 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
9986 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9987 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
9988 "\141\155\145\075\042\165\163\145\137\141\143\164\151\157\156\137"
9989 "\141\160\160\145\141\162\141\156\143\145\042\076\106\141\154\163"
9990 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
9991 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9992 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
9993 "\164\171\040\156\141\155\145\075\042\141\143\143\145\154\137\160"
9994 "\141\164\150\042\076\046\154\164\073\166\151\162\164\055\166\151"
9995 "\145\167\145\162\046\147\164\073\057\166\151\145\167\057\162\145"
9996 "\154\145\141\163\145\055\143\165\162\163\157\162\074\057\160\162"
9997 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
9998 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
9999 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10000 "\155\145\075\042\154\141\142\145\154\042\040\164\162\141\156\163"
10001 "\154\141\164\141\142\154\145\075\042\171\145\163\042\076\122\145"
10002 "\154\145\141\163\145\040\143\165\162\163\157\162\074\057\160\162"
10003 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10004 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10005 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10006 "\155\145\075\042\165\163\145\137\165\156\144\145\162\154\151\156"
10007 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10008 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10009 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10010 "\163\151\147\156\141\154\040\156\141\155\145\075\042\141\143\164"
10011 "\151\166\141\164\145\042\040\150\141\156\144\154\145\162\075\042"
10012 "\166\151\162\164\137\166\151\145\167\145\162\137\167\151\156\144"
10013 "\157\167\137\155\145\156\165\137\166\151\145\167\137\162\145\154"
10014 "\145\141\163\145\137\143\165\162\163\157\162\042\040\163\167\141"
10015 "\160\160\145\144\075\042\156\157\042\057\076\012\040\040\040\040"
10016 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10017 "\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012"
10018 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10019 "\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076"
10020 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10021 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
10022 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10023 "\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040"
10024 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10025 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
10026 "\040\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154"
10027 "\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10028 "\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040"
10029 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157\142"
10030 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\115"
10031 "\145\156\165\111\164\145\155\042\040\151\144\075\042\155\145\156"
10032 "\165\055\163\145\156\144\042\076\012\040\040\040\040\040\040\040"
10033 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
10034 "\157\160\145\162\164\171\040\156\141\155\145\075\042\163\145\156"
10035 "\163\151\164\151\166\145\042\076\106\141\154\163\145\074\057\160"
10036 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10037 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
10038 "\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163"
10039 "\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160"
10040 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
10041 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10042 "\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157"
10043 "\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160"
10044 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
10045 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10046 "\162\164\171\040\156\141\155\145\075\042\165\163\145\137\141\143"
10047 "\164\151\157\156\137\141\160\160\145\141\162\141\156\143\145\042"
10048 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
10049 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10050 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
10051 "\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162\141"
10052 "\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042\076"
10053 "\137\123\145\156\144\040\153\145\171\074\057\160\162\157\160\145"
10054 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
10055 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10056 "\164\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144"
10057 "\145\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162"
10058 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10059 "\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145"
10060 "\143\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10061 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
10062 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150"
10063 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
10064 "\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
10065 "\154\141\163\163\075\042\107\164\153\115\145\156\165\111\164\145"
10066 "\155\042\040\151\144\075\042\155\145\156\165\055\150\145\154\160"
10067 "\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10068 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
10069 "\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076"
10070 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
10071 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10072 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10073 "\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106"
10074 "\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012"
10075 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10076 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10077 "\155\145\075\042\165\163\145\137\141\143\164\151\157\156\137\141"
10078 "\160\160\145\141\162\141\156\143\145\042\076\106\141\154\163\145"
10079 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
10080 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10081 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
10082 "\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164\141"
10083 "\142\154\145\075\042\171\145\163\042\076\137\110\145\154\160\074"
10084 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
10085 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10086 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\165"
10087 "\163\145\137\165\156\144\145\162\154\151\156\145\042\076\124\162"
10088 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
10089 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10090 "\040\040\074\143\150\151\154\144\040\164\171\160\145\075\042\163"
10091 "\165\142\155\145\156\165\042\076\012\040\040\040\040\040\040\040"
10092 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10093 "\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164"
10094 "\153\115\145\156\165\042\040\151\144\075\042\155\145\156\165\063"
10095 "\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10096 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
10097 "\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142"
10098 "\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
10099 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10100 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
10101 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
10102 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
10103 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10104 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10105 "\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
10106 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10107 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
10108 "\042\107\164\153\115\145\156\165\111\164\145\155\042\040\151\144"
10109 "\075\042\155\145\156\165\055\150\145\154\160\055\147\165\145\163"
10110 "\164\055\144\145\164\141\151\154\163\042\076\012\040\040\040\040"
10111 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10112 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
10113 "\171\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042"
10114 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
10115 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10116 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
10117 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
10118 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
10119 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10120 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10121 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
10122 "\141\155\145\075\042\165\163\145\137\141\143\164\151\157\156\137"
10123 "\141\160\160\145\141\162\141\156\143\145\042\076\106\141\154\163"
10124 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10125 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10126 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10127 "\164\171\040\156\141\155\145\075\042\154\141\142\145\154\042\040"
10128 "\164\162\141\156\163\154\141\164\141\142\154\145\075\042\171\145"
10129 "\163\042\076\137\107\165\145\163\164\040\104\145\164\141\151\154"
10130 "\163\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10131 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10132 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10133 "\164\171\040\156\141\155\145\075\042\165\163\145\137\165\156\144"
10134 "\145\162\154\151\156\145\042\076\124\162\165\145\074\057\160\162"
10135 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10136 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10137 "\040\040\040\040\074\163\151\147\156\141\154\040\156\141\155\145"
10138 "\075\042\141\143\164\151\166\141\164\145\042\040\150\141\156\144"
10139 "\154\145\162\075\042\166\151\162\164\137\166\151\145\167\145\162"
10140 "\137\167\151\156\144\157\167\137\155\145\156\165\137\150\145\154"
10141 "\160\137\147\165\145\163\164\137\144\145\164\141\151\154\163\042"
10142 "\040\163\167\141\160\160\145\144\075\042\156\157\042\057\076\012"
10143 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10144 "\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145"
10145 "\143\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10146 "\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143\150"
10147 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
10148 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150"
10149 "\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040"
10150 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10151 "\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164"
10152 "\153\115\145\156\165\111\164\145\155\042\040\151\144\075\042\151"
10153 "\155\141\147\145\155\145\156\165\151\164\145\155\061\060\042\076"
10154 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10155 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
10156 "\157\160\145\162\164\171\040\156\141\155\145\075\042\154\141\142"
10157 "\145\154\042\040\164\162\141\156\163\154\141\164\141\142\154\145"
10158 "\075\042\171\145\163\042\076\137\101\142\157\165\164\074\057\160"
10159 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10160 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10161 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
10162 "\141\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162"
10163 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
10164 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10165 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10166 "\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157"
10167 "\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160"
10168 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
10169 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10170 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10171 "\075\042\165\163\145\137\141\143\164\151\157\156\137\141\160\160"
10172 "\145\141\162\141\156\143\145\042\076\106\141\154\163\145\074\057"
10173 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
10174 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10175 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
10176 "\156\141\155\145\075\042\165\163\145\137\165\156\144\145\162\154"
10177 "\151\156\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
10178 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
10179 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10180 "\040\074\163\151\147\156\141\154\040\156\141\155\145\075\042\141"
10181 "\143\164\151\166\141\164\145\042\040\150\141\156\144\154\145\162"
10182 "\075\042\166\151\162\164\137\166\151\145\167\145\162\137\167\151"
10183 "\156\144\157\167\137\155\145\156\165\137\150\145\154\160\137\141"
10184 "\142\157\165\164\042\040\163\167\141\160\160\145\144\075\042\156"
10185 "\157\042\057\076\012\040\040\040\040\040\040\040\040\040\040\040"
10186 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10187 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
10188 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10189 "\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040\040"
10190 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10191 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
10192 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
10193 "\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040"
10194 "\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143"
10195 "\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10196 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040"
10197 "\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145"
10198 "\143\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10199 "\040\040\074\160\141\143\153\151\156\147\076\012\040\040\040\040"
10200 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
10201 "\160\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141"
10202 "\156\144\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
10203 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
10204 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
10205 "\141\155\145\075\042\146\151\154\154\042\076\124\162\165\145\074"
10206 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
10207 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
10208 "\145\162\164\171\040\156\141\155\145\075\042\160\157\163\151\164"
10209 "\151\157\156\042\076\060\074\057\160\162\157\160\145\162\164\171"
10210 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10211 "\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
10212 "\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012"
10213 "\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145"
10214 "\143\164\076\012\040\040\040\040\040\040\040\040\040\040\074\160"
10215 "\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040"
10216 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10217 "\155\145\075\042\151\156\144\145\170\042\076\055\061\074\057\160"
10218 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10219 "\040\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040"
10220 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
10221 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
10222 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\074\057"
10223 "\157\142\152\145\143\164\076\012\074\057\151\156\164\145\162\146"
10224 "\141\143\145\076\012\000\000\050\165\165\141\171\051\062\062\170"
10225 "\062\062\057\000\004\000\000\000\064\070\170\064\070\057\000\000"
10226 "\022\000\000\000\062\064\170\062\064\057\000\000\033\000\000\000"
10227 "\005\000\000\000\151\143\157\156\163\057\000\000\031\000\000\000"
10228 "\014\000\000\000\016\000\000\000\010\000\000\000\032\000\000\000"
10229 "\015\000\000\000\166\151\162\164\055\166\151\145\167\145\162\055"
10230 "\141\142\157\165\164\056\165\151\243\014\000\000\000\000\000\000"
10231 "\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061"
10232 "\056\060\042\040\145\156\143\157\144\151\156\147\075\042\125\124"
10233 "\106\055\070\042\077\076\012\074\151\156\164\145\162\146\141\143"
10234 "\145\076\012\040\040\074\041\055\055\040\151\156\164\145\162\146"
10235 "\141\143\145\055\162\145\161\165\151\162\145\163\040\147\164\153"
10236 "\053\040\062\056\061\062\040\055\055\076\012\040\040\074\157\142"
10237 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\101"
10238 "\142\157\165\164\104\151\141\154\157\147\042\040\151\144\075\042"
10239 "\141\142\157\165\164\042\076\012\040\040\040\040\074\160\162\157"
10240 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
10241 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
10242 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
10243 "\160\145\162\164\171\040\156\141\155\145\075\042\142\157\162\144"
10244 "\145\162\137\167\151\144\164\150\042\076\065\074\057\160\162\157"
10245 "\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157\160"
10246 "\145\162\164\171\040\156\141\155\145\075\042\164\151\164\154\145"
10247 "\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075\042"
10248 "\171\145\163\042\076\101\142\157\165\164\040\126\151\162\164\055"
10249 "\126\151\145\167\145\162\074\057\160\162\157\160\145\162\164\171"
10250 "\076\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
10251 "\156\141\155\145\075\042\162\145\163\151\172\141\142\154\145\042"
10252 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
10253 "\076\012\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
10254 "\156\141\155\145\075\042\155\157\144\141\154\042\076\124\162\165"
10255 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10256 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
10257 "\042\167\151\156\144\157\167\137\160\157\163\151\164\151\157\156"
10258 "\042\076\143\145\156\164\145\162\055\157\156\055\160\141\162\145"
10259 "\156\164\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
10260 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10261 "\075\042\144\145\163\164\162\157\171\137\167\151\164\150\137\160"
10262 "\141\162\145\156\164\042\076\124\162\165\145\074\057\160\162\157"
10263 "\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157\160"
10264 "\145\162\164\171\040\156\141\155\145\075\042\164\171\160\145\137"
10265 "\150\151\156\164\042\076\144\151\141\154\157\147\074\057\160\162"
10266 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
10267 "\160\145\162\164\171\040\156\141\155\145\075\042\163\153\151\160"
10268 "\137\164\141\163\153\142\141\162\137\150\151\156\164\042\076\124"
10269 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
10270 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
10271 "\145\075\042\163\153\151\160\137\160\141\147\145\162\137\150\151"
10272 "\156\164\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
10273 "\164\171\076\012\040\040\040\040\074\160\162\157\160\145\162\164"
10274 "\171\040\156\141\155\145\075\042\160\162\157\147\162\141\155\137"
10275 "\156\141\155\145\042\076\126\151\162\164\165\141\154\040\115\141"
10276 "\143\150\151\156\145\040\126\151\145\167\145\162\074\057\160\162"
10277 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
10278 "\160\145\162\164\171\040\156\141\155\145\075\042\143\157\160\171"
10279 "\162\151\147\150\164\042\040\164\162\141\156\163\154\141\164\141"
10280 "\142\154\145\075\042\171\145\163\042\076\103\157\160\171\162\151"
10281 "\147\150\164\040\050\103\051\040\062\060\060\067\055\062\060\061"
10282 "\062\040\104\141\156\151\145\154\040\120\056\040\102\145\162\162"
10283 "\141\156\147\145\012\103\157\160\171\162\151\147\150\164\040\050"
10284 "\103\051\040\062\060\060\067\055\062\060\061\064\040\122\145\144"
10285 "\040\110\141\164\054\040\111\156\143\056\074\057\160\162\157\160"
10286 "\145\162\164\171\076\012\040\040\040\040\074\160\162\157\160\145"
10287 "\162\164\171\040\156\141\155\145\075\042\143\157\155\155\145\156"
10288 "\164\163\042\040\164\162\141\156\163\154\141\164\141\142\154\145"
10289 "\075\042\171\145\163\042\076\101\040\162\145\155\157\164\145\040"
10290 "\144\145\163\153\164\157\160\040\143\154\151\145\156\164\040\142"
10291 "\165\151\154\164\040\167\151\164\150\040\107\124\113\055\126\116"
10292 "\103\054\040\123\120\111\103\105\055\107\124\113\040\141\156\144"
10293 "\040\154\151\142\166\151\162\164\074\057\160\162\157\160\145\162"
10294 "\164\171\076\012\040\040\040\040\074\160\162\157\160\145\162\164"
10295 "\171\040\156\141\155\145\075\042\167\145\142\163\151\164\145\042"
10296 "\076\150\164\164\160\072\057\057\147\151\164\154\141\142\056\143"
10297 "\157\155\057\166\151\162\164\055\166\151\145\167\145\162\057\166"
10298 "\151\162\164\055\166\151\145\167\145\162\057\074\057\160\162\157"
10299 "\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157\160"
10300 "\145\162\164\171\040\156\141\155\145\075\042\167\145\142\163\151"
10301 "\164\145\137\154\141\142\145\154\042\040\164\162\141\156\163\154"
10302 "\141\164\141\142\154\145\075\042\171\145\163\042\076\147\151\164"
10303 "\154\141\142\056\143\157\155\057\166\151\162\164\055\166\151\145"
10304 "\167\145\162\057\166\151\162\164\055\166\151\145\167\145\162\074"
10305 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074"
10306 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154"
10307 "\151\143\145\156\163\145\042\040\164\162\141\156\163\154\141\164"
10308 "\141\142\154\145\075\042\171\145\163\042\076\124\150\151\163\040"
10309 "\160\162\157\147\162\141\155\040\151\163\040\146\162\145\145\040"
10310 "\163\157\146\164\167\141\162\145\073\040\171\157\165\040\143\141"
10311 "\156\040\162\145\144\151\163\164\162\151\142\165\164\145\040\151"
10312 "\164\040\141\156\144\057\157\162\040\155\157\144\151\146\171\012"
10313 "\151\164\040\165\156\144\145\162\040\164\150\145\040\164\145\162"
10314 "\155\163\040\157\146\040\164\150\145\040\107\116\125\040\107\145"
10315 "\156\145\162\141\154\040\120\165\142\154\151\143\040\114\151\143"
10316 "\145\156\163\145\040\141\163\040\160\165\142\154\151\163\150\145"
10317 "\144\040\142\171\012\164\150\145\040\106\162\145\145\040\123\157"
10318 "\146\164\167\141\162\145\040\106\157\165\156\144\141\164\151\157"
10319 "\156\073\040\145\151\164\150\145\162\040\166\145\162\163\151\157"
10320 "\156\040\062\040\157\146\040\164\150\145\040\114\151\143\145\156"
10321 "\163\145\054\040\157\162\012\050\141\164\040\171\157\165\162\040"
10322 "\157\160\164\151\157\156\051\040\141\156\171\040\154\141\164\145"
10323 "\162\040\166\145\162\163\151\157\156\056\012\012\124\150\151\163"
10324 "\040\160\162\157\147\162\141\155\040\151\163\040\144\151\163\164"
10325 "\162\151\142\165\164\145\144\040\151\156\040\164\150\145\040\150"
10326 "\157\160\145\040\164\150\141\164\040\151\164\040\167\151\154\154"
10327 "\040\142\145\040\165\163\145\146\165\154\054\012\142\165\164\040"
10328 "\127\111\124\110\117\125\124\040\101\116\131\040\127\101\122\122"
10329 "\101\116\124\131\073\040\167\151\164\150\157\165\164\040\145\166"
10330 "\145\156\040\164\150\145\040\151\155\160\154\151\145\144\040\167"
10331 "\141\162\162\141\156\164\171\040\157\146\012\115\105\122\103\110"
10332 "\101\116\124\101\102\111\114\111\124\131\040\157\162\040\106\111"
10333 "\124\116\105\123\123\040\106\117\122\040\101\040\120\101\122\124"
10334 "\111\103\125\114\101\122\040\120\125\122\120\117\123\105\056\040"
10335 "\040\123\145\145\040\164\150\145\012\107\116\125\040\107\145\156"
10336 "\145\162\141\154\040\120\165\142\154\151\143\040\114\151\143\145"
10337 "\156\163\145\040\146\157\162\040\155\157\162\145\040\144\145\164"
10338 "\141\151\154\163\056\012\012\131\157\165\040\163\150\157\165\154"
10339 "\144\040\150\141\166\145\040\162\145\143\145\151\166\145\144\040"
10340 "\141\040\143\157\160\171\040\157\146\040\164\150\145\040\107\116"
10341 "\125\040\107\145\156\145\162\141\154\040\120\165\142\154\151\143"
10342 "\040\114\151\143\145\156\163\145\012\141\154\157\156\147\040\167"
10343 "\151\164\150\040\164\150\151\163\040\160\162\157\147\162\141\155"
10344 "\073\040\151\146\040\156\157\164\054\040\167\162\151\164\145\040"
10345 "\164\157\040\164\150\145\040\106\162\145\145\040\123\157\146\164"
10346 "\167\141\162\145\012\106\157\165\156\144\141\164\151\157\156\054"
10347 "\040\111\156\143\056\054\040\065\071\040\124\145\155\160\154\145"
10348 "\040\120\154\141\143\145\054\040\123\165\151\164\145\040\063\063"
10349 "\060\054\040\102\157\163\164\157\156\054\040\115\101\040\040\060"
10350 "\062\061\061\061\055\061\063\060\067\040\040\125\123\101\012\074"
10351 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074"
10352 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\141"
10353 "\165\164\150\157\162\163\042\076\104\141\156\151\145\154\040\120"
10354 "\056\040\102\145\162\162\141\156\147\145\012\115\141\162\143\055"
10355 "\101\156\144\162\303\251\040\114\165\162\145\141\165\012\074\057"
10356 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074\160"
10357 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\164\162"
10358 "\141\156\163\154\141\164\157\162\137\143\162\145\144\151\164\163"
10359 "\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075\042"
10360 "\171\145\163\042\076\124\150\145\040\106\145\144\157\162\141\040"
10361 "\124\162\141\156\163\154\141\164\151\157\156\040\124\145\141\155"
10362 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
10363 "\074\163\151\147\156\141\154\040\156\141\155\145\075\042\144\145"
10364 "\154\145\164\145\055\145\166\145\156\164\042\040\150\141\156\144"
10365 "\154\145\162\075\042\166\151\162\164\137\166\151\145\167\145\162"
10366 "\137\141\160\160\137\141\142\157\165\164\137\144\145\154\145\164"
10367 "\145\042\040\163\167\141\160\160\145\144\075\042\156\157\042\057"
10368 "\076\012\040\040\040\040\074\163\151\147\156\141\154\040\156\141"
10369 "\155\145\075\042\162\145\163\160\157\156\163\145\042\040\150\141"
10370 "\156\144\154\145\162\075\042\166\151\162\164\137\166\151\145\167"
10371 "\145\162\137\141\160\160\137\141\142\157\165\164\137\143\154\157"
10372 "\163\145\042\040\163\167\141\160\160\145\144\075\042\156\157\042"
10373 "\057\076\012\040\040\040\040\074\143\150\151\154\144\040\151\156"
10374 "\164\145\162\156\141\154\055\143\150\151\154\144\075\042\166\142"
10375 "\157\170\042\076\012\040\040\040\040\040\040\074\157\142\152\145"
10376 "\143\164\040\143\154\141\163\163\075\042\107\164\153\102\157\170"
10377 "\042\040\151\144\075\042\144\151\141\154\157\147\055\166\142\157"
10378 "\170\061\042\076\012\040\040\040\040\040\040\040\040\074\160\162"
10379 "\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163"
10380 "\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160"
10381 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\074\160"
10382 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141"
10383 "\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057"
10384 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
10385 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10386 "\075\042\157\162\151\145\156\164\141\164\151\157\156\042\076\166"
10387 "\145\162\164\151\143\141\154\074\057\160\162\157\160\145\162\164"
10388 "\171\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160"
10389 "\145\162\164\171\040\156\141\155\145\075\042\163\160\141\143\151"
10390 "\156\147\042\076\062\074\057\160\162\157\160\145\162\164\171\076"
10391 "\012\040\040\040\040\040\040\040\040\074\143\150\151\154\144\040"
10392 "\151\156\164\145\162\156\141\154\055\143\150\151\154\144\075\042"
10393 "\141\143\164\151\157\156\137\141\162\145\141\042\076\012\040\040"
10394 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
10395 "\143\154\141\163\163\075\042\107\164\153\102\165\164\164\157\156"
10396 "\102\157\170\042\040\151\144\075\042\144\151\141\154\157\147\055"
10397 "\141\143\164\151\157\156\137\141\162\145\141\061\042\076\012\040"
10398 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
10399 "\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142"
10400 "\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
10401 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10402 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
10403 "\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145"
10404 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
10405 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
10406 "\171\040\156\141\155\145\075\042\154\141\171\157\165\164\137\163"
10407 "\164\171\154\145\042\076\145\156\144\074\057\160\162\157\160\145"
10408 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\074"
10409 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
10410 "\040\040\040\074\160\141\143\153\151\156\147\076\012\040\040\040"
10411 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10412 "\164\171\040\156\141\155\145\075\042\145\170\160\141\156\144\042"
10413 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
10414 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
10415 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\146\151"
10416 "\154\154\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
10417 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10418 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
10419 "\160\141\143\153\137\164\171\160\145\042\076\145\156\144\074\057"
10420 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
10421 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
10422 "\156\141\155\145\075\042\160\157\163\151\164\151\157\156\042\076"
10423 "\060\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10424 "\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147"
10425 "\076\012\040\040\040\040\040\040\040\040\074\057\143\150\151\154"
10426 "\144\076\012\040\040\040\040\040\040\040\040\074\143\150\151\154"
10427 "\144\076\012\040\040\040\040\040\040\040\040\040\040\074\160\154"
10428 "\141\143\145\150\157\154\144\145\162\057\076\012\040\040\040\040"
10429 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
10430 "\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040"
10431 "\040\074\057\143\150\151\154\144\076\012\040\040\074\057\157\142"
10432 "\152\145\143\164\076\012\074\057\151\156\164\145\162\146\141\143"
10433 "\145\076\012\000\000\050\165\165\141\171\051\157\162\147\057\000"
10434 "\003\000\000\000\166\151\162\164\055\166\151\145\167\145\162\056"
10435 "\160\156\147\000\000\000\000\000\356\011\000\000\000\000\000\000"
10436 "\211\120\116\107\015\012\032\012\000\000\000\015\111\110\104\122"
10437 "\000\000\000\060\000\000\000\060\010\006\000\000\000\127\002\371"
10438 "\207\000\000\000\006\142\113\107\104\000\377\000\377\000\377\240"
10439 "\275\247\223\000\000\011\243\111\104\101\124\150\201\355\131\115"
10440 "\214\034\107\025\376\252\253\252\177\274\073\373\343\135\147\263"
10441 "\011\153\257\167\263\366\072\153\223\113\022\105\162\204\344\040"
10442 "\204\204\024\070\160\340\220\113\316\134\120\044\070\041\041\116"
10443 "\050\110\310\026\101\334\120\156\010\024\041\204\104\040\012\134"
10444 "\242\044\007\022\341\215\223\020\054\205\200\155\262\273\236\265"
10445 "\167\147\147\147\172\176\372\247\336\343\320\323\063\335\063\275"
10446 "\063\203\235\023\244\244\322\124\167\275\256\372\276\367\136\175"
10447 "\135\135\003\174\136\076\057\377\337\105\024\335\174\351\245\227"
10448 "\246\204\045\136\141\342\247\230\331\276\227\201\211\010\314\334"
10449 "\255\375\327\331\173\000\272\367\214\061\003\066\102\160\203\010"
10450 "\077\177\361\305\027\177\330\077\217\052\232\334\030\363\235\363"
10451 "\217\156\134\172\342\311\047\154\113\130\103\201\062\070\163\301"
10452 "\231\373\071\243\302\013\316\135\346\214\162\175\141\024\172\057"
10453 "\377\342\345\357\276\360\302\013\177\274\162\345\312\273\043\011"
10454 "\150\255\317\057\057\237\262\133\355\006\032\315\006\174\077\056"
10455 "\006\237\002\346\014\221\114\333\165\044\154\307\032\152\063\116"
10456 "\373\370\314\074\316\256\257\133\273\273\157\236\001\060\232\200"
10457 "\260\304\214\326\066\014\031\374\372\127\037\341\265\127\077\300"
10458 "\304\204\354\205\173\030\221\114\247\045\005\244\145\165\154\062"
10459 "\366\375\336\316\106\216\031\267\167\002\174\377\007\137\306\306"
10460 "\306\064\300\200\061\006\256\353\110\000\123\375\130\013\011\200"
10461 "\171\132\051\005\046\203\073\145\037\217\077\076\211\331\331\143"
10462 "\140\106\056\077\323\011\173\025\271\076\042\116\340\166\372\372"
10463 "\355\223\176\014\264\033\376\076\166\266\153\230\235\151\301\161"
10464 "\034\314\315\237\200\353\272\062\216\343\322\130\004\230\121\122"
10465 "\132\041\214\142\124\253\055\314\316\020\242\050\056\004\332\003"
10466 "\227\357\313\202\075\012\150\336\256\107\320\262\200\275\275\046"
10467 "\226\116\075\012\062\004\046\202\343\330\122\010\061\075\036\001"
10468 "\360\244\222\022\101\110\150\064\042\314\316\020\302\060\032\013"
10469 "\050\063\103\010\321\155\367\236\101\346\231\376\347\023\033\100"
10470 "\200\231\241\065\120\251\264\260\263\125\206\061\006\123\123\323"
10471 "\320\332\206\020\142\176\054\002\140\114\110\251\100\314\010\303"
10472 "\030\314\100\024\305\020\102\164\245\055\055\104\350\003\311\140"
10473 "\246\056\260\101\022\014\041\222\276\224\144\057\362\111\133\051"
10474 "\340\260\332\306\342\303\013\040\112\346\323\132\003\002\263\143"
10475 "\021\040\042\117\112\011\042\203\070\116\010\304\161\066\237\173"
10476 "\236\313\106\141\320\323\351\170\131\033\121\150\313\314\150\066"
10477 "\333\250\327\133\250\126\175\114\226\014\366\357\126\120\073\364"
10478 "\161\156\343\014\264\126\020\020\063\343\105\000\160\055\313\352"
10479 "\246\205\061\107\055\304\236\147\213\110\244\236\076\152\235\060"
10480 "\063\016\017\175\124\052\065\324\152\076\342\330\164\246\027\210"
10481 "\042\203\271\371\343\230\235\233\001\023\103\153\015\143\342\321"
10482 "\153\340\362\345\313\236\326\232\230\331\002\047\157\124\143\150"
10483 "\100\141\006\275\057\006\310\024\021\003\200\146\263\215\273\167"
10484 "\253\250\126\353\060\246\227\216\122\366\340\104\221\101\275\356"
10485 "\343\366\166\031\347\066\316\302\321\036\230\061\132\205\214\061"
10486 "\045\333\326\061\061\051\106\342\375\136\372\144\001\365\247\012"
10487 "\145\264\176\060\225\230\031\255\126\200\335\335\012\152\265\106"
10488 "\327\323\122\312\156\033\110\242\226\106\140\162\162\002\053\153"
10489 "\313\340\016\271\330\304\223\043\011\060\163\111\153\155\322\205"
10490 "\110\206\072\013\051\041\221\346\260\020\131\117\347\011\365\023"
10491 "\155\267\103\224\313\025\064\032\255\001\117\003\242\073\126\217"
10492 "\204\200\211\015\202\040\300\047\037\337\300\372\271\063\230\236"
10493 "\224\060\261\071\066\222\200\224\162\112\073\066\245\012\101\234"
10494 "\156\314\122\013\352\050\110\261\247\063\216\200\061\204\375\375"
10495 "\032\016\016\352\000\070\007\134\210\354\076\122\164\075\237\364"
10496 "\001\121\114\260\155\033\217\236\077\013\010\100\052\205\070\216"
10497 "\275\221\004\230\271\344\332\156\127\012\215\061\035\251\034\324"
10498 "\364\316\023\031\171\024\135\171\254\327\233\250\124\016\141\014"
10499 "\301\262\144\027\130\166\003\334\043\061\030\005\023\123\072\072"
10500 "\100\200\114\104\305\101\272\330\072\145\140\253\031\307\161\311"
10501 "\266\265\105\104\150\066\143\200\011\104\200\061\251\042\365\364"
10502 "\333\030\164\053\221\200\061\214\050\062\270\163\247\212\375\375"
10503 "\032\230\055\110\251\040\245\204\224\012\226\245\072\327\375\125"
10504 "\146\372\022\333\070\356\244\146\147\123\107\104\120\112\321\263"
10505 "\317\076\233\213\102\121\004\246\034\307\266\210\011\015\077\204"
10506 "\260\010\161\234\170\046\315\367\304\163\203\122\352\373\055\324"
10507 "\152\015\060\147\363\174\060\075\212\243\320\177\115\150\267\015"
10508 "\034\327\102\252\206\266\155\307\256\353\116\001\150\036\111\200"
10509 "\210\112\266\355\130\114\004\277\036\165\300\365\044\062\115\021"
10510 "\244\001\146\201\126\053\204\357\067\141\014\103\010\011\041\362"
10511 "\300\212\363\275\230\124\152\153\131\204\132\075\300\011\047\161"
10512 "\270\041\003\317\163\143\042\052\001\050\017\045\240\155\255\210"
10513 "\010\265\172\010\062\004\143\044\172\012\324\333\072\030\103\360"
10514 "\375\066\302\060\002\140\041\121\304\161\074\075\072\052\102\060"
10515 "\374\132\214\023\363\351\046\220\340\272\056\063\163\356\135\120"
10516 "\230\102\266\235\244\120\275\036\041\121\035\253\023\205\144\260"
10517 "\060\064\150\267\103\304\261\201\020\242\223\056\303\075\233\047"
10518 "\061\236\155\275\036\165\325\055\045\100\104\271\157\202\001\002"
10519 "\102\210\071\251\244\040\042\354\355\065\240\224\000\221\000\021"
10520 "\041\212\222\155\165\362\366\114\200\337\113\172\214\143\053\045"
10521 "\120\255\006\211\323\300\040\062\160\034\107\214\214\200\020\342"
10522 "\270\126\032\104\204\152\065\004\263\201\357\123\107\126\005\172"
10523 "\157\317\361\162\174\274\124\032\264\265\155\106\245\322\116\144"
10524 "\264\263\210\135\317\265\072\153\340\150\002\000\315\050\045\101"
10525 "\104\070\254\266\041\245\005\041\004\054\053\125\334\317\046\075"
10526 "\106\021\162\135\106\365\040\350\052\276\041\003\327\163\045\063"
10527 "\017\117\041\146\061\255\224\112\010\034\206\160\034\325\005\060"
10528 "\176\172\334\177\124\034\207\121\255\206\035\114\014\046\206\235"
10529 "\210\313\360\010\030\143\246\244\122\210\114\200\240\035\203\131"
10530 "\042\273\113\270\177\117\217\247\122\000\320\152\305\275\105\314"
10531 "\006\256\343\015\174\330\027\311\350\244\222\022\141\104\370\312"
10532 "\127\117\341\235\277\364\235\153\161\377\045\027\336\037\274\305"
10533 "\135\270\074\330\071\140\317\314\170\342\311\007\272\155\062\004"
10534 "\155\153\241\224\312\175\126\016\020\210\343\170\302\222\022\304"
10535 "\204\213\117\057\342\342\305\305\341\347\066\335\313\174\373\323"
10536 "\133\133\010\302\000\365\272\217\365\365\063\160\135\067\147\223"
10537 "\002\033\267\115\314\260\265\206\245\254\334\147\145\301\032\060"
10538 "\032\140\124\017\016\341\373\376\120\220\271\123\265\276\373\112"
10539 "\111\110\345\341\230\347\341\240\162\220\073\013\312\106\140\134"
10540 "\122\013\013\013\211\230\300\312\155\251\213\026\361\207\177\377"
10541 "\350\372\305\363\347\067\254\330\104\371\201\062\021\340\034\000"
10542 "\036\044\230\373\132\353\275\275\213\234\300\035\003\056\032\247"
10543 "\203\113\000\370\355\157\176\327\012\303\360\255\241\004\302\060"
10544 "\174\356\117\257\377\371\325\267\336\174\373\234\353\072\224\075"
10545 "\224\065\206\004\061\165\137\355\140\300\220\021\335\217\032\206"
10546 "\140\146\005\044\272\235\175\066\327\146\212\230\272\367\270\350"
10547 "\340\127\010\301\331\010\370\276\057\230\371\367\236\347\375\064"
10548 "\213\267\360\164\032\000\236\177\376\171\327\363\074\257\134\056"
10549 "\353\203\203\003\273\321\150\330\355\166\333\016\303\320\216\242"
10550 "\310\066\306\330\101\020\070\122\312\143\253\217\254\176\175\172"
10551 "\146\352\033\122\312\271\307\036\373\342\121\007\005\335\210\134"
10552 "\273\366\276\061\206\376\121\336\051\277\162\343\306\215\267\055"
10553 "\313\212\054\313\012\245\224\241\224\062\124\112\205\266\155\207"
10554 "\236\347\005\023\023\023\321\354\354\154\324\150\064\352\157\274"
10555 "\361\306\300\041\355\221\004\072\305\002\340\364\125\027\200\015"
10556 "\300\271\160\141\343\251\345\225\225\037\055\076\264\250\057\134"
10557 "\330\360\026\027\037\304\077\077\371\327\210\041\031\313\247\227"
10558 "\161\353\326\277\261\171\365\275\226\357\373\133\233\177\175\357"
10559 "\173\073\073\073\133\000\202\041\225\212\106\033\352\055\000\262"
10560 "\257\252\364\167\151\171\151\151\345\221\325\237\134\272\164\311"
10561 "\375\302\322\103\335\103\057\307\031\375\167\202\122\012\253\253"
10562 "\053\070\175\172\331\333\274\172\155\105\010\361\263\073\177\270"
10563 "\363\255\070\071\127\111\153\234\231\327\272\127\002\100\272\001"
10564 "\352\253\047\227\226\236\131\133\173\104\055\076\374\040\264\326"
10565 "\210\343\344\344\156\176\156\156\214\041\223\142\131\026\316\155"
10566 "\234\225\267\156\336\230\137\131\133\131\373\370\372\307\037\026"
10567 "\314\005\014\311\224\121\004\030\011\163\352\153\123\034\106\173"
10568 "\373\325\203\250\122\071\120\147\326\326\060\063\075\003\277\341"
10569 "\243\351\065\020\004\001\014\231\334\100\311\266\133\302\165\023"
10570 "\151\125\112\143\347\366\066\052\225\052\232\255\266\325\254\067"
10571 "\367\262\343\367\315\133\360\332\033\217\300\121\041\225\233\233"
10572 "\327\136\073\361\300\211\157\276\277\171\155\375\360\260\152\317"
10573 "\317\315\143\345\364\012\116\237\136\305\334\154\022\205\060\012"
10574 "\141\214\201\326\032\122\112\204\141\210\362\156\031\333\073\333"
10575 "\270\171\363\006\032\315\006\336\277\366\101\160\170\130\373\345"
10576 "\326\326\326\355\316\034\151\065\175\265\260\214\132\304\350\000"
10577 "\116\027\260\335\251\016\000\133\153\355\075\375\245\247\277\075"
10578 "\071\071\361\334\311\123\113\130\130\130\160\204\264\020\266\103"
10579 "\114\115\117\241\124\052\101\153\033\255\146\023\325\152\025\101"
10580 "\030\300\165\034\264\303\200\267\156\175\032\354\357\125\132\333"
10581 "\267\167\176\174\365\335\253\257\003\010\073\065\050\370\275\057"
10582 "\002\100\117\215\354\202\252\217\037\057\115\255\236\131\177\146"
10583 "\376\304\374\327\264\122\347\210\250\344\171\136\340\270\016\204"
10584 "\020\202\015\121\273\035\130\355\166\333\226\322\272\333\152\265"
10585 "\067\313\273\273\257\136\377\333\365\167\242\050\112\201\107\031"
10586 "\022\131\062\205\213\367\277\045\220\332\352\024\164\137\125\350"
10587 "\051\224\364\074\317\075\171\362\341\123\122\332\116\372\160\053"
10588 "\154\325\266\156\155\155\107\121\024\041\237\226\121\346\067\255"
10589 "\051\241\043\163\377\136\010\364\023\311\002\357\202\107\022\255"
10590 "\364\223\055\073\176\272\030\015\022\257\146\111\244\065\045\060"
10591 "\022\370\375\020\350\177\276\210\200\100\357\320\054\173\222\226"
10592 "\125\263\176\002\143\203\356\007\360\131\227\024\174\126\303\173"
10593 "\007\111\075\022\237\227\377\211\362\037\321\073\103\033\166\221"
10594 "\172\352\000\000\000\000\111\105\116\104\256\102\140\202\000\000"
10595 "\050\165\165\141\171\051\057\000\021\000\000\000\166\151\162\164"
10596 "\055\166\151\145\167\145\162\057\017\000\000\000\025\000\000\000"
10597 "\165\151\057\000\006\000\000\000\027\000\000\000\020\000\000\000"
10598 "\002\000\000\000\026\000\000\000\012\000\000\000\011\000\000\000"
10599 "\030\000\000\000\013\000\000\000\166\151\162\164\055\166\151\145"
10600 "\167\145\162\055\146\151\154\145\055\164\162\141\156\163\146\145"
10601 "\162\055\144\151\141\154\157\147\056\165\151\000\000\000\000\000"
10602 "\165\016\000\000\000\000\000\000\074\077\170\155\154\040\166\145"
10603 "\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157"
10604 "\144\151\156\147\075\042\125\124\106\055\070\042\077\076\012\074"
10605 "\151\156\164\145\162\146\141\143\145\076\012\040\040\074\162\145"
10606 "\161\165\151\162\145\163\040\154\151\142\075\042\147\164\153\053"
10607 "\042\040\166\145\162\163\151\157\156\075\042\063\056\061\060\042"
10608 "\057\076\012\040\040\074\041\055\055\040\151\156\164\145\162\146"
10609 "\141\143\145\055\156\141\155\151\156\147\055\160\157\154\151\143"
10610 "\171\040\160\162\157\152\145\143\164\055\167\151\144\145\040\055"
10611 "\055\076\012\040\040\074\164\145\155\160\154\141\164\145\040\143"
10612 "\154\141\163\163\075\042\126\151\162\164\126\151\145\167\145\162"
10613 "\106\151\154\145\124\162\141\156\163\146\145\162\104\151\141\154"
10614 "\157\147\042\040\160\141\162\145\156\164\075\042\107\164\153\104"
10615 "\151\141\154\157\147\042\076\012\040\040\040\040\074\160\162\157"
10616 "\160\145\162\164\171\040\156\141\155\145\075\042\144\145\146\141"
10617 "\165\154\164\137\167\151\144\164\150\042\076\064\060\060\074\057"
10618 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074\160"
10619 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141"
10620 "\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057"
10621 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074\160"
10622 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\142\157"
10623 "\162\144\145\162\137\167\151\144\164\150\042\076\065\074\057\160"
10624 "\162\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162"
10625 "\157\160\145\162\164\171\040\156\141\155\145\075\042\164\171\160"
10626 "\145\137\150\151\156\164\042\076\144\151\141\154\157\147\074\057"
10627 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074\143"
10628 "\150\151\154\144\040\151\156\164\145\162\156\141\154\055\143\150"
10629 "\151\154\144\075\042\166\142\157\170\042\076\012\040\040\040\040"
10630 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
10631 "\042\107\164\153\102\157\170\042\040\151\144\075\042\144\151\141"
10632 "\154\157\147\055\166\142\157\170\061\042\076\012\040\040\040\040"
10633 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10634 "\155\145\075\042\157\162\151\145\156\164\141\164\151\157\156\042"
10635 "\076\166\145\162\164\151\143\141\154\074\057\160\162\157\160\145"
10636 "\162\164\171\076\012\040\040\040\040\040\040\040\040\074\160\162"
10637 "\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163"
10638 "\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160"
10639 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\074\160"
10640 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141"
10641 "\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057"
10642 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
10643 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10644 "\075\042\163\160\141\143\151\156\147\042\076\061\062\074\057\160"
10645 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10646 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
10647 "\042\142\157\162\144\145\162\055\167\151\144\164\150\042\076\061"
10648 "\062\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10649 "\040\040\040\040\040\074\143\150\151\154\144\040\151\156\164\145"
10650 "\162\156\141\154\055\143\150\151\154\144\075\042\141\143\164\151"
10651 "\157\156\137\141\162\145\141\042\076\012\040\040\040\040\040\040"
10652 "\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163"
10653 "\163\075\042\107\164\153\102\165\164\164\157\156\102\157\170\042"
10654 "\040\151\144\075\042\144\151\141\154\157\147\055\141\143\164\151"
10655 "\157\156\137\141\162\145\141\061\042\076\012\040\040\040\040\040"
10656 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
10657 "\040\156\141\155\145\075\042\157\162\151\145\156\164\141\164\151"
10658 "\157\156\042\076\150\157\162\151\172\157\156\164\141\154\074\057"
10659 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
10660 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
10661 "\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076\124"
10662 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
10663 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
10664 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
10665 "\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157"
10666 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
10667 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
10668 "\145\075\042\154\141\171\157\165\164\137\163\164\171\154\145\042"
10669 "\076\145\156\144\074\057\160\162\157\160\145\162\164\171\076\012"
10670 "\040\040\040\040\040\040\040\040\040\040\040\040\074\143\150\151"
10671 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10672 "\040\040\074\160\154\141\143\145\150\157\154\144\145\162\057\076"
10673 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143"
10674 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
10675 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
10676 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
10677 "\143\154\141\163\163\075\042\107\164\153\102\165\164\164\157\156"
10678 "\042\040\151\144\075\042\142\165\164\164\157\156\061\042\076\012"
10679 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10680 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
10681 "\154\141\142\145\154\042\040\164\162\141\156\163\154\141\164\141"
10682 "\142\154\145\075\042\171\145\163\042\076\137\103\141\156\143\145"
10683 "\154\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10684 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
10685 "\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163"
10686 "\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160"
10687 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
10688 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
10689 "\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042"
10690 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
10691 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10692 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
10693 "\042\162\145\143\145\151\166\145\163\137\144\145\146\141\165\154"
10694 "\164\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10695 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10696 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
10697 "\145\075\042\165\163\145\137\165\156\144\145\162\154\151\156\145"
10698 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
10699 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10700 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
10701 "\040\040\040\040\040\040\040\040\074\160\141\143\153\151\156\147"
10702 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10703 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10704 "\075\042\145\170\160\141\156\144\042\076\106\141\154\163\145\074"
10705 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
10706 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
10707 "\145\162\164\171\040\156\141\155\145\075\042\146\151\154\154\042"
10708 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
10709 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10710 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10711 "\075\042\160\157\163\151\164\151\157\156\042\076\061\074\057\160"
10712 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10713 "\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156\147"
10714 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057"
10715 "\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040"
10716 "\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040"
10717 "\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040"
10718 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
10719 "\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141\156"
10720 "\144\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10721 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
10722 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\146"
10723 "\151\154\154\042\076\124\162\165\145\074\057\160\162\157\160\145"
10724 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
10725 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
10726 "\042\160\157\163\151\164\151\157\156\042\076\060\074\057\160\162"
10727 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10728 "\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040\040"
10729 "\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040"
10730 "\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040\040"
10731 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
10732 "\143\154\141\163\163\075\042\107\164\153\102\157\170\042\040\151"
10733 "\144\075\042\166\142\157\170\061\042\076\012\040\040\040\040\040"
10734 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
10735 "\040\156\141\155\145\075\042\157\162\151\145\156\164\141\164\151"
10736 "\157\156\042\076\166\145\162\164\151\143\141\154\074\057\160\162"
10737 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10738 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10739 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
10740 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10741 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10742 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
10743 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
10744 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
10745 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
10746 "\042\163\160\141\143\151\156\147\042\076\061\062\074\057\160\162"
10747 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10748 "\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040"
10749 "\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143"
10750 "\164\040\143\154\141\163\163\075\042\107\164\153\114\141\142\145"
10751 "\154\042\040\151\144\075\042\164\162\141\156\163\146\145\162\137"
10752 "\163\165\155\155\141\162\171\042\076\012\040\040\040\040\040\040"
10753 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10754 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
10755 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10756 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10757 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
10758 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141"
10759 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
10760 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10761 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154"
10762 "\141\142\145\154\042\040\164\162\141\156\163\154\141\164\141\142"
10763 "\154\145\075\042\171\145\163\042\076\154\141\142\145\154\074\057"
10764 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
10765 "\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164"
10766 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10767 "\074\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040"
10768 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10769 "\162\164\171\040\156\141\155\145\075\042\145\170\160\141\156\144"
10770 "\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171"
10771 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10772 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10773 "\075\042\146\151\154\154\042\076\124\162\165\145\074\057\160\162"
10774 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10775 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
10776 "\171\040\156\141\155\145\075\042\160\157\163\151\164\151\157\156"
10777 "\042\076\060\074\057\160\162\157\160\145\162\164\171\076\012\040"
10778 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\160"
10779 "\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040"
10780 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
10781 "\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076"
10782 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10783 "\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164"
10784 "\153\120\162\157\147\162\145\163\163\102\141\162\042\040\151\144"
10785 "\075\042\160\162\157\147\162\145\163\163\142\141\162\042\076\012"
10786 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
10787 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
10788 "\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160"
10789 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10790 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10791 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
10792 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
10793 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
10794 "\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040"
10795 "\040\040\040\040\040\040\040\040\040\040\040\074\160\141\143\153"
10796 "\151\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040"
10797 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
10798 "\141\155\145\075\042\145\170\160\141\156\144\042\076\124\162\165"
10799 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10800 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
10801 "\157\160\145\162\164\171\040\156\141\155\145\075\042\146\151\154"
10802 "\154\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10803 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
10804 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
10805 "\145\075\042\160\157\163\151\164\151\157\156\042\076\061\074\057"
10806 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
10807 "\040\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156"
10808 "\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
10809 "\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
10810 "\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040"
10811 "\040\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012"
10812 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
10813 "\160\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141"
10814 "\156\144\042\076\124\162\165\145\074\057\160\162\157\160\145\162"
10815 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10816 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
10817 "\146\151\154\154\042\076\124\162\165\145\074\057\160\162\157\160"
10818 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
10819 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
10820 "\075\042\160\157\163\151\164\151\157\156\042\076\061\074\057\160"
10821 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10822 "\040\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040"
10823 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
10824 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
10825 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040"
10826 "\074\141\143\164\151\157\156\055\167\151\144\147\145\164\163\076"
10827 "\012\040\040\040\040\040\040\074\141\143\164\151\157\156\055\167"
10828 "\151\144\147\145\164\040\162\145\163\160\157\156\163\145\075\042"
10829 "\055\066\042\076\142\165\164\164\157\156\061\074\057\141\143\164"
10830 "\151\157\156\055\167\151\144\147\145\164\076\012\040\040\040\040"
10831 "\074\057\141\143\164\151\157\156\055\167\151\144\147\145\164\163"
10832 "\076\012\040\040\074\057\164\145\155\160\154\141\164\145\076\012"
10833 "\074\057\151\156\164\145\162\146\141\143\145\076\012\000\000\050"
10834 "\165\165\141\171\051\162\145\155\157\164\145\055\166\151\145\167"
10835 "\145\162\055\151\163\157\055\154\151\163\164\056\165\151\000\000"
10836 "\166\031\000\000\000\000\000\000\074\077\170\155\154\040\166\145"
10837 "\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157"
10838 "\144\151\156\147\075\042\125\124\106\055\070\042\077\076\012\074"
10839 "\041\055\055\040\107\145\156\145\162\141\164\145\144\040\167\151"
10840 "\164\150\040\147\154\141\144\145\040\063\056\062\060\056\060\040"
10841 "\055\055\076\012\074\151\156\164\145\162\146\141\143\145\076\012"
10842 "\040\040\074\162\145\161\165\151\162\145\163\040\154\151\142\075"
10843 "\042\147\164\153\053\042\040\166\145\162\163\151\157\156\075\042"
10844 "\063\056\061\066\042\057\076\012\040\040\074\157\142\152\145\143"
10845 "\164\040\143\154\141\163\163\075\042\107\164\153\114\151\163\164"
10846 "\123\164\157\162\145\042\040\151\144\075\042\154\151\163\164\163"
10847 "\164\157\162\145\042\076\012\040\040\040\040\074\143\157\154\165"
10848 "\155\156\163\076\012\040\040\040\040\040\040\074\041\055\055\040"
10849 "\143\157\154\165\155\156\055\156\141\155\145\040\163\145\154\145"
10850 "\143\164\145\144\040\055\055\076\012\040\040\040\040\040\040\074"
10851 "\143\157\154\165\155\156\040\164\171\160\145\075\042\147\142\157"
10852 "\157\154\145\141\156\042\057\076\012\040\040\040\040\040\040\074"
10853 "\041\055\055\040\143\157\154\165\155\156\055\156\141\155\145\040"
10854 "\156\141\155\145\040\055\055\076\012\040\040\040\040\040\040\074"
10855 "\143\157\154\165\155\156\040\164\171\160\145\075\042\147\143\150"
10856 "\141\162\141\162\162\141\171\042\057\076\012\040\040\040\040\040"
10857 "\040\074\041\055\055\040\143\157\154\165\155\156\055\156\141\155"
10858 "\145\040\167\145\151\147\150\164\040\055\055\076\012\040\040\040"
10859 "\040\040\040\074\143\157\154\165\155\156\040\164\171\160\145\075"
10860 "\042\147\151\156\164\042\057\076\012\040\040\040\040\074\057\143"
10861 "\157\154\165\155\156\163\076\012\040\040\074\057\157\142\152\145"
10862 "\143\164\076\012\040\040\074\157\142\152\145\143\164\040\143\154"
10863 "\141\163\163\075\042\107\164\153\123\164\141\143\153\042\040\151"
10864 "\144\075\042\163\164\141\143\153\042\076\012\040\040\040\040\074"
10865 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166"
10866 "\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162"
10867 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
10868 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
10869 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
10870 "\157\160\145\162\164\171\076\012\040\040\040\040\074\143\150\151"
10871 "\154\144\076\012\040\040\040\040\040\040\074\157\142\152\145\143"
10872 "\164\040\143\154\141\163\163\075\042\107\164\153\102\157\170\042"
10873 "\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10874 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
10875 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10876 "\171\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160"
10877 "\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146"
10878 "\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162\157"
10879 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\074"
10880 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\157"
10881 "\162\151\145\156\164\141\164\151\157\156\042\076\166\145\162\164"
10882 "\151\143\141\154\074\057\160\162\157\160\145\162\164\171\076\012"
10883 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
10884 "\171\040\156\141\155\145\075\042\163\160\141\143\151\156\147\042"
10885 "\076\066\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
10886 "\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040\040"
10887 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
10888 "\143\154\141\163\163\075\042\107\164\153\114\141\142\145\154\042"
10889 "\040\151\144\075\042\163\164\141\164\165\163\042\076\012\040\040"
10890 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10891 "\162\164\171\040\156\141\155\145\075\042\166\151\163\151\142\154"
10892 "\145\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10893 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
10894 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\143"
10895 "\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145\074"
10896 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
10897 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
10898 "\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162"
10899 "\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042"
10900 "\076\114\157\141\144\151\156\147\056\056\056\074\057\160\162\157"
10901 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
10902 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
10903 "\145\075\042\171\141\154\151\147\156\042\076\061\074\057\160\162"
10904 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10905 "\040\040\040\040\074\141\164\164\162\151\142\165\164\145\163\076"
10906 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
10907 "\141\164\164\162\151\142\165\164\145\040\156\141\155\145\075\042"
10908 "\167\145\151\147\150\164\042\040\166\141\154\165\145\075\042\142"
10909 "\157\154\144\042\057\076\012\040\040\040\040\040\040\040\040\040"
10910 "\040\040\040\074\057\141\164\164\162\151\142\165\164\145\163\076"
10911 "\012\040\040\040\040\040\040\040\040\040\040\074\057\157\142\152"
10912 "\145\143\164\076\012\040\040\040\040\040\040\040\040\040\040\074"
10913 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
10914 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
10915 "\141\155\145\075\042\145\170\160\141\156\144\042\076\124\162\165"
10916 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10917 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10918 "\164\171\040\156\141\155\145\075\042\146\151\154\154\042\076\124"
10919 "\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
10920 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
10921 "\145\162\164\171\040\156\141\155\145\075\042\160\157\163\151\164"
10922 "\151\157\156\042\076\060\074\057\160\162\157\160\145\162\164\171"
10923 "\076\012\040\040\040\040\040\040\040\040\040\040\074\057\160\141"
10924 "\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040\074"
10925 "\057\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
10926 "\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
10927 "\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075"
10928 "\042\107\164\153\123\160\151\156\156\145\162\042\040\151\144\075"
10929 "\042\163\160\151\156\156\145\162\042\076\012\040\040\040\040\040"
10930 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
10931 "\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076"
10932 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
10933 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
10934 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
10935 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
10936 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
10937 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10938 "\155\145\075\042\141\143\164\151\166\145\042\076\124\162\165\145"
10939 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
10940 "\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012"
10941 "\040\040\040\040\040\040\040\040\040\040\074\160\141\143\153\151"
10942 "\156\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
10943 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
10944 "\145\170\160\141\156\144\042\076\106\141\154\163\145\074\057\160"
10945 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10946 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
10947 "\141\155\145\075\042\146\151\154\154\042\076\124\162\165\145\074"
10948 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
10949 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
10950 "\040\156\141\155\145\075\042\160\157\163\151\164\151\157\156\042"
10951 "\076\061\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
10952 "\040\040\040\040\040\040\040\040\074\057\160\141\143\153\151\156"
10953 "\147\076\012\040\040\040\040\040\040\040\040\074\057\143\150\151"
10954 "\154\144\076\012\040\040\040\040\040\040\040\040\074\143\150\151"
10955 "\154\144\076\012\040\040\040\040\040\040\040\040\040\040\074\157"
10956 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
10957 "\114\141\142\145\154\042\076\012\040\040\040\040\040\040\040\040"
10958 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10959 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
10960 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
10961 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10962 "\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157\143"
10963 "\165\163\042\076\106\141\154\163\145\074\057\160\162\157\160\145"
10964 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\074"
10965 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
10966 "\040\040\040\074\160\141\143\153\151\156\147\076\012\040\040\040"
10967 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
10968 "\164\171\040\156\141\155\145\075\042\145\170\160\141\156\144\042"
10969 "\076\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076"
10970 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
10971 "\157\160\145\162\164\171\040\156\141\155\145\075\042\146\151\154"
10972 "\154\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
10973 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
10974 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\160"
10975 "\157\163\151\164\151\157\156\042\076\062\074\057\160\162\157\160"
10976 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
10977 "\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
10978 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040"
10979 "\040\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040"
10980 "\040\040\074\160\141\143\153\151\156\147\076\012\040\040\040\040"
10981 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
10982 "\155\145\075\042\156\141\155\145\042\076\163\164\141\164\165\163"
10983 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
10984 "\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040\040"
10985 "\040\074\057\143\150\151\154\144\076\012\040\040\040\040\074\143"
10986 "\150\151\154\144\076\012\040\040\040\040\040\040\074\157\142\152"
10987 "\145\143\164\040\143\154\141\163\163\075\042\107\164\153\102\157"
10988 "\170\042\076\012\040\040\040\040\040\040\040\040\074\160\162\157"
10989 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
10990 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
10991 "\162\164\171\076\012\040\040\040\040\040\040\040\040\074\160\162"
10992 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
10993 "\137\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160"
10994 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
10995 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
10996 "\042\157\162\151\145\156\164\141\164\151\157\156\042\076\166\145"
10997 "\162\164\151\143\141\154\074\057\160\162\157\160\145\162\164\171"
10998 "\076\012\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
10999 "\162\164\171\040\156\141\155\145\075\042\163\160\141\143\151\156"
11000 "\147\042\076\066\074\057\160\162\157\160\145\162\164\171\076\012"
11001 "\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012"
11002 "\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143"
11003 "\164\040\143\154\141\163\163\075\042\107\164\153\114\141\142\145"
11004 "\154\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11005 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11006 "\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057\160"
11007 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
11008 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
11009 "\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076"
11010 "\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171\076"
11011 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
11012 "\157\160\145\162\164\171\040\156\141\155\145\075\042\154\141\142"
11013 "\145\154\042\040\164\162\141\156\163\154\141\164\141\142\154\145"
11014 "\075\042\171\145\163\042\076\123\145\154\145\143\164\040\111\123"
11015 "\117\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
11016 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
11017 "\164\171\040\156\141\155\145\075\042\170\141\154\151\147\156\042"
11018 "\076\060\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
11019 "\040\040\040\040\040\040\040\040\040\040\074\141\164\164\162\151"
11020 "\142\165\164\145\163\076\012\040\040\040\040\040\040\040\040\040"
11021 "\040\040\040\040\040\074\141\164\164\162\151\142\165\164\145\040"
11022 "\156\141\155\145\075\042\167\145\151\147\150\164\042\040\166\141"
11023 "\154\165\145\075\042\142\157\154\144\042\057\076\012\040\040\040"
11024 "\040\040\040\040\040\040\040\040\040\074\057\141\164\164\162\151"
11025 "\142\165\164\145\163\076\012\040\040\040\040\040\040\040\040\040"
11026 "\040\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040"
11027 "\040\040\040\040\040\074\160\141\143\153\151\156\147\076\012\040"
11028 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
11029 "\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141\156"
11030 "\144\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162"
11031 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11032 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11033 "\146\151\154\154\042\076\124\162\165\145\074\057\160\162\157\160"
11034 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
11035 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
11036 "\075\042\160\157\163\151\164\151\157\156\042\076\060\074\057\160"
11037 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
11038 "\040\040\040\074\057\160\141\143\153\151\156\147\076\012\040\040"
11039 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
11040 "\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040"
11041 "\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164"
11042 "\040\143\154\141\163\163\075\042\107\164\153\101\154\151\147\156"
11043 "\155\145\156\164\042\040\151\144\075\042\141\154\151\147\156\155"
11044 "\145\156\164\042\076\012\040\040\040\040\040\040\040\040\040\040"
11045 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
11046 "\075\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074"
11047 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
11048 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11049 "\040\156\141\155\145\075\042\143\141\156\137\146\157\143\165\163"
11050 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
11051 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
11052 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\142"
11053 "\157\164\164\157\155\137\160\141\144\144\151\156\147\042\076\066"
11054 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
11055 "\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012"
11056 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157"
11057 "\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153"
11058 "\123\143\162\157\154\154\145\144\127\151\156\144\157\167\042\076"
11059 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11060 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
11061 "\042\166\151\163\151\142\154\145\042\076\124\162\165\145\074\057"
11062 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
11063 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
11064 "\162\164\171\040\156\141\155\145\075\042\143\141\156\137\146\157"
11065 "\143\165\163\042\076\124\162\165\145\074\057\160\162\157\160\145"
11066 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
11067 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
11068 "\141\155\145\075\042\163\150\141\144\157\167\137\164\171\160\145"
11069 "\042\076\151\156\074\057\160\162\157\160\145\162\164\171\076\012"
11070 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11071 "\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040"
11072 "\040\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143"
11073 "\164\040\143\154\141\163\163\075\042\107\164\153\124\162\145\145"
11074 "\126\151\145\167\042\040\151\144\075\042\166\151\145\167\042\076"
11075 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11076 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
11077 "\141\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162"
11078 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
11079 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11080 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
11081 "\075\042\143\141\156\137\146\157\143\165\163\042\076\124\162\165"
11082 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
11083 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11084 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
11085 "\042\155\157\144\145\154\042\076\154\151\163\164\163\164\157\162"
11086 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
11087 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11088 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
11089 "\042\150\145\141\144\145\162\163\137\166\151\163\151\142\154\145"
11090 "\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164"
11091 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
11092 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11093 "\040\156\141\155\145\075\042\162\165\154\145\163\137\150\151\156"
11094 "\164\042\076\124\162\165\145\074\057\160\162\157\160\145\162\164"
11095 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
11096 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11097 "\040\156\141\155\145\075\042\163\145\141\162\143\150\137\143\157"
11098 "\154\165\155\156\042\076\061\074\057\160\162\157\160\145\162\164"
11099 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
11100 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11101 "\040\156\141\155\145\075\042\145\156\141\142\154\145\137\147\162"
11102 "\151\144\137\154\151\156\145\163\042\076\150\157\162\151\172\157"
11103 "\156\164\141\154\074\057\160\162\157\160\145\162\164\171\076\012"
11104 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11105 "\040\040\040\040\074\163\151\147\156\141\154\040\156\141\155\145"
11106 "\075\042\162\157\167\055\141\143\164\151\166\141\164\145\144\042"
11107 "\040\150\141\156\144\154\145\162\075\042\162\145\155\157\164\145"
11108 "\137\166\151\145\167\145\162\137\151\163\157\137\154\151\163\164"
11109 "\137\144\151\141\154\157\147\137\162\157\167\137\141\143\164\151"
11110 "\166\141\164\145\144\042\040\163\167\141\160\160\145\144\075\042"
11111 "\156\157\042\057\076\012\040\040\040\040\040\040\040\040\040\040"
11112 "\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144"
11113 "\040\151\156\164\145\162\156\141\154\055\143\150\151\154\144\075"
11114 "\042\163\145\154\145\143\164\151\157\156\042\076\012\040\040\040"
11115 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11116 "\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163\163"
11117 "\075\042\107\164\153\124\162\145\145\123\145\154\145\143\164\151"
11118 "\157\156\042\040\151\144\075\042\164\162\145\145\166\151\145\167"
11119 "\055\163\145\154\145\143\164\151\157\156\042\057\076\012\040\040"
11120 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11121 "\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040\040"
11122 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
11123 "\143\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040"
11124 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\157\142"
11125 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\124"
11126 "\162\145\145\126\151\145\167\103\157\154\165\155\156\042\040\151"
11127 "\144\075\042\163\145\154\145\143\164\145\144\137\143\157\154\165"
11128 "\155\156\042\076\012\040\040\040\040\040\040\040\040\040\040\040"
11129 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
11130 "\157\160\145\162\164\171\040\156\141\155\145\075\042\163\151\172"
11131 "\151\156\147\042\076\141\165\164\157\163\151\172\145\074\057\160"
11132 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
11133 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11134 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
11135 "\042\164\151\164\154\145\042\040\164\162\141\156\163\154\141\164"
11136 "\141\142\154\145\075\042\171\145\163\042\076\123\145\154\145\143"
11137 "\164\145\144\074\057\160\162\157\160\145\162\164\171\076\012\040"
11138 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11139 "\040\040\040\040\040\040\040\074\143\150\151\154\144\076\012\040"
11140 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11141 "\040\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164"
11142 "\040\143\154\141\163\163\075\042\107\164\153\103\145\154\154\122"
11143 "\145\156\144\145\162\145\162\124\157\147\147\154\145\042\040\151"
11144 "\144\075\042\143\145\154\154\162\145\156\144\145\162\145\162\164"
11145 "\157\147\147\154\145\042\076\012\040\040\040\040\040\040\040\040"
11146 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11147 "\040\040\040\040\074\163\151\147\156\141\154\040\156\141\155\145"
11148 "\075\042\164\157\147\147\154\145\144\042\040\150\141\156\144\154"
11149 "\145\162\075\042\162\145\155\157\164\145\137\166\151\145\167\145"
11150 "\162\137\151\163\157\137\154\151\163\164\137\144\151\141\154\157"
11151 "\147\137\164\157\147\147\154\145\144\042\040\163\167\141\160\160"
11152 "\145\144\075\042\156\157\042\057\076\012\040\040\040\040\040\040"
11153 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11154 "\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040\040"
11155 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11156 "\040\040\040\040\040\040\040\040\074\141\164\164\162\151\142\165"
11157 "\164\145\163\076\012\040\040\040\040\040\040\040\040\040\040\040"
11158 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11159 "\040\074\141\164\164\162\151\142\165\164\145\040\156\141\155\145"
11160 "\075\042\141\143\164\151\166\145\042\076\060\074\057\141\164\164"
11161 "\162\151\142\165\164\145\076\012\040\040\040\040\040\040\040\040"
11162 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11163 "\040\040\074\057\141\164\164\162\151\142\165\164\145\163\076\012"
11164 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11165 "\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076"
11166 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11167 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
11168 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11169 "\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040"
11170 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11171 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
11172 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11173 "\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107"
11174 "\164\153\124\162\145\145\126\151\145\167\103\157\154\165\155\156"
11175 "\042\040\151\144\075\042\156\141\155\145\137\143\157\154\165\155"
11176 "\156\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11177 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
11178 "\160\145\162\164\171\040\156\141\155\145\075\042\164\151\164\154"
11179 "\145\042\040\164\162\141\156\163\154\141\164\141\142\154\145\075"
11180 "\042\171\145\163\042\076\116\141\155\145\074\057\160\162\157\160"
11181 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
11182 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
11183 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\145\170"
11184 "\160\141\156\144\042\076\124\162\165\145\074\057\160\162\157\160"
11185 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
11186 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\143"
11187 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
11188 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11189 "\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107"
11190 "\164\153\103\145\154\154\122\145\156\144\145\162\145\162\124\145"
11191 "\170\164\042\040\151\144\075\042\143\145\154\154\162\145\156\144"
11192 "\145\162\145\162\164\145\170\164\042\057\076\012\040\040\040\040"
11193 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11194 "\040\040\040\040\040\040\074\141\164\164\162\151\142\165\164\145"
11195 "\163\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
11196 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
11197 "\141\164\164\162\151\142\165\164\145\040\156\141\155\145\075\042"
11198 "\164\145\170\164\042\076\061\074\057\141\164\164\162\151\142\165"
11199 "\164\145\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11200 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11201 "\074\141\164\164\162\151\142\165\164\145\040\156\141\155\145\075"
11202 "\042\167\145\151\147\150\164\042\076\062\074\057\141\164\164\162"
11203 "\151\142\165\164\145\076\012\040\040\040\040\040\040\040\040\040"
11204 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11205 "\040\074\057\141\164\164\162\151\142\165\164\145\163\076\012\040"
11206 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11207 "\040\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012"
11208 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11209 "\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012"
11210 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11211 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
11212 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
11213 "\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040\040"
11214 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
11215 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11216 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
11217 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
11218 "\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143"
11219 "\164\076\012\040\040\040\040\040\040\040\040\040\040\074\160\141"
11220 "\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040"
11221 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11222 "\145\075\042\145\170\160\141\156\144\042\076\124\162\165\145\074"
11223 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
11224 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11225 "\040\156\141\155\145\075\042\146\151\154\154\042\076\124\162\165"
11226 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
11227 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
11228 "\164\171\040\156\141\155\145\075\042\160\157\163\151\164\151\157"
11229 "\156\042\076\061\074\057\160\162\157\160\145\162\164\171\076\012"
11230 "\040\040\040\040\040\040\040\040\040\040\074\057\160\141\143\153"
11231 "\151\156\147\076\012\040\040\040\040\040\040\040\040\074\057\143"
11232 "\150\151\154\144\076\012\040\040\040\040\040\040\074\057\157\142"
11233 "\152\145\143\164\076\012\040\040\040\040\040\040\074\160\141\143"
11234 "\153\151\156\147\076\012\040\040\040\040\040\040\040\040\074\160"
11235 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\156\141"
11236 "\155\145\042\076\151\163\157\055\154\151\163\164\074\057\160\162"
11237 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
11238 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11239 "\160\157\163\151\164\151\157\156\042\076\061\074\057\160\162\157"
11240 "\160\145\162\164\171\076\012\040\040\040\040\040\040\074\057\160"
11241 "\141\143\153\151\156\147\076\012\040\040\040\040\074\057\143\150"
11242 "\151\154\144\076\012\040\040\074\057\157\142\152\145\143\164\076"
11243 "\012\074\057\151\156\164\145\162\146\141\143\145\076\012\000\000"
11244 "\050\165\165\141\171\051\166\151\162\164\055\166\151\145\167\145"
11245 "\162\055\166\155\055\143\157\156\156\145\143\164\151\157\156\056"
11246 "\165\151\000\000\000\000\000\000\055\024\000\000\000\000\000\000"
11247 "\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061"
11248 "\056\060\042\040\145\156\143\157\144\151\156\147\075\042\125\124"
11249 "\106\055\070\042\077\076\012\074\041\055\055\040\107\145\156\145"
11250 "\162\141\164\145\144\040\167\151\164\150\040\147\154\141\144\145"
11251 "\040\063\056\061\066\056\061\040\055\055\076\012\074\151\156\164"
11252 "\145\162\146\141\143\145\076\012\040\040\074\157\142\152\145\143"
11253 "\164\040\143\154\141\163\163\075\042\107\164\153\104\151\141\154"
11254 "\157\147\042\040\151\144\075\042\166\155\055\143\157\156\156\145"
11255 "\143\164\151\157\156\055\144\151\141\154\157\147\042\076\012\040"
11256 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11257 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141"
11258 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
11259 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11260 "\145\075\042\142\157\162\144\145\162\137\167\151\144\164\150\042"
11261 "\076\065\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
11262 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
11263 "\075\042\164\151\164\154\145\042\040\164\162\141\156\163\154\141"
11264 "\164\141\142\154\145\075\042\171\145\163\042\076\103\150\157\157"
11265 "\163\145\040\141\040\166\151\162\164\165\141\154\040\155\141\143"
11266 "\150\151\156\145\074\057\160\162\157\160\145\162\164\171\076\012"
11267 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
11268 "\155\145\075\042\155\157\144\141\154\042\076\124\162\165\145\074"
11269 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\074"
11270 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\167"
11271 "\151\156\144\157\167\137\160\157\163\151\164\151\157\156\042\076"
11272 "\143\145\156\164\145\162\055\157\156\055\160\141\162\145\156\164"
11273 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
11274 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11275 "\144\145\146\141\165\154\164\137\150\145\151\147\150\164\042\076"
11276 "\062\060\060\074\057\160\162\157\160\145\162\164\171\076\012\040"
11277 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11278 "\145\075\042\144\145\163\164\162\157\171\137\167\151\164\150\137"
11279 "\160\141\162\145\156\164\042\076\124\162\165\145\074\057\160\162"
11280 "\157\160\145\162\164\171\076\012\040\040\040\040\074\160\162\157"
11281 "\160\145\162\164\171\040\156\141\155\145\075\042\164\171\160\145"
11282 "\137\150\151\156\164\042\076\144\151\141\154\157\147\074\057\160"
11283 "\162\157\160\145\162\164\171\076\012\040\040\040\040\074\143\150"
11284 "\151\154\144\040\151\156\164\145\162\156\141\154\055\143\150\151"
11285 "\154\144\075\042\166\142\157\170\042\076\012\040\040\040\040\040"
11286 "\040\074\157\142\152\145\143\164\040\143\154\141\163\163\075\042"
11287 "\107\164\153\102\157\170\042\040\151\144\075\042\144\151\141\154"
11288 "\157\147\055\166\142\157\170\061\042\076\012\040\040\040\040\040"
11289 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11290 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\106\141"
11291 "\154\163\145\074\057\160\162\157\160\145\162\164\171\076\012\040"
11292 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11293 "\040\156\141\155\145\075\042\157\162\151\145\156\164\141\164\151"
11294 "\157\156\042\076\166\145\162\164\151\143\141\154\074\057\160\162"
11295 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
11296 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11297 "\163\160\141\143\151\156\147\042\076\066\074\057\160\162\157\160"
11298 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\074\143"
11299 "\150\151\154\144\040\151\156\164\145\162\156\141\154\055\143\150"
11300 "\151\154\144\075\042\141\143\164\151\157\156\137\141\162\145\141"
11301 "\042\076\012\040\040\040\040\040\040\040\040\040\040\074\157\142"
11302 "\152\145\143\164\040\143\154\141\163\163\075\042\107\164\153\102"
11303 "\165\164\164\157\156\102\157\170\042\040\151\144\075\042\144\151"
11304 "\141\154\157\147\055\141\143\164\151\157\156\137\141\162\145\141"
11305 "\061\042\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11306 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11307 "\143\141\156\137\146\157\143\165\163\042\076\106\141\154\163\145"
11308 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
11309 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
11310 "\171\040\156\141\155\145\075\042\154\141\171\157\165\164\137\163"
11311 "\164\171\154\145\042\076\145\156\144\074\057\160\162\157\160\145"
11312 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
11313 "\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040\040"
11314 "\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
11315 "\154\141\163\163\075\042\107\164\153\102\165\164\164\157\156\042"
11316 "\040\151\144\075\042\142\165\164\164\157\156\055\143\141\156\143"
11317 "\145\154\042\076\012\040\040\040\040\040\040\040\040\040\040\040"
11318 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11319 "\040\156\141\155\145\075\042\154\141\142\145\154\042\040\164\162"
11320 "\141\156\163\154\141\164\141\142\154\145\075\042\171\145\163\042"
11321 "\076\137\103\141\156\143\145\154\074\057\160\162\157\160\145\162"
11322 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11323 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
11324 "\155\145\075\042\166\151\163\151\142\154\145\042\076\124\162\165"
11325 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
11326 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
11327 "\157\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156"
11328 "\137\146\157\143\165\163\042\076\124\162\165\145\074\057\160\162"
11329 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
11330 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
11331 "\171\040\156\141\155\145\075\042\162\145\143\145\151\166\145\163"
11332 "\137\144\145\146\141\165\154\164\042\076\124\162\165\145\074\057"
11333 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
11334 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
11335 "\162\164\171\040\156\141\155\145\075\042\165\163\145\137\165\156"
11336 "\144\145\162\154\151\156\145\042\076\124\162\165\145\074\057\160"
11337 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
11338 "\040\040\040\040\040\040\040\074\057\157\142\152\145\143\164\076"
11339 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
11340 "\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040"
11341 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
11342 "\164\171\040\156\141\155\145\075\042\145\170\160\141\156\144\042"
11343 "\076\106\141\154\163\145\074\057\160\162\157\160\145\162\164\171"
11344 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11345 "\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145"
11346 "\075\042\146\151\154\154\042\076\124\162\165\145\074\057\160\162"
11347 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
11348 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
11349 "\171\040\156\141\155\145\075\042\160\157\163\151\164\151\157\156"
11350 "\042\076\060\074\057\160\162\157\160\145\162\164\171\076\012\040"
11351 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\057\160"
11352 "\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040"
11353 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
11354 "\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144\076"
11355 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
11356 "\157\142\152\145\143\164\040\143\154\141\163\163\075\042\107\164"
11357 "\153\102\165\164\164\157\156\042\040\151\144\075\042\142\165\164"
11358 "\164\157\156\055\143\157\156\156\145\143\164\042\076\012\040\040"
11359 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
11360 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\154\141"
11361 "\142\145\154\042\040\164\162\141\156\163\154\141\164\141\142\154"
11362 "\145\075\042\171\145\163\042\076\103\137\157\156\156\145\143\164"
11363 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
11364 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
11365 "\160\145\162\164\171\040\156\141\155\145\075\042\166\151\163\151"
11366 "\142\154\145\042\076\124\162\165\145\074\057\160\162\157\160\145"
11367 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
11368 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
11369 "\141\155\145\075\042\143\141\156\137\146\157\143\165\163\042\076"
11370 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
11371 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11372 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11373 "\143\141\156\137\144\145\146\141\165\154\164\042\076\124\162\165"
11374 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
11375 "\040\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162"
11376 "\157\160\145\162\164\171\040\156\141\155\145\075\042\150\141\163"
11377 "\137\144\145\146\141\165\154\164\042\076\124\162\165\145\074\057"
11378 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
11379 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
11380 "\162\164\171\040\156\141\155\145\075\042\162\145\143\145\151\166"
11381 "\145\163\137\144\145\146\141\165\154\164\042\076\124\162\165\145"
11382 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
11383 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
11384 "\160\145\162\164\171\040\156\141\155\145\075\042\165\163\145\137"
11385 "\165\156\144\145\162\154\151\156\145\042\076\124\162\165\145\074"
11386 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
11387 "\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143"
11388 "\164\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040"
11389 "\040\074\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
11390 "\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160"
11391 "\145\162\164\171\040\156\141\155\145\075\042\145\170\160\141\156"
11392 "\144\042\076\106\141\154\163\145\074\057\160\162\157\160\145\162"
11393 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11394 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
11395 "\155\145\075\042\146\151\154\154\042\076\124\162\165\145\074\057"
11396 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
11397 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
11398 "\162\164\171\040\156\141\155\145\075\042\160\157\163\151\164\151"
11399 "\157\156\042\076\061\074\057\160\162\157\160\145\162\164\171\076"
11400 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\074"
11401 "\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040\040"
11402 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
11403 "\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143"
11404 "\164\076\012\040\040\040\040\040\040\040\040\040\040\074\160\141"
11405 "\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040"
11406 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11407 "\145\075\042\145\170\160\141\156\144\042\076\106\141\154\163\145"
11408 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
11409 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
11410 "\171\040\156\141\155\145\075\042\146\151\154\154\042\076\124\162"
11411 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
11412 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
11413 "\162\164\171\040\156\141\155\145\075\042\160\141\143\153\137\164"
11414 "\171\160\145\042\076\145\156\144\074\057\160\162\157\160\145\162"
11415 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11416 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11417 "\160\157\163\151\164\151\157\156\042\076\060\074\057\160\162\157"
11418 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
11419 "\040\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040"
11420 "\040\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040"
11421 "\040\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040"
11422 "\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143"
11423 "\154\141\163\163\075\042\107\164\153\124\162\145\145\126\151\145"
11424 "\167\042\040\151\144\075\042\164\162\145\145\166\151\145\167\042"
11425 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\160"
11426 "\162\157\160\145\162\164\171\040\156\141\155\145\075\042\166\151"
11427 "\163\151\142\154\145\042\076\124\162\165\145\074\057\160\162\157"
11428 "\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040"
11429 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11430 "\145\075\042\143\141\156\137\146\157\143\165\163\042\076\124\162"
11431 "\165\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040"
11432 "\040\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145"
11433 "\162\164\171\040\156\141\155\145\075\042\150\145\141\144\145\162"
11434 "\163\137\166\151\163\151\142\154\145\042\076\106\141\154\163\145"
11435 "\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040"
11436 "\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164"
11437 "\171\040\156\141\155\145\075\042\163\145\141\162\143\150\137\143"
11438 "\157\154\165\155\156\042\076\060\074\057\160\162\157\160\145\162"
11439 "\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040"
11440 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11441 "\145\156\141\142\154\145\137\147\162\151\144\137\154\151\156\145"
11442 "\163\042\076\150\157\162\151\172\157\156\164\141\154\074\057\160"
11443 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
11444 "\040\040\040\040\040\074\143\150\151\154\144\040\151\156\164\145"
11445 "\162\156\141\154\055\143\150\151\154\144\075\042\163\145\154\145"
11446 "\143\164\151\157\156\042\076\012\040\040\040\040\040\040\040\040"
11447 "\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154"
11448 "\141\163\163\075\042\107\164\153\124\162\145\145\123\145\154\145"
11449 "\143\164\151\157\156\042\040\151\144\075\042\164\162\145\145\166"
11450 "\151\145\167\055\163\145\154\145\143\164\151\157\156\042\057\076"
11451 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057\143"
11452 "\150\151\154\144\076\012\040\040\040\040\040\040\040\040\040\040"
11453 "\040\040\074\143\150\151\154\144\076\012\040\040\040\040\040\040"
11454 "\040\040\040\040\040\040\040\040\074\157\142\152\145\143\164\040"
11455 "\143\154\141\163\163\075\042\107\164\153\124\162\145\145\126\151"
11456 "\145\167\103\157\154\165\155\156\042\040\151\144\075\042\164\162"
11457 "\145\145\166\151\145\167\143\157\154\165\155\156\061\042\076\012"
11458 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11459 "\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042"
11460 "\164\151\164\154\145\042\040\164\162\141\156\163\154\141\164\141"
11461 "\142\154\145\075\042\171\145\163\042\076\116\141\155\145\074\057"
11462 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
11463 "\040\040\040\040\040\040\040\040\040\040\074\143\150\151\154\144"
11464 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11465 "\040\040\040\040\074\157\142\152\145\143\164\040\143\154\141\163"
11466 "\163\075\042\107\164\153\103\145\154\154\122\145\156\144\145\162"
11467 "\145\162\124\145\170\164\042\040\151\144\075\042\143\145\154\154"
11468 "\162\145\156\144\145\162\145\162\164\145\170\164\061\042\057\076"
11469 "\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11470 "\040\040\040\074\141\164\164\162\151\142\165\164\145\163\076\012"
11471 "\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11472 "\040\040\040\040\074\141\164\164\162\151\142\165\164\145\040\156"
11473 "\141\155\145\075\042\164\145\170\164\042\076\060\074\057\141\164"
11474 "\164\162\151\142\165\164\145\076\012\040\040\040\040\040\040\040"
11475 "\040\040\040\040\040\040\040\040\040\040\040\074\057\141\164\164"
11476 "\162\151\142\165\164\145\163\076\012\040\040\040\040\040\040\040"
11477 "\040\040\040\040\040\040\040\040\040\074\057\143\150\151\154\144"
11478 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\040\040"
11479 "\074\057\157\142\152\145\143\164\076\012\040\040\040\040\040\040"
11480 "\040\040\040\040\040\040\074\057\143\150\151\154\144\076\012\040"
11481 "\040\040\040\040\040\040\040\040\040\074\057\157\142\152\145\143"
11482 "\164\076\012\040\040\040\040\040\040\040\040\040\040\074\160\141"
11483 "\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040\040"
11484 "\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141\155"
11485 "\145\075\042\145\170\160\141\156\144\042\076\124\162\165\145\074"
11486 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
11487 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11488 "\040\156\141\155\145\075\042\146\151\154\154\042\076\124\162\165"
11489 "\145\074\057\160\162\157\160\145\162\164\171\076\012\040\040\040"
11490 "\040\040\040\040\040\040\040\040\040\074\160\162\157\160\145\162"
11491 "\164\171\040\156\141\155\145\075\042\160\141\143\153\137\164\171"
11492 "\160\145\042\076\145\156\144\074\057\160\162\157\160\145\162\164"
11493 "\171\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
11494 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\160"
11495 "\157\163\151\164\151\157\156\042\076\061\074\057\160\162\157\160"
11496 "\145\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040"
11497 "\074\057\160\141\143\153\151\156\147\076\012\040\040\040\040\040"
11498 "\040\040\040\074\057\143\150\151\154\144\076\012\040\040\040\040"
11499 "\040\040\040\040\074\143\150\151\154\144\076\012\040\040\040\040"
11500 "\040\040\040\040\040\040\074\157\142\152\145\143\164\040\143\154"
11501 "\141\163\163\075\042\107\164\153\114\141\142\145\154\042\040\151"
11502 "\144\075\042\154\141\142\145\154\042\076\012\040\040\040\040\040"
11503 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11504 "\040\156\141\155\145\075\042\166\151\163\151\142\154\145\042\076"
11505 "\124\162\165\145\074\057\160\162\157\160\145\162\164\171\076\012"
11506 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
11507 "\160\145\162\164\171\040\156\141\155\145\075\042\143\141\156\137"
11508 "\146\157\143\165\163\042\076\106\141\154\163\145\074\057\160\162"
11509 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
11510 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
11511 "\155\145\075\042\170\141\154\151\147\156\042\076\060\074\057\160"
11512 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
11513 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
11514 "\141\155\145\075\042\171\141\154\151\147\156\042\076\060\074\057"
11515 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
11516 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
11517 "\156\141\155\145\075\042\170\160\141\144\042\076\064\074\057\160"
11518 "\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040"
11519 "\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156"
11520 "\141\155\145\075\042\154\141\142\145\154\042\040\164\162\141\156"
11521 "\163\154\141\164\141\142\154\145\075\042\171\145\163\042\076\101"
11522 "\166\141\151\154\141\142\154\145\040\166\151\162\164\165\141\154"
11523 "\040\155\141\143\150\151\156\145\163\074\057\160\162\157\160\145"
11524 "\162\164\171\076\012\040\040\040\040\040\040\040\040\040\040\040"
11525 "\040\074\160\162\157\160\145\162\164\171\040\156\141\155\145\075"
11526 "\042\145\154\154\151\160\163\151\172\145\042\076\145\156\144\074"
11527 "\057\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040"
11528 "\040\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171"
11529 "\040\156\141\155\145\075\042\167\151\144\164\150\137\143\150\141"
11530 "\162\163\042\076\062\066\074\057\160\162\157\160\145\162\164\171"
11531 "\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074\141"
11532 "\164\164\162\151\142\165\164\145\163\076\012\040\040\040\040\040"
11533 "\040\040\040\040\040\040\040\040\040\074\141\164\164\162\151\142"
11534 "\165\164\145\040\156\141\155\145\075\042\167\145\151\147\150\164"
11535 "\042\040\166\141\154\165\145\075\042\142\157\154\144\042\057\076"
11536 "\012\040\040\040\040\040\040\040\040\040\040\040\040\074\057\141"
11537 "\164\164\162\151\142\165\164\145\163\076\012\040\040\040\040\040"
11538 "\040\040\040\040\040\074\057\157\142\152\145\143\164\076\012\040"
11539 "\040\040\040\040\040\040\040\040\040\074\160\141\143\153\151\156"
11540 "\147\076\012\040\040\040\040\040\040\040\040\040\040\040\040\074"
11541 "\160\162\157\160\145\162\164\171\040\156\141\155\145\075\042\145"
11542 "\170\160\141\156\144\042\076\106\141\154\163\145\074\057\160\162"
11543 "\157\160\145\162\164\171\076\012\040\040\040\040\040\040\040\040"
11544 "\040\040\040\040\074\160\162\157\160\145\162\164\171\040\156\141"
11545 "\155\145\075\042\146\151\154\154\042\076\124\162\165\145\074\057"
11546 "\160\162\157\160\145\162\164\171\076\012\040\040\040\040\040\040"
11547 "\040\040\040\040\040\040\074\160\162\157\160\145\162\164\171\040"
11548 "\156\141\155\145\075\042\160\141\143\153\137\164\171\160\145\042"
11549 "\076\145\156\144\074\057\160\162\157\160\145\162\164\171\076\012"
11550 "\040\040\040\040\040\040\040\040\040\040\040\040\074\160\162\157"
11551 "\160\145\162\164\171\040\156\141\155\145\075\042\160\157\163\151"
11552 "\164\151\157\156\042\076\062\074\057\160\162\157\160\145\162\164"
11553 "\171\076\012\040\040\040\040\040\040\040\040\040\040\074\057\160"
11554 "\141\143\153\151\156\147\076\012\040\040\040\040\040\040\040\040"
11555 "\074\057\143\150\151\154\144\076\012\040\040\040\040\040\040\074"
11556 "\057\157\142\152\145\143\164\076\012\040\040\040\040\074\057\143"
11557 "\150\151\154\144\076\012\040\040\040\040\074\141\143\164\151\157"
11558 "\156\055\167\151\144\147\145\164\163\076\012\040\040\040\040\040"
11559 "\040\074\141\143\164\151\157\156\055\167\151\144\147\145\164\040"
11560 "\162\145\163\160\157\156\163\145\075\042\055\066\042\076\142\165"
11561 "\164\164\157\156\055\143\141\156\143\145\154\074\057\141\143\164"
11562 "\151\157\156\055\167\151\144\147\145\164\076\012\040\040\040\040"
11563 "\040\040\074\141\143\164\151\157\156\055\167\151\144\147\145\164"
11564 "\040\162\145\163\160\157\156\163\145\075\042\055\063\042\076\142"
11565 "\165\164\164\157\156\055\143\157\156\156\145\143\164\074\057\141"
11566 "\143\164\151\157\156\055\167\151\144\147\145\164\076\012\040\040"
11567 "\040\040\074\057\141\143\164\151\157\156\055\167\151\144\147\145"
11568 "\164\163\076\012\040\040\074\057\157\142\152\145\143\164\076\012"
11569 "\074\057\151\156\164\145\162\146\141\143\145\076\012\000\000\050"
11570 "\165\165\141\171\051\061\066\170\061\066\057\000\007\000\000\000"
11571 "\063\062\170\063\062\057\000\000\000\000\000\000\166\151\162\164"
11572 "\055\166\151\145\167\145\162\055\165\163\142\056\160\156\147\000"
11573 "\047\004\000\000\000\000\000\000\211\120\116\107\015\012\032\012"
11574 "\000\000\000\015\111\110\104\122\000\000\000\030\000\000\000\030"
11575 "\010\006\000\000\000\340\167\075\370\000\000\000\006\142\113\107"
11576 "\104\000\377\000\377\000\377\240\275\247\223\000\000\003\334\111"
11577 "\104\101\124\110\211\225\226\115\150\134\125\024\307\177\367\336"
11578 "\067\261\266\046\041\065\066\241\140\132\133\013\051\342\246\245"
11579 "\124\022\223\022\024\121\241\013\077\300\205\226\132\135\351\316"
11580 "\235\340\322\030\053\202\233\056\334\051\115\021\101\011\272\110"
11581 "\203\210\037\365\243\151\055\161\241\241\265\115\062\332\244\311"
11582 "\044\115\062\235\227\164\222\316\274\373\345\342\315\274\164\222"
11583 "\231\100\017\034\170\357\317\371\374\237\173\317\173\142\164\164"
11584 "\264\105\326\371\063\170\337\205\140\013\200\367\036\041\004\367"
11585 "\042\025\076\236\002\360\213\323\362\170\340\125\364\105\123\103"
11586 "\113\117\103\175\243\004\101\331\106\010\201\367\145\307\030\073"
11587 "\073\074\201\000\236\357\170\264\024\064\266\023\042\266\053\143"
11588 "\340\267\054\347\227\236\136\310\056\174\031\104\221\356\256\177"
11589 "\240\121\256\256\256\044\106\325\144\064\275\310\311\323\277\001"
11590 "\320\264\115\361\370\336\346\115\073\252\337\326\240\062\163\323"
11591 "\117\112\153\135\012\074\326\132\234\163\125\165\041\134\241\267"
11592 "\377\002\306\171\214\363\364\366\137\140\041\134\251\151\357\234"
11593 "\003\300\132\227\222\306\030\274\007\153\155\125\055\104\232\336"
11594 "\376\113\204\171\215\224\012\051\025\141\076\306\012\221\256\351"
11595 "\347\075\030\143\010\264\066\000\111\326\365\362\331\320\025\306"
11596 "\246\227\220\112\126\340\143\323\113\174\076\164\205\301\213\223"
11597 "\025\370\267\357\077\227\074\153\155\010\234\265\304\024\125\117"
11598 "\360\316\053\207\171\357\104\017\000\235\157\235\001\340\374\247"
11599 "\307\000\130\135\135\345\354\245\351\012\373\265\070\036\147\055"
11600 "\201\261\061\105\316\331\252\011\162\271\133\344\162\267\000\220"
11601 "\112\001\060\063\023\007\015\363\121\202\225\245\034\307\173\060"
11602 "\326\020\150\255\053\062\133\347\031\070\177\203\341\253\213\000"
11603 "\164\264\067\363\122\347\303\050\051\020\122\045\266\341\212\246"
11604 "\357\253\313\011\266\261\003\320\132\023\130\143\161\316\046\231"
11605 "\007\206\147\030\034\231\113\214\006\107\346\100\010\136\356\330"
11606 "\231\124\233\313\027\370\150\140\234\271\060\242\255\265\221\117"
11607 "\336\356\246\271\341\176\000\246\246\256\047\235\130\123\242\310"
11608 "\071\227\144\276\070\266\214\134\127\325\037\343\041\057\034\156"
11609 "\115\360\217\277\111\307\301\133\032\071\371\346\023\254\206\363"
11610 "\374\227\255\244\330\071\027\123\144\264\301\071\277\066\003\051"
11611 "\021\262\362\304\070\024\316\331\004\237\015\043\332\132\032\350"
11612 "\073\161\210\302\355\171\254\335\070\077\347\074\106\033\244\061"
11613 "\046\156\307\306\135\074\163\260\015\251\124\205\336\127\227\042"
11614 "\227\327\311\373\256\326\106\076\174\343\020\053\341\115\242\110"
11615 "\047\276\167\253\163\166\355\036\304\140\134\305\321\203\017\241"
11616 "\224\342\273\077\247\361\336\123\027\050\026\227\013\234\372\176"
11617 "\056\031\350\007\307\017\260\234\235\305\030\263\241\362\273\207"
11618 "\255\265\041\260\326\140\113\163\000\310\056\316\163\364\300\016"
11619 "\136\353\331\015\010\362\167\042\372\276\276\302\345\251\060\031"
11620 "\162\270\060\263\151\360\070\101\034\067\060\306\140\214\255\340"
11621 "\061\223\311\220\311\144\112\043\221\274\373\342\076\116\015\115"
11622 "\062\062\221\005\240\130\054\156\032\034\300\230\230\042\251\265"
11623 "\046\236\103\365\245\145\214\341\306\344\165\132\233\122\010\245"
11624 "\020\112\361\343\325\073\045\236\153\253\061\046\276\007\306\230"
11625 "\322\202\252\276\052\000\176\032\327\374\376\357\155\144\351\024"
11626 "\235\233\320\130\007\075\373\122\233\120\124\032\162\114\221\251"
11627 "\271\052\000\376\272\051\020\353\126\302\337\363\202\043\173\153"
11628 "\373\224\343\006\345\126\066\353\040\025\244\130\167\065\010\124"
11629 "\200\265\272\246\117\231\172\031\047\210\222\165\121\115\273\332"
11630 "\267\043\112\027\260\254\135\373\267\157\352\243\165\024\167\140"
11631 "\265\321\305\142\061\345\234\257\371\311\074\262\107\042\344\016"
11632 "\176\375\047\336\252\335\373\037\244\173\267\047\063\135\275\153"
11633 "\041\004\305\142\204\325\056\012\274\347\334\170\172\254\347\221"
11634 "\135\173\002\051\045\122\312\122\242\265\037\200\245\334\042\317"
11635 "\266\357\344\325\316\307\000\310\146\263\314\316\146\330\272\065"
11636 "\136\160\245\017\075\102\210\344\024\215\247\257\031\357\355\317"
11637 "\101\261\140\216\245\323\351\323\143\143\327\236\002\202\232\244"
11638 "\336\233\030\245\324\017\336\312\327\377\007\127\262\010\211\163"
11639 "\324\112\074\000\000\000\000\111\105\116\104\256\102\140\202\000"
11640 "\000\050\165\165\141\171\051" };
11641 #endif /* !_MSC_VER */
1115311642
11154 static GStaticResource static_resource = { virt_viewer_resource_data.data, sizeof (virt_viewer_resource_data.data), NULL, NULL, NULL };
11643 static GStaticResource static_resource = { virt_viewer_resource_data.data, sizeof (virt_viewer_resource_data.data) - 1 /* nul terminator */, NULL, NULL, NULL };
1115511644 extern GResource *virt_viewer_get_resource (void);
1115611645 GResource *virt_viewer_get_resource (void)
1115711646 {
1118611675
1118711676 #elif defined (_MSC_VER) && (_MSC_VER >= 1500)
1118811677 /* Visual studio 2008 and later has _Pragma */
11678
11679 #include <stdlib.h>
1118911680
1119011681 #define G_HAS_CONSTRUCTORS 1
1119111682
3333 #include "virt-viewer-util.h"
3434 #include "virt-viewer-session-spice.h"
3535 #include "virt-viewer-display-spice.h"
36 #include "virt-viewer-display-vte.h"
3637 #include "virt-viewer-auth.h"
3738
38 G_DEFINE_TYPE (VirtViewerSessionSpice, virt_viewer_session_spice, VIRT_VIEWER_TYPE_SESSION)
39 #if SPICE_GTK_CHECK_VERSION(0,36,0)
40 #define WITH_QMP_PORT 1
41 #endif
3942
4043 struct _VirtViewerSessionSpicePrivate {
4144 GtkWindow *main_window;
4952 guint pass_try;
5053 gboolean did_auto_conf;
5154 VirtViewerFileTransferDialog *file_transfer_dialog;
52
55 GError *disconnect_error;
56 #ifdef WITH_QMP_PORT
57 SpiceQmpPort *qmp;
58 #endif
5359 };
5460
55 #define VIRT_VIEWER_SESSION_SPICE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_SESSION_SPICE, VirtViewerSessionSpicePrivate))
61 G_DEFINE_TYPE_WITH_PRIVATE (VirtViewerSessionSpice, virt_viewer_session_spice, VIRT_VIEWER_TYPE_SESSION)
5662
5763 enum {
5864 PROP_0,
7177 static void virt_viewer_session_spice_channel_new(SpiceSession *s,
7278 SpiceChannel *channel,
7379 VirtViewerSession *session);
74 static void virt_viewer_session_spice_channel_destroy(SpiceSession *s,
75 SpiceChannel *channel,
76 VirtViewerSession *session);
80 static void virt_viewer_session_spice_channel_destroyed(SpiceSession *s,
81 SpiceChannel *channel,
82 VirtViewerSession *session);
83 static void virt_viewer_session_spice_session_disconnected(SpiceSession *s,
84 VirtViewerSessionSpice *session);
7785 static void virt_viewer_session_spice_smartcard_insert(VirtViewerSession *session);
7886 static void virt_viewer_session_spice_smartcard_remove(VirtViewerSession *session);
7987 static gboolean virt_viewer_session_spice_fullscreen_auto_conf(VirtViewerSessionSpice *self);
8088 static void virt_viewer_session_spice_apply_monitor_geometry(VirtViewerSession *self, GHashTable *monitors);
89 static void virt_viewer_session_spice_vm_action(VirtViewerSession *self, gint action);
8190
8291 static void virt_viewer_session_spice_clear_displays(VirtViewerSessionSpice *self)
8392 {
151160 gtk_widget_destroy(GTK_WIDGET(spice->priv->file_transfer_dialog));
152161 spice->priv->file_transfer_dialog = NULL;
153162 }
163 g_clear_error(&spice->priv->disconnect_error);
154164
155165 G_OBJECT_CLASS(virt_viewer_session_spice_parent_class)->dispose(obj);
156166 }
257267 dclass->apply_monitor_geometry = virt_viewer_session_spice_apply_monitor_geometry;
258268 dclass->can_share_folder = virt_viewer_session_spice_can_share_folder;
259269 dclass->can_retry_auth = virt_viewer_session_spice_can_retry_auth;
260
261 g_type_class_add_private(klass, sizeof(VirtViewerSessionSpicePrivate));
270 dclass->vm_action = virt_viewer_session_spice_vm_action;
262271
263272 g_object_class_install_property(oclass,
264273 PROP_SPICE_SESSION,
284293 static void
285294 virt_viewer_session_spice_init(VirtViewerSessionSpice *self G_GNUC_UNUSED)
286295 {
287 self->priv = VIRT_VIEWER_SESSION_SPICE_GET_PRIVATE(self);
296 self->priv = virt_viewer_session_spice_get_instance_private(self);
288297 }
289298
290299 static void
391400 spice_set_session_option(self->priv->session);
392401
393402 self->priv->gtk_session = spice_gtk_session_get(self->priv->session);
394 g_object_set(self->priv->gtk_session, "auto-clipboard", TRUE, NULL);
403
404 g_object_set(virt_viewer_session_get_app(VIRT_VIEWER_SESSION(self)),
405 "supports-share-clipboard", TRUE,
406 NULL);
407
408 g_object_bind_property(virt_viewer_session_get_app(VIRT_VIEWER_SESSION(self)), "config-share-clipboard",
409 self->priv->gtk_session, "auto-clipboard",
410 G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE);
395411
396412 virt_viewer_signal_connect_object(self->priv->session, "channel-new",
397413 G_CALLBACK(virt_viewer_session_spice_channel_new), self, 0);
398414 virt_viewer_signal_connect_object(self->priv->session, "channel-destroy",
399 G_CALLBACK(virt_viewer_session_spice_channel_destroy), self, 0);
415 G_CALLBACK(virt_viewer_session_spice_channel_destroyed), self, 0);
416 virt_viewer_signal_connect_object(self->priv->session, "disconnected",
417 G_CALLBACK(virt_viewer_session_spice_session_disconnected), self, 0);
400418
401419 usb_manager = spice_usb_device_manager_get(self->priv->session, NULL);
402420 if (usb_manager) {
454472
455473 g_object_add_weak_pointer(G_OBJECT(self), (gpointer*)&self);
456474
475 #ifdef WITH_QMP_PORT
476 g_clear_object(&self->priv->qmp);
477 #endif
457478 virt_viewer_session_spice_clear_displays(self);
458479
459480 if (self->priv->session) {
499520 g_return_if_fail(VIRT_VIEWER_IS_FILE(file));
500521 g_return_if_fail(SPICE_IS_SESSION(session));
501522
502 if (virt_viewer_file_is_set(file, "host")) {
503 gchar *val = virt_viewer_file_get_host(file);
504 g_object_set(G_OBJECT(session), "host", val, NULL);
523 if (virt_viewer_file_is_set(file, "unix-path")) {
524 gchar *val = virt_viewer_file_get_unix_path(file);
525 g_object_set(G_OBJECT(session), "unix-path", val, NULL);
505526 g_free(val);
506 }
507
508 if (virt_viewer_file_is_set(file, "port")) {
509 gchar *port = g_strdup_printf("%d", virt_viewer_file_get_port(file));
510 g_object_set(G_OBJECT(session), "port", port, NULL);
511 g_free(port);
512 }
513 if (virt_viewer_file_is_set(file, "tls-port")) {
514 gchar *tls_port = g_strdup_printf("%d", virt_viewer_file_get_tls_port(file));
515 g_object_set(G_OBJECT(session), "tls-port", tls_port, NULL);
516 g_free(tls_port);
527 } else {
528 if (virt_viewer_file_is_set(file, "host")) {
529 gchar *val = virt_viewer_file_get_host(file);
530 g_object_set(G_OBJECT(session), "host", val, NULL);
531 g_free(val);
532 }
533
534 if (virt_viewer_file_is_set(file, "port")) {
535 gchar *port = g_strdup_printf("%d", virt_viewer_file_get_port(file));
536 g_object_set(G_OBJECT(session), "port", port, NULL);
537 g_free(port);
538 }
539
540 if (virt_viewer_file_is_set(file, "tls-port")) {
541 gchar *tls_port = g_strdup_printf("%d", virt_viewer_file_get_tls_port(file));
542 g_object_set(G_OBJECT(session), "tls-port", tls_port, NULL);
543 g_free(tls_port);
544 }
517545 }
518546
519547 if (virt_viewer_file_is_set(file, "username")) {
763791 spice_session_connect(self->priv->session);
764792 }
765793 } else {
766 virt_viewer_session_spice_channel_destroy(NULL, channel, session);
794 spice_session_disconnect(self->priv->session);
767795 }
768796 break;
769797 }
770798 case SPICE_CHANNEL_ERROR_IO:
771799 case SPICE_CHANNEL_ERROR_LINK:
772800 case SPICE_CHANNEL_ERROR_TLS:
773 virt_viewer_session_spice_channel_destroy(NULL, channel, session);
801 spice_session_disconnect(self->priv->session);
774802 break;
775803 default:
776 g_warning("unhandled spice main channel event: %d", event);
804 g_warning("unhandled spice main channel event: %u", event);
777805 break;
778806 }
779807
950978 }
951979
952980 static void
981 spice_port_write_finished(GObject *source_object,
982 GAsyncResult *res,
983 gpointer dup)
984 {
985 SpicePortChannel *port = SPICE_PORT_CHANNEL(source_object);
986 GError *err = NULL;
987
988 spice_port_channel_write_finish(port, res, &err);
989 if (err) {
990 g_warning("Spice port write failed: %s", err->message);
991 g_error_free(err);
992 }
993 g_free(dup);
994 }
995
996 static void
997 spice_vte_commit(SpicePortChannel *port, const char *text,
998 guint size, gpointer user_data G_GNUC_UNUSED)
999 {
1000 void *dup = g_memdup(text, size);
1001
1002 /* note: spice-gtk queues write */
1003 spice_port_channel_write_async(port, dup, size,
1004 NULL, spice_port_write_finished, dup);
1005 }
1006
1007 static void
1008 spice_port_data(VirtViewerDisplayVte *vte, gpointer data, int size,
1009 SpicePortChannel *port G_GNUC_UNUSED)
1010 {
1011 virt_viewer_display_vte_feed(vte, data, size);
1012 }
1013
1014 static const char *
1015 port_name_to_vte_name(const char *name)
1016 {
1017 if (g_str_equal(name, "org.qemu.console.serial.0"))
1018 return _("Serial");
1019 else if (g_str_equal(name, "org.qemu.monitor.hmp.0"))
1020 return _("QEMU human monitor");
1021 else if (g_str_equal(name, "org.qemu.console.debug.0"))
1022 return _("QEMU debug console");
1023
1024 return NULL;
1025 }
1026
1027 static void
1028 virt_viewer_session_spice_vm_action(VirtViewerSession *sess G_GNUC_UNUSED,
1029 gint action G_GNUC_UNUSED)
1030 {
1031 #ifdef WITH_QMP_PORT
1032 VirtViewerSessionSpice *self = VIRT_VIEWER_SESSION_SPICE(sess);
1033
1034 switch (action) {
1035 case VIRT_VIEWER_SESSION_VM_ACTION_QUIT:
1036 action = SPICE_QMP_PORT_VM_ACTION_QUIT;
1037 break;
1038 case VIRT_VIEWER_SESSION_VM_ACTION_RESET:
1039 action = SPICE_QMP_PORT_VM_ACTION_RESET;
1040 break;
1041 case VIRT_VIEWER_SESSION_VM_ACTION_POWER_DOWN:
1042 action = SPICE_QMP_PORT_VM_ACTION_POWER_DOWN;
1043 break;
1044 case VIRT_VIEWER_SESSION_VM_ACTION_PAUSE:
1045 action = SPICE_QMP_PORT_VM_ACTION_PAUSE;
1046 break;
1047 case VIRT_VIEWER_SESSION_VM_ACTION_CONTINUE:
1048 action = SPICE_QMP_PORT_VM_ACTION_CONTINUE;
1049 break;
1050 default:
1051 g_return_if_reached();
1052 }
1053
1054 spice_qmp_port_vm_action_async(self->priv->qmp, action, NULL, NULL, NULL);
1055 #endif
1056 }
1057
1058 #ifdef WITH_QMP_PORT
1059 static void
1060 set_vm_running(VirtViewerSessionSpice *self, gboolean running)
1061 {
1062 g_object_set(virt_viewer_session_get_app(VIRT_VIEWER_SESSION(self)),
1063 "vm-running", running, NULL);
1064 }
1065
1066 static void
1067 query_status_cb(GObject *source_object G_GNUC_UNUSED,
1068 GAsyncResult *res, gpointer user_data)
1069 {
1070 VirtViewerSessionSpice *self = VIRT_VIEWER_SESSION_SPICE(user_data);
1071 SpiceQmpStatus *status;
1072 gboolean running = TRUE;
1073 GError *error = NULL;
1074
1075 status = spice_qmp_port_query_status_finish(self->priv->qmp, res, &error);
1076 if (!status) {
1077 g_warning("failed to query VM status: %s", error->message);
1078 g_error_free(error);
1079 return;
1080 }
1081
1082 if (g_str_equal(status->status, "paused")) {
1083 running = FALSE;
1084 }
1085
1086 set_vm_running(self, running);
1087
1088 spice_qmp_status_unref(status);
1089 }
1090
1091 static void qmp_ready_cb(VirtViewerSessionSpice *self,
1092 GParamSpec *pspec G_GNUC_UNUSED,
1093 GObject *object G_GNUC_UNUSED)
1094 {
1095 spice_qmp_port_query_status_async(self->priv->qmp, NULL, query_status_cb, self);
1096 }
1097
1098 static void qmp_event_cb(VirtViewerSessionSpice *self, const gchar *event,
1099 void *data G_GNUC_UNUSED, GObject *object G_GNUC_UNUSED)
1100 {
1101 g_debug("QMP event %s", event);
1102
1103 if (g_str_equal(event, "STOP")) {
1104 set_vm_running(self, FALSE);
1105 } else if (g_str_equal(event, "RESUME")) {
1106 set_vm_running(self, TRUE);
1107 }
1108 }
1109 #endif /* WITH_QMP_PORT */
1110
1111 static void
1112 spice_port_opened(SpiceChannel *channel, GParamSpec *pspec G_GNUC_UNUSED,
1113 VirtViewerSessionSpice *self)
1114 {
1115 SpicePortChannel *port = SPICE_PORT_CHANNEL(channel);
1116 int id;
1117 gchar *name = NULL;
1118 gboolean opened = FALSE;
1119 const char *vte_name;
1120 GtkWidget *vte;
1121
1122 g_object_get(G_OBJECT(port),
1123 "channel-id", &id,
1124 "port-name", &name,
1125 "port-opened", &opened,
1126 NULL);
1127
1128 g_return_if_fail(name != NULL);
1129 g_debug("port#%d %s: %s", id, name, opened ? "opened" : "closed");
1130 vte_name = port_name_to_vte_name(name);
1131
1132 #ifdef WITH_QMP_PORT
1133 if (g_str_equal(name, "org.qemu.monitor.qmp.0")) {
1134 if (opened) {
1135 g_return_if_fail(!self->priv->qmp);
1136
1137 g_object_set(virt_viewer_session_get_app(VIRT_VIEWER_SESSION(self)),
1138 "vm-ui", TRUE, NULL);
1139
1140 self->priv->qmp = spice_qmp_port_get(port);
1141 virt_viewer_signal_connect_object(self->priv->qmp, "notify::ready",
1142 G_CALLBACK(qmp_ready_cb), self, G_CONNECT_SWAPPED);
1143 virt_viewer_signal_connect_object(self->priv->qmp, "event",
1144 G_CALLBACK(qmp_event_cb), self, G_CONNECT_SWAPPED);
1145 } else {
1146 g_clear_object(&self->priv->qmp);
1147 }
1148 g_free(name);
1149 return;
1150 }
1151 #endif
1152
1153 g_free(name);
1154 vte = g_object_get_data(G_OBJECT(port), "virt-viewer-vte");
1155 if (vte) {
1156 if (opened)
1157 return;
1158
1159 g_object_set_data(G_OBJECT(port), "virt-viewer-vte", NULL);
1160 virt_viewer_session_remove_display(VIRT_VIEWER_SESSION(self), VIRT_VIEWER_DISPLAY(vte));
1161 g_object_unref(vte);
1162
1163 } else if (opened) {
1164 if (!vte_name)
1165 return;
1166
1167 vte = virt_viewer_display_vte_new(VIRT_VIEWER_SESSION(self), vte_name);
1168 g_object_set_data(G_OBJECT(port), "virt-viewer-vte", g_object_ref_sink(vte));
1169 virt_viewer_session_add_display(VIRT_VIEWER_SESSION(self), VIRT_VIEWER_DISPLAY(vte));
1170 virt_viewer_signal_connect_object(vte, "commit",
1171 G_CALLBACK(spice_vte_commit), port, G_CONNECT_SWAPPED);
1172 virt_viewer_signal_connect_object(port, "port-data",
1173 G_CALLBACK(spice_port_data), vte, G_CONNECT_SWAPPED);
1174 }
1175 }
1176
1177 static void
9531178 virt_viewer_session_spice_channel_new(SpiceSession *s,
9541179 SpiceChannel *channel,
9551180 VirtViewerSession *session)
9561181 {
9571182 VirtViewerSessionSpice *self = VIRT_VIEWER_SESSION_SPICE(session);
958 int id;
1183 int id, type;
9591184
9601185 g_return_if_fail(self != NULL);
9611186
9621187 virt_viewer_signal_connect_object(channel, "open-fd",
9631188 G_CALLBACK(virt_viewer_session_spice_channel_open_fd_request), self, 0);
9641189
965 g_object_get(channel, "channel-id", &id, NULL);
1190 g_object_get(channel,
1191 "channel-id", &id,
1192 "channel-type", &type,
1193 NULL);
9661194
9671195 g_debug("New spice channel %p %s %d", channel, g_type_name(G_OBJECT_TYPE(channel)), id);
9681196
10091237 self->priv->usbredir_channel_count++;
10101238 if (spice_usb_device_manager_get(self->priv->session, NULL))
10111239 virt_viewer_session_set_has_usbredir(session, TRUE);
1240 }
1241
1242 /* the port channel object is also sub-classed for webdav... */
1243 if (SPICE_IS_PORT_CHANNEL(channel) && type == SPICE_CHANNEL_PORT) {
1244 virt_viewer_signal_connect_object(channel, "notify::port-opened",
1245 G_CALLBACK(spice_port_opened), self, 0);
1246 spice_channel_connect(channel);
10121247 }
10131248
10141249 self->priv->channel_count++;
10611296 displays = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, g_free);
10621297
10631298 for (l = initial_displays; l != NULL; l = l->next) {
1064 GdkRectangle* rect = g_new0(GdkRectangle, 1);;
10651299 gint j = virt_viewer_app_get_initial_monitor_for_display(app, GPOINTER_TO_INT(l->data));
10661300 if (j == -1)
10671301 continue;
10681302
1303 GdkRectangle* rect = g_new0(GdkRectangle, 1);;
10691304 gdk_screen_get_monitor_geometry(screen, j, rect);
10701305 g_hash_table_insert(displays, l->data, rect);
10711306 }
10911326 }
10921327
10931328 static void
1094 virt_viewer_session_spice_channel_destroy(G_GNUC_UNUSED SpiceSession *s,
1095 SpiceChannel *channel,
1096 VirtViewerSession *session)
1329 virt_viewer_session_spice_session_disconnected(G_GNUC_UNUSED SpiceSession *s,
1330 VirtViewerSessionSpice *self)
1331 {
1332 GError *error = self->priv->disconnect_error;
1333 g_signal_emit_by_name(self, "session-disconnected", error ? error->message : NULL);
1334 }
1335
1336 /* called when the spice session indicates that a session has been destroyed */
1337 static void
1338 virt_viewer_session_spice_channel_destroyed(G_GNUC_UNUSED SpiceSession *s,
1339 SpiceChannel *channel,
1340 VirtViewerSession *session)
10971341 {
10981342 VirtViewerSessionSpice *self = VIRT_VIEWER_SESSION_SPICE(session);
10991343 int id;
11151359 if (SPICE_IS_DISPLAY_CHANNEL(channel)) {
11161360 g_debug("zap display channel (#%d)", id);
11171361 g_object_set_data(G_OBJECT(channel), "virt-viewer-displays", NULL);
1362 }
1363
1364 if (SPICE_IS_PORT_CHANNEL(channel)) {
1365 VirtViewerDisplayVte *vte = g_object_get_data(G_OBJECT(channel), "virt-viewer-vte");
1366 g_debug("zap port channel (#%d)", id);
1367 if (vte) {
1368 g_object_set_data(G_OBJECT(channel), "virt-viewer-vte", NULL);
1369 virt_viewer_session_remove_display(VIRT_VIEWER_SESSION(self), VIRT_VIEWER_DISPLAY(vte));
1370 g_object_unref(vte);
1371 }
1372
11181373 }
11191374
11201375 if (SPICE_IS_PLAYBACK_CHANNEL(channel) && self->priv->audio) {
11281383 if (self->priv->usbredir_channel_count == 0)
11291384 virt_viewer_session_set_has_usbredir(session, FALSE);
11301385 }
1131
1132 self->priv->channel_count--;
1133 if (self->priv->channel_count == 0)
1134 g_signal_emit_by_name(self, "session-disconnected", error ? error->message : NULL);
1386 if (error) {
1387 g_warning("Channel error: %s", error->message);
1388 if (self->priv->disconnect_error == NULL) {
1389 self->priv->disconnect_error = g_error_copy(error);
1390 }
1391 }
11351392 }
11361393
11371394 VirtViewerSession *
3333 #include <glib/gi18n.h>
3434 #include <libxml/uri.h>
3535
36 G_DEFINE_TYPE(VirtViewerSessionVnc, virt_viewer_session_vnc, VIRT_VIEWER_TYPE_SESSION)
37
3836 struct _VirtViewerSessionVncPrivate {
3937 GtkWindow *main_window;
4038 /* XXX we should really just have a VncConnection */
4240 gboolean auth_dialog_cancelled;
4341 };
4442
45 #define VIRT_VIEWER_SESSION_VNC_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_SESSION_VNC, VirtViewerSessionVncPrivate))
43 G_DEFINE_TYPE_WITH_PRIVATE(VirtViewerSessionVnc, virt_viewer_session_vnc, VIRT_VIEWER_TYPE_SESSION)
4644
4745 static void virt_viewer_session_vnc_close(VirtViewerSession* session);
4846 static gboolean virt_viewer_session_vnc_open_fd(VirtViewerSession* session, int fd);
8785 dclass->open_uri = virt_viewer_session_vnc_open_uri;
8886 dclass->channel_open_fd = virt_viewer_session_vnc_channel_open_fd;
8987 dclass->mime_type = virt_viewer_session_vnc_mime_type;
90
91 g_type_class_add_private(klass, sizeof(VirtViewerSessionVncPrivate));
9288 }
9389
9490 static void
9591 virt_viewer_session_vnc_init(VirtViewerSessionVnc *self G_GNUC_UNUSED)
9692 {
97 self->priv = VIRT_VIEWER_SESSION_VNC_GET_PRIVATE(self);
93 self->priv = virt_viewer_session_vnc_get_instance_private(self);
9894 }
9995
10096 static void
158154 unsigned int authType,
159155 VirtViewerSession *session)
160156 {
161 gchar *msg = g_strdup_printf(_("Unsupported authentication type %d"),
157 gchar *msg = g_strdup_printf(_("Unsupported authentication type %u"),
162158 authType);
163159 g_signal_emit_by_name(session, "session-auth-unsupported", msg);
164160 g_free(msg);
272268 VirtViewerSessionVnc *self = VIRT_VIEWER_SESSION_VNC(session);
273269 char *username = NULL, *password = NULL;
274270 gboolean wantPassword = FALSE, wantUsername = FALSE;
271 VirtViewerFile *file = NULL;
275272 int i;
276273
277 g_debug("Got VNC credential request for %d credential(s)", credList->n_values);
274 g_debug("Got VNC credential request for %u credential(s)", credList->n_values);
278275
279276 for (i = 0 ; i < credList->n_values ; i++) {
280277 GValue *cred = g_value_array_get_nth(credList, i);
294291 }
295292 }
296293
297 VirtViewerFile *file = virt_viewer_session_get_file(VIRT_VIEWER_SESSION(self));
294 file = virt_viewer_session_get_file(VIRT_VIEWER_SESSION(self));
298295 if (file != NULL) {
299296 if (wantUsername) {
300297 if (virt_viewer_file_is_set(file, "username")) {
2828
2929 #include "virt-viewer-session.h"
3030 #include "virt-viewer-util.h"
31
32 #define VIRT_VIEWER_SESSION_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE((o), VIRT_VIEWER_TYPE_SESSION, VirtViewerSessionPrivate))
33
31 #include "virt-viewer-display-vte.h"
3432
3533 struct _VirtViewerSessionPrivate
3634 {
4543 gboolean share_folder_ro;
4644 };
4745
48 G_DEFINE_ABSTRACT_TYPE(VirtViewerSession, virt_viewer_session, G_TYPE_OBJECT)
46 G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE(VirtViewerSession, virt_viewer_session, G_TYPE_OBJECT)
4947
5048 enum {
5149 PROP_0,
258256 g_signal_new("session-connected",
259257 G_OBJECT_CLASS_TYPE(object_class),
260258 G_SIGNAL_RUN_FIRST,
261 G_STRUCT_OFFSET(VirtViewerSessionClass, session_connected),
259 0,
262260 NULL, NULL,
263261 g_cclosure_marshal_VOID__VOID,
264262 G_TYPE_NONE,
267265 g_signal_new("session-initialized",
268266 G_OBJECT_CLASS_TYPE(object_class),
269267 G_SIGNAL_RUN_FIRST,
270 G_STRUCT_OFFSET(VirtViewerSessionClass, session_initialized),
268 0,
271269 NULL, NULL,
272270 g_cclosure_marshal_VOID__VOID,
273271 G_TYPE_NONE,
276274 g_signal_new("session-disconnected",
277275 G_OBJECT_CLASS_TYPE(object_class),
278276 G_SIGNAL_RUN_FIRST,
279 G_STRUCT_OFFSET(VirtViewerSessionClass, session_disconnected),
277 0,
280278 NULL, NULL,
281279 g_cclosure_marshal_VOID__STRING,
282280 G_TYPE_NONE,
286284 g_signal_new("session-channel-open",
287285 G_OBJECT_CLASS_TYPE(object_class),
288286 G_SIGNAL_RUN_FIRST,
289 G_STRUCT_OFFSET(VirtViewerSessionClass, session_channel_open),
287 0,
290288 NULL, NULL,
291289 g_cclosure_marshal_VOID__OBJECT,
292290 G_TYPE_NONE,
296294 g_signal_new("session-auth-refused",
297295 G_OBJECT_CLASS_TYPE(object_class),
298296 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
299 G_STRUCT_OFFSET(VirtViewerSessionClass, session_auth_refused),
297 0,
300298 NULL,
301299 NULL,
302300 g_cclosure_marshal_VOID__STRING,
307305 g_signal_new("session-auth-unsupported",
308306 G_OBJECT_CLASS_TYPE(object_class),
309307 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
310 G_STRUCT_OFFSET(VirtViewerSessionClass, session_auth_unsupported),
308 0,
311309 NULL,
312310 NULL,
313311 g_cclosure_marshal_VOID__STRING,
318316 g_signal_new("session-usb-failed",
319317 G_OBJECT_CLASS_TYPE(object_class),
320318 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
321 G_STRUCT_OFFSET(VirtViewerSessionClass, session_usb_failed),
319 0,
322320 NULL,
323321 NULL,
324322 g_cclosure_marshal_VOID__STRING,
329327 g_signal_new("session-display-added",
330328 G_OBJECT_CLASS_TYPE(object_class),
331329 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
332 G_STRUCT_OFFSET(VirtViewerSessionClass, session_display_added),
330 0,
333331 NULL,
334332 NULL,
335333 g_cclosure_marshal_VOID__OBJECT,
340338 g_signal_new("session-display-removed",
341339 G_OBJECT_CLASS_TYPE(object_class),
342340 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
343 G_STRUCT_OFFSET(VirtViewerSessionClass, session_display_removed),
341 0,
344342 NULL,
345343 NULL,
346344 g_cclosure_marshal_VOID__OBJECT,
351349 g_signal_new("session-display-updated",
352350 G_OBJECT_CLASS_TYPE(object_class),
353351 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
354 G_STRUCT_OFFSET(VirtViewerSessionClass, session_display_updated),
352 0,
355353 NULL,
356354 NULL,
357355 g_cclosure_marshal_VOID__VOID,
361359 g_signal_new("session-cut-text",
362360 G_OBJECT_CLASS_TYPE(object_class),
363361 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
364 G_STRUCT_OFFSET(VirtViewerSessionClass, session_cut_text),
362 0,
365363 NULL,
366364 NULL,
367365 g_cclosure_marshal_VOID__STRING,
372370 g_signal_new("session-bell",
373371 G_OBJECT_CLASS_TYPE(object_class),
374372 G_SIGNAL_RUN_LAST | G_SIGNAL_NO_HOOKS,
375 G_STRUCT_OFFSET(VirtViewerSessionClass, session_bell),
373 0,
376374 NULL,
377375 NULL,
378376 g_cclosure_marshal_VOID__VOID,
382380 g_signal_new("session-cancelled",
383381 G_OBJECT_CLASS_TYPE(object_class),
384382 G_SIGNAL_RUN_FIRST,
385 G_STRUCT_OFFSET(VirtViewerSessionClass, session_cancelled),
383 0,
386384 NULL, NULL,
387385 g_cclosure_marshal_VOID__VOID,
388386 G_TYPE_NONE,
389387 0);
390
391 g_type_class_add_private(class, sizeof(VirtViewerSessionPrivate));
392388 }
393389
394390 static void
395391 virt_viewer_session_init(VirtViewerSession *session)
396392 {
397 session->priv = VIRT_VIEWER_SESSION_GET_PRIVATE(session);
393 session->priv = virt_viewer_session_get_instance_private(session);
398394 }
399395
400396 static void
405401 gboolean all_fullscreen = TRUE;
406402 /* GHashTable<gint, GdkRectangle*> */
407403 GHashTable *monitors;
404 gint n_sized_monitors = 0;
408405 GList *l;
409406
410407 klass = VIRT_VIEWER_SESSION_GET_CLASS(self);
415412
416413 for (l = self->priv->displays; l; l = l->next) {
417414 VirtViewerDisplay *d = VIRT_VIEWER_DISPLAY(l->data);
415
416 if (VIRT_VIEWER_IS_DISPLAY_VTE(d))
417 continue;
418
418419 guint nth = 0;
419420 GdkRectangle *rect = g_new0(GdkRectangle, 1);
420421
421422 g_object_get(d, "nth-display", &nth, NULL);
422423 virt_viewer_display_get_preferred_monitor_geometry(d, rect);
424 if (rect->width > 0 && rect->height > 0)
425 n_sized_monitors++;
423426
424427 if (virt_viewer_display_get_enabled(d) &&
425428 !virt_viewer_display_get_fullscreen(d))
427430 g_hash_table_insert(monitors, GINT_TO_POINTER(nth), rect);
428431 }
429432
433 if (n_sized_monitors == 0) {
434 goto cleanup;
435 }
436
430437 if (!all_fullscreen)
431438 virt_viewer_align_monitors_linear(monitors);
432439
433440 virt_viewer_shift_monitors_to_origin(monitors);
434441
435442 klass->apply_monitor_geometry(self, monitors);
443
444 cleanup:
436445 g_hash_table_unref(monitors);
437446 }
438447
676685 return klass->can_retry_auth ? klass->can_retry_auth(self) : FALSE;
677686 }
678687
688 void virt_viewer_session_vm_action(VirtViewerSession *self, gint action)
689 {
690 VirtViewerSessionClass *klass;
691
692 g_return_if_fail(VIRT_VIEWER_IS_SESSION(self));
693
694 klass = VIRT_VIEWER_SESSION_GET_CLASS(self);
695
696 if (klass->vm_action)
697 klass->vm_action(self, action);
698 }
679699 /*
680700 * Local variables:
681701 * c-indent-level: 4
5252
5353 typedef struct _VirtViewerSessionChannel VirtViewerSessionChannel;
5454
55 enum {
56 VIRT_VIEWER_SESSION_VM_ACTION_QUIT,
57 VIRT_VIEWER_SESSION_VM_ACTION_RESET,
58 VIRT_VIEWER_SESSION_VM_ACTION_POWER_DOWN,
59 VIRT_VIEWER_SESSION_VM_ACTION_PAUSE,
60 VIRT_VIEWER_SESSION_VM_ACTION_CONTINUE,
61 };
62
5563
5664 /* perhaps this become an interface, and be pushed in gtkvnc and spice? */
5765 struct _VirtViewerSession {
7482 void (* smartcard_remove) (VirtViewerSession* session);
7583 const gchar* (* mime_type) (VirtViewerSession* session);
7684
77 /* signals */
78 void (*session_connected)(VirtViewerSession *session);
79 void (*session_initialized)(VirtViewerSession *session);
80 void (*session_disconnected)(VirtViewerSession *session, const gchar *msg);
81 void (*session_auth_refused)(VirtViewerSession *session, const gchar *msg);
82 void (*session_auth_unsupported)(VirtViewerSession *session, const gchar *msg);
83 void (*session_usb_failed)(VirtViewerSession *session, const gchar *msg);
84
85 void (*session_channel_open)(VirtViewerSession *session, VirtViewerSessionChannel *channel);
86
87 void (*session_display_added)(VirtViewerSession *session,
88 VirtViewerDisplay *display);
89 void (*session_display_removed)(VirtViewerSession *session,
90 VirtViewerDisplay *display);
91 void (*session_display_updated)(VirtViewerSession *session);
92
93 void (*session_cut_text)(VirtViewerSession *session, const gchar *str);
94 void (*session_bell)(VirtViewerSession *session);
95 void (*session_cancelled)(VirtViewerSession *session);
9685 /* monitors = GHashTable<int, GdkRectangle*> */
9786 void (*apply_monitor_geometry)(VirtViewerSession *session, GHashTable* monitors);
9887 gboolean (*can_share_folder)(VirtViewerSession *session);
9988 gboolean (*can_retry_auth)(VirtViewerSession *session);
89 void (*vm_action)(VirtViewerSession *session, gint action);
10090 };
10191
10292 GType virt_viewer_session_get_type(void);
134124 gboolean virt_viewer_session_can_share_folder(VirtViewerSession *self);
135125 gboolean virt_viewer_session_can_retry_auth(VirtViewerSession *self);
136126
127 void virt_viewer_session_vm_action(VirtViewerSession *self, gint action);
128
137129 G_END_DECLS
138130
139131 #endif /* _VIRT_VIEWER_SESSION_H */
2424
2525 #include "virt-viewer-timed-revealer.h"
2626
27 G_DEFINE_TYPE (VirtViewerTimedRevealer, virt_viewer_timed_revealer, GTK_TYPE_EVENT_BOX)
28
29 #define VIRT_VIEWER_TIMED_REVEALER_GET_PRIVATE(obj) \
30 (G_TYPE_INSTANCE_GET_PRIVATE ((obj), VIRT_VIEWER_TYPE_TIMED_REVEALER, VirtViewerTimedRevealerPrivate))
31
3227 struct _VirtViewerTimedRevealerPrivate
3328 {
3429 gboolean fullscreen;
3631
3732 GtkWidget *revealer;
3833 };
34
35 G_DEFINE_TYPE_WITH_PRIVATE (VirtViewerTimedRevealer, virt_viewer_timed_revealer, GTK_TYPE_EVENT_BOX)
3936
4037 static void
4138 virt_viewer_timed_revealer_unregister_timeout(VirtViewerTimedRevealer *self)
123120 static void
124121 virt_viewer_timed_revealer_init(VirtViewerTimedRevealer *self)
125122 {
126 self->priv = VIRT_VIEWER_TIMED_REVEALER_GET_PRIVATE(self);
123 self->priv = virt_viewer_timed_revealer_get_instance_private(self);
127124 }
128125
129126 static void
147144 virt_viewer_timed_revealer_class_init(VirtViewerTimedRevealerClass *klass)
148145 {
149146 GObjectClass *object_class = G_OBJECT_CLASS(klass);
150
151 g_type_class_add_private (klass, sizeof (VirtViewerTimedRevealerPrivate));
152147
153148 object_class->dispose = virt_viewer_timed_revealer_dispose;
154149 }
4141 #include "virt-viewer-app.h"
4242 #include "virt-viewer-util.h"
4343 #include "virt-viewer-timed-revealer.h"
44 #include "virt-viewer-display-vte.h"
4445
4546 #include "remote-viewer-iso-list-dialog.h"
4647
5051 void virt_viewer_window_menu_view_zoom_out(GtkWidget *menu, VirtViewerWindow *self);
5152 void virt_viewer_window_menu_view_zoom_in(GtkWidget *menu, VirtViewerWindow *self);
5253 void virt_viewer_window_menu_view_zoom_reset(GtkWidget *menu, VirtViewerWindow *self);
54 void virt_viewer_window_menu_machine_reset(GtkWidget *menu, VirtViewerWindow *self);
55 void virt_viewer_window_menu_machine_powerdown(GtkWidget *menu, VirtViewerWindow *self);
56 void virt_viewer_window_menu_machine_pause(GtkWidget *menu, VirtViewerWindow *self);
5357 gboolean virt_viewer_window_delete(GtkWidget *src, void *dummy, VirtViewerWindow *self);
5458 void virt_viewer_window_menu_file_quit(GtkWidget *src, VirtViewerWindow *self);
5559 void virt_viewer_window_guest_details_response(GtkDialog *dialog, gint response_id, gpointer user_data);
7579 static void virt_viewer_window_get_minimal_dimensions(VirtViewerWindow *self, guint *width, guint *height);
7680 static gint virt_viewer_window_get_minimal_zoom_level(VirtViewerWindow *self);
7781
78 G_DEFINE_TYPE (VirtViewerWindow, virt_viewer_window, G_TYPE_OBJECT)
79
80 #define GET_PRIVATE(o) \
81 (G_TYPE_INSTANCE_GET_PRIVATE ((o), VIRT_VIEWER_TYPE_WINDOW, VirtViewerWindowPrivate))
82
8382 enum {
8483 PROP_0,
8584 PROP_WINDOW,
116115 gboolean initial_zoom_set;
117116 };
118117
118 G_DEFINE_TYPE_WITH_PRIVATE (VirtViewerWindow, virt_viewer_window, G_TYPE_OBJECT)
119
119120 static void
120121 virt_viewer_window_get_property (GObject *object, guint property_id,
121122 GValue *value, GParamSpec *pspec)
218219 menu = GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-send"));
219220 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu),
220221 GTK_WIDGET(virt_viewer_window_get_keycombo_menu(self)));
221 gtk_widget_set_sensitive(menu, (self->priv->display != NULL));
222 }
223
224 static void
225 vm_ui_changed(GObject *gobject G_GNUC_UNUSED,
226 GParamSpec *pspec G_GNUC_UNUSED,
227 gpointer user_data)
228 {
229 VirtViewerWindow *self = user_data;
230 gboolean vm_ui;
231
232 g_object_get(G_OBJECT(self->priv->app), "vm-ui", &vm_ui, NULL);
233 gtk_widget_set_visible(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-machine")), vm_ui);
234 }
235
236 static void
237 vm_running_changed(GObject *gobject G_GNUC_UNUSED,
238 GParamSpec *pspec G_GNUC_UNUSED,
239 gpointer user_data)
240 {
241 VirtViewerWindow *self = user_data;
242 GtkCheckMenuItem *check = GTK_CHECK_MENU_ITEM(gtk_builder_get_object(self->priv->builder, "menu-vm-pause"));
243 gboolean running;
244
245 g_object_get(G_OBJECT(self->priv->app), "vm-running", &running, NULL);
246
247 gtk_check_menu_item_set_active(check, !running);
222248 }
223249
224250 static void
231257
232258 g_signal_connect(priv->app, "notify::enable-accel",
233259 G_CALLBACK(rebuild_combo_menu), object);
260 g_signal_connect(priv->app, "notify::vm-ui",
261 G_CALLBACK(vm_ui_changed), object);
262 g_signal_connect(priv->app, "notify::vm-running",
263 G_CALLBACK(vm_running_changed), object);
234264 rebuild_combo_menu(NULL, NULL, object);
235265 }
236266
238268 virt_viewer_window_class_init (VirtViewerWindowClass *klass)
239269 {
240270 GObjectClass *object_class = G_OBJECT_CLASS (klass);
241
242 g_type_class_add_private (klass, sizeof (VirtViewerWindowPrivate));
243271
244272 object_class->get_property = virt_viewer_window_get_property;
245273 object_class->set_property = virt_viewer_window_set_property;
301329 GtkWidget *vbox;
302330 GSList *accels;
303331
304 self->priv = GET_PRIVATE(self);
332 self->priv = virt_viewer_window_get_instance_private(self);
305333 priv = self->priv;
306334
307335 priv->fullscreen_monitor = -1;
311339 gtk_widget_show(GTK_WIDGET(priv->notebook));
312340
313341 priv->builder = virt_viewer_util_load_ui("virt-viewer.ui");
314
315 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-send")), FALSE);
316 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-view-zoom")), FALSE);
317 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-file-screenshot")), FALSE);
318 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-preferences")), FALSE);
319342
320343 gtk_builder_connect_signals(priv->builder, self);
321344
385408 }
386409
387410 G_MODULE_EXPORT void
411 virt_viewer_window_menu_machine_reset(GtkWidget *menu G_GNUC_UNUSED,
412 VirtViewerWindow *self)
413 {
414 virt_viewer_session_vm_action(virt_viewer_app_get_session(self->priv->app),
415 VIRT_VIEWER_SESSION_VM_ACTION_RESET);
416 }
417
418 G_MODULE_EXPORT void
419 virt_viewer_window_menu_machine_powerdown(GtkWidget *menu G_GNUC_UNUSED,
420 VirtViewerWindow *self)
421 {
422 virt_viewer_session_vm_action(virt_viewer_app_get_session(self->priv->app),
423 VIRT_VIEWER_SESSION_VM_ACTION_POWER_DOWN);
424 }
425
426 G_MODULE_EXPORT void
427 virt_viewer_window_menu_machine_pause(GtkWidget *menu G_GNUC_UNUSED,
428 VirtViewerWindow *self)
429 {
430 gint action;
431
432 if (gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(menu)))
433 action = VIRT_VIEWER_SESSION_VM_ACTION_PAUSE;
434 else
435 action = VIRT_VIEWER_SESSION_VM_ACTION_CONTINUE;
436
437 virt_viewer_session_vm_action(virt_viewer_app_get_session(self->priv->app), action);
438 }
439
440 G_MODULE_EXPORT void
388441 virt_viewer_window_menu_view_zoom_out(GtkWidget *menu G_GNUC_UNUSED,
389442 VirtViewerWindow *self)
390443 {
391 virt_viewer_window_set_zoom_level(self,
392 virt_viewer_window_get_real_zoom_level(self) - ZOOM_STEP);
444 if (VIRT_VIEWER_IS_DISPLAY_VTE(self->priv->display)) {
445 virt_viewer_display_vte_zoom_out(VIRT_VIEWER_DISPLAY_VTE(self->priv->display));
446 } else {
447 virt_viewer_window_set_zoom_level(self,
448 virt_viewer_window_get_real_zoom_level(self) - ZOOM_STEP);
449 }
393450 }
394451
395452 G_MODULE_EXPORT void
396453 virt_viewer_window_menu_view_zoom_in(GtkWidget *menu G_GNUC_UNUSED,
397454 VirtViewerWindow *self)
398455 {
399 virt_viewer_window_set_zoom_level(self,
400 virt_viewer_window_get_real_zoom_level(self) + ZOOM_STEP);
456 if (VIRT_VIEWER_IS_DISPLAY_VTE(self->priv->display)) {
457 virt_viewer_display_vte_zoom_in(VIRT_VIEWER_DISPLAY_VTE(self->priv->display));
458 } else {
459 virt_viewer_window_set_zoom_level(self,
460 virt_viewer_window_get_real_zoom_level(self) + ZOOM_STEP);
461 }
401462 }
402463
403464 G_MODULE_EXPORT void
404465 virt_viewer_window_menu_view_zoom_reset(GtkWidget *menu G_GNUC_UNUSED,
405466 VirtViewerWindow *self)
406467 {
407 virt_viewer_window_set_zoom_level(self, NORMAL_ZOOM_LEVEL);
468 if (VIRT_VIEWER_IS_DISPLAY_VTE(self->priv->display)) {
469 virt_viewer_display_vte_zoom_reset(VIRT_VIEWER_DISPLAY_VTE(self->priv->display));
470 } else {
471 virt_viewer_window_set_zoom_level(self, NORMAL_ZOOM_LEVEL);
472 }
408473 }
409474
410475 /* Kick GtkWindow to tell it to adjust to our new widget sizes */
529594 }
530595 virt_viewer_window_move_to_monitor(self);
531596
532 gtk_window_fullscreen(GTK_WINDOW(priv->window));
597 #if GTK_CHECK_VERSION(3, 18, 0)
598 if (monitor == -1) {
599 // just go fullscreen on the current monitor
600 gtk_window_fullscreen(GTK_WINDOW(priv->window));
601 } else {
602 G_GNUC_BEGIN_IGNORE_DEPRECATIONS
603 gtk_window_fullscreen_on_monitor(GTK_WINDOW(priv->window),
604 gdk_screen_get_default(), monitor);
605 G_GNUC_END_IGNORE_DEPRECATIONS
606 }
607 #else
608 gtk_window_fullscreen(GTK_WINDOW(priv->window));
609 #endif /* GTK_CHECK_VERSION */
533610 }
534611
535612 #define MAX_KEY_COMBO 4
556633 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F11, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F11"), NULL},
557634 { { GDK_KEY_Control_L, GDK_KEY_Alt_L, GDK_KEY_F12, GDK_KEY_VoidSymbol }, N_("Ctrl+Alt+F12"), NULL},
558635 { { GDK_KEY_VoidSymbol }, "" , NULL},
559 { { GDK_KEY_Print, GDK_KEY_VoidSymbol }, "_PrintScreen", NULL},
636 { { GDK_KEY_Print, GDK_KEY_VoidSymbol }, N_("_PrintScreen"), NULL},
560637 };
561638
562639 static guint
909986 }
910987 }
911988
912 static GHashTable *init_image_formats(void)
989 static GHashTable *init_image_formats(G_GNUC_UNUSED gpointer user_data)
913990 {
914991 GHashTable *format_map;
915992 GSList *formats = gdk_pixbuf_get_formats();
9721049
9731050 g_return_if_fail(priv->display != NULL);
9741051
975 dialog = gtk_file_chooser_dialog_new("Save screenshot",
1052 dialog = gtk_file_chooser_dialog_new(_("Save screenshot"),
9761053 NULL,
9771054 GTK_FILE_CHOOSER_ACTION_SAVE,
9781055 _("_Cancel"), GTK_RESPONSE_CANCEL,
9911068 GError *error = NULL;
9921069
9931070 filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER (dialog));
1071 if (g_strrstr(filename, ".") == NULL) {
1072 // no extension provided: add the .png default
1073 char *tmp_filename ;
1074 tmp_filename = g_strdup_printf("%s.png", filename) ;
1075 g_free(filename) ;
1076 filename = tmp_filename ;
1077 }
1078
9941079 if (!virt_viewer_window_save_screenshot(self, filename, &error)) {
9951080 virt_viewer_app_simple_message_dialog(self->priv->app,
9961081 error->message);
11301215 }
11311216 #endif
11321217
1133 void
1218 G_MODULE_EXPORT void
11341219 virt_viewer_window_menu_change_cd_activate(GtkWidget *menu G_GNUC_UNUSED,
11351220 VirtViewerWindow *self G_GNUC_UNUSED)
11361221 {
13441429 gtk_widget_set_sensitive(menu, sensitive);
13451430
13461431 menu = GTK_WIDGET(gtk_builder_get_object(priv->builder, "menu-file-screenshot"));
1347 gtk_widget_set_sensitive(menu, sensitive);
1432 gtk_widget_set_sensitive(menu, sensitive &&
1433 VIRT_VIEWER_DISPLAY_CAN_SCREENSHOT(self->priv->display));
13481434
13491435 menu = GTK_WIDGET(gtk_builder_get_object(priv->builder, "menu-view-zoom"));
13501436 gtk_widget_set_sensitive(menu, sensitive);
13511437
1352 menu = GTK_WIDGET(gtk_builder_get_object(priv->builder, "menu-send"));
1438 menu = GTK_WIDGET(gtk_builder_get_object(priv->builder, "menu-machine"));
13531439 gtk_widget_set_sensitive(menu, sensitive);
1440
1441 {
1442 gboolean can_send = sensitive &&
1443 VIRT_VIEWER_DISPLAY_CAN_SEND_KEYS(self->priv->display);
1444
1445 menu = GTK_WIDGET(gtk_builder_get_object(priv->builder, "menu-send"));
1446 gtk_widget_set_sensitive(menu, can_send);
1447
1448 gtk_widget_set_sensitive(self->priv->toolbar_send_key, can_send);
1449 }
13541450 }
13551451
13561452 static void
14311527 if (virt_viewer_display_get_enabled(display))
14321528 virt_viewer_window_desktop_resize(display, self);
14331529
1434 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-preferences")), TRUE);
1435 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-view-zoom")), TRUE);
1436 gtk_widget_set_sensitive(GTK_WIDGET(gtk_builder_get_object(self->priv->builder, "menu-send")), TRUE);
1437 gtk_widget_set_sensitive(self->priv->toolbar_send_key, TRUE);
1530 virt_viewer_window_set_menus_sensitive(self, TRUE);
14381531 }
14391532 }
14401533
15211614
15221615 virt_viewer_display_set_zoom_level(VIRT_VIEWER_DISPLAY(priv->display), priv->zoomlevel);
15231616
1524 virt_viewer_window_queue_resize(self);
1617 if (!VIRT_VIEWER_IS_DISPLAY_VTE(priv->display)) {
1618 virt_viewer_window_queue_resize(self);
1619 }
15251620 }
15261621
15271622 gint virt_viewer_window_get_zoom_level(VirtViewerWindow *self)
6767 guint reconnect_poll; /* source id */
6868 };
6969
70 G_DEFINE_TYPE (VirtViewer, virt_viewer, VIRT_VIEWER_TYPE_APP)
71 #define GET_PRIVATE(o) \
72 (G_TYPE_INSTANCE_GET_PRIVATE ((o), VIRT_VIEWER_TYPE, VirtViewerPrivate))
70 G_DEFINE_TYPE_WITH_PRIVATE (VirtViewer, virt_viewer, VIRT_VIEWER_TYPE_APP)
7371
7472 static gboolean virt_viewer_initial_connect(VirtViewerApp *self, GError **error);
7573 static gboolean virt_viewer_open_connection(VirtViewerApp *self, int *fd);
212210 VirtViewerAppClass *app_class = VIRT_VIEWER_APP_CLASS (klass);
213211 GApplicationClass *g_app_class = G_APPLICATION_CLASS(klass);
214212
215 g_type_class_add_private (klass, sizeof (VirtViewerPrivate));
216
217213 object_class->dispose = virt_viewer_dispose;
218214
219215 app_class->initial_connect = virt_viewer_initial_connect;
228224 static void
229225 virt_viewer_init(VirtViewer *self)
230226 {
231 self->priv = GET_PRIVATE(self);
227 self->priv = virt_viewer_get_instance_private(self);
232228 self->priv->domain_event = -1;
233229 }
234230
257253 {
258254 VirtViewerPrivate *priv = self->priv;
259255
260 g_debug("reconnect_poll: %d", priv->reconnect_poll);
256 g_debug("reconnect_poll: %u", priv->reconnect_poll);
261257
262258 if (priv->reconnect_poll != 0)
263259 return;
270266 {
271267 VirtViewerPrivate *priv = self->priv;
272268
273 g_debug("reconnect_poll: %d", priv->reconnect_poll);
269 g_debug("reconnect_poll: %u", priv->reconnect_poll);
274270
275271 if (priv->reconnect_poll == 0)
276272 return;
874870 VirtViewerPrivate *priv = self->priv;
875871 char uuid_string[VIR_UUID_STRING_BUFLEN];
876872 const char *guest_name;
873 char *title;
877874 GError *err = NULL;
878875
879876 g_debug("initial connect");
914911 g_object_set(app, "guest-name", guest_name, NULL);
915912 }
916913
914 title = virDomainGetMetadata(dom, VIR_DOMAIN_METADATA_TITLE, NULL, 0);
915 if (title != NULL) {
916 g_object_set(app, "title", title, NULL);
917 free(title);
918 }
919
917920 virt_viewer_app_show_status(app, _("Checking guest domain status"));
918921 if (virDomainGetInfo(dom, &info) < 0) {
919922 g_set_error_literal(&err, VIRT_VIEWER_ERROR, VIRT_VIEWER_ERROR_FAILED,
967970 int i;
968971 int ret = 0;
969972
970 g_debug("Got libvirt credential request for %d credential(s)", ncred);
973 g_debug("Got libvirt credential request for %u credential(s)", ncred);
971974
972975 for (i = 0 ; i < ncred ; i++) {
973976 switch (cred[i].type) {
10011004 }
10021005 }
10031006
1007 static const char * const cred_type_to_str[] = {
1008 [VIR_CRED_USERNAME] = "Identity to act as",
1009 [VIR_CRED_AUTHNAME] = "Identify to authorize as",
1010 [VIR_CRED_PASSPHRASE] = "Passphrase secret",
1011 };
1012
10041013 for (i = 0 ; i < ncred ; i++) {
1005 const char *cred_type_to_str[] = {
1006 [VIR_CRED_USERNAME] = "Identity to act as",
1007 [VIR_CRED_AUTHNAME] = "Identify to authorize as",
1008 [VIR_CRED_PASSPHRASE] = "Passphrase secret",
1009 };
10101014 switch (cred[i].type) {
10111015 case VIR_CRED_AUTHNAME:
10121016 case VIR_CRED_USERNAME:
66 BEGIN
77 BLOCK "040904E4"
88 BEGIN
9 VALUE "CompanyName", "virt-manager.org"
9 VALUE "CompanyName", "https://gitlab.com/virt-viewer/virt-viewer"
1010 VALUE "FileDescription", "VirtViewer desktop client"
11 VALUE "FileVersion", "7.0"
12 VALUE "InternalName", "virt-viewer 7.0"
11 VALUE "FileVersion", "9.0"
12 VALUE "InternalName", "virt-viewer 9.0"
1313 VALUE "LegalCopyright", "Copyright (C) 2007-2013 Red Hat, Inc."
1414 VALUE "OriginalFilename", "virt-viewer.exe"
1515 VALUE "ProductName", "VirtViewer"
16 VALUE "ProductVersion", "7.0"
16 VALUE "ProductVersion", "9.0"
1717 END
1818 END
1919
66 BEGIN
77 BLOCK "040904E4"
88 BEGIN
9 VALUE "CompanyName", "virt-manager.org"
9 VALUE "CompanyName", "https://gitlab.com/virt-viewer/virt-viewer"
1010 VALUE "FileDescription", "VirtViewer desktop client"
1111 VALUE "FileVersion", "@VERSION@"
1212 VALUE "InternalName", "@PACKAGE_STRING@"
0 # Makefile.in generated by automake 1.15.1 from Makefile.am.
0 # Makefile.in generated by automake 1.16.1 from Makefile.am.
11 # @configure_input@
22
3 # Copyright (C) 1994-2017 Free Software Foundation, Inc.
3 # Copyright (C) 1994-2018 Free Software Foundation, Inc.
44
55 # This Makefile.in is free software; the Free Software Foundation
66 # gives unlimited permission to copy and/or distribute it,
9393 @OS_WIN32_TRUE@am__append_1 = redirect-test
9494 subdir = tests
9595 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
96 am__aclocal_m4_deps = $(top_srcdir)/m4/intltool.m4 \
97 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
98 $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
99 $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
96 am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
97 $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
98 $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
99 $(top_srcdir)/m4/virt-bash-completion.m4 \
100 $(top_srcdir)/m4/virt-nls.m4 $(top_srcdir)/acinclude.m4 \
100101 $(top_srcdir)/configure.ac
101102 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
102103 $(ACLOCAL_M4)
172173 am__v_at_1 =
173174 DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
174175 depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
175 am__depfiles_maybe = depfiles
176 am__maybe_remake_depfiles = depfiles
177 am__depfiles_remade = ./$(DEPDIR)/redirect_test-redirect-test.Po \
178 ./$(DEPDIR)/test-hotkeys.Po \
179 ./$(DEPDIR)/test-monitor-alignment.Po \
180 ./$(DEPDIR)/test-monitor-mapping.Po \
181 ./$(DEPDIR)/test-version-compare.Po
176182 am__mv = mv -f
177183 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
178184 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
433439 $(top_srcdir)/build-aux/test-driver
434440 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
435441 ACLOCAL = @ACLOCAL@
436 ALL_LINGUAS = @ALL_LINGUAS@
437442 AMTAR = @AMTAR@
438443 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
439444 AR = @AR@
441446 AUTOHEADER = @AUTOHEADER@
442447 AUTOMAKE = @AUTOMAKE@
443448 AWK = @AWK@
449 BASH_COMPLETIONS_DIR = @BASH_COMPLETIONS_DIR@
450 BASH_COMPLETION_CFLAGS = @BASH_COMPLETION_CFLAGS@
451 BASH_COMPLETION_LIBS = @BASH_COMPLETION_LIBS@
452 BASH_COMPLETION_REQUIRED = @BASH_COMPLETION_REQUIRED@
444453 BUILDID = @BUILDID@
445 CATALOGS = @CATALOGS@
446 CATOBJEXT = @CATOBJEXT@
447454 CC = @CC@
448455 CCDEPMODE = @CCDEPMODE@
449456 CFLAGS = @CFLAGS@
450457 CPP = @CPP@
451458 CPPFLAGS = @CPPFLAGS@
452459 CYGPATH_W = @CYGPATH_W@
453 DATADIRNAME = @DATADIRNAME@
454460 DEFS = @DEFS@
455461 DEPDIR = @DEPDIR@
456462 DLLTOOL = @DLLTOOL@
468474 GLIB2_REQUIRED = @GLIB2_REQUIRED@
469475 GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
470476 GLIB_MKENUMS = @GLIB_MKENUMS@
471 GMOFILES = @GMOFILES@
472 GMSGFMT = @GMSGFMT@
473477 GOVIRT_REQUIRED = @GOVIRT_REQUIRED@
474478 GREP = @GREP@
475479 GTK_CFLAGS = @GTK_CFLAGS@
484488 INSTALL_PROGRAM = @INSTALL_PROGRAM@
485489 INSTALL_SCRIPT = @INSTALL_SCRIPT@
486490 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
487 INSTOBJEXT = @INSTOBJEXT@
488 INTLLIBS = @INTLLIBS@
489 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
490 INTLTOOL_MERGE = @INTLTOOL_MERGE@
491 INTLTOOL_PERL = @INTLTOOL_PERL@
492 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
493 INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
494 INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
495 INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
496 INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
497 INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
498491 LD = @LD@
499492 LDFLAGS = @LDFLAGS@
500493 LIBOBJS = @LIBOBJS@
514507 MAKEINFO = @MAKEINFO@
515508 MANIFEST_TOOL = @MANIFEST_TOOL@
516509 MKDIR_P = @MKDIR_P@
517 MKINSTALLDIRS = @MKINSTALLDIRS@
518510 MSGFMT = @MSGFMT@
519 MSGFMT_OPTS = @MSGFMT_OPTS@
520511 MSGMERGE = @MSGMERGE@
521512 NM = @NM@
522513 NMEDIT = @NMEDIT@
537528 PKG_CONFIG = @PKG_CONFIG@
538529 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
539530 PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
540 POFILES = @POFILES@
541 POSUB = @POSUB@
542 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
543 PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
544531 RANLIB = @RANLIB@
532 REST_REQUIRED = @REST_REQUIRED@
545533 SED = @SED@
546534 SET_MAKE = @SET_MAKE@
547535 SHELL = @SHELL@
553541 SPICE_PROTOCOL_REQUIRED = @SPICE_PROTOCOL_REQUIRED@
554542 STRIP = @STRIP@
555543 UPDATE_MIME_DATABASE = @UPDATE_MIME_DATABASE@
556 USE_NLS = @USE_NLS@
557544 VERSION = @VERSION@
545 VTE_CFLAGS = @VTE_CFLAGS@
546 VTE_LIBS = @VTE_LIBS@
558547 WARN_CFLAGS = @WARN_CFLAGS@
559548 WINDOWS_PRODUCTVERSION = @WINDOWS_PRODUCTVERSION@
560549 WINDRES = @WINDRES@
593582 includedir = @includedir@
594583 infodir = @infodir@
595584 install_sh = @install_sh@
596 intltool__v_merge_options_ = @intltool__v_merge_options_@
597 intltool__v_merge_options_0 = @intltool__v_merge_options_0@
598585 libdir = @libdir@
599586 libexecdir = @libexecdir@
600587 localedir = @localedir@
678665 *config.status*) \
679666 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
680667 *) \
681 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
682 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
668 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
669 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
683670 esac;
684671
685672 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
726713 distclean-compile:
727714 -rm -f *.tab.c
728715
729 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/redirect_test-redirect-test.Po@am__quote@
730 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-hotkeys.Po@am__quote@
731 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-monitor-alignment.Po@am__quote@
732 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-monitor-mapping.Po@am__quote@
733 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-version-compare.Po@am__quote@
716 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/redirect_test-redirect-test.Po@am__quote@ # am--include-marker
717 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-hotkeys.Po@am__quote@ # am--include-marker
718 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-monitor-alignment.Po@am__quote@ # am--include-marker
719 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-monitor-mapping.Po@am__quote@ # am--include-marker
720 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-version-compare.Po@am__quote@ # am--include-marker
721
722 $(am__depfiles_remade):
723 @$(MKDIR_P) $(@D)
724 @echo '# dummy' >$@-t && $(am__mv) $@-t $@
725
726 am--depfiles: $(am__depfiles_remade)
734727
735728 .c.o:
736729 @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
948941 fi; \
949942 $$success || exit 1
950943
951 check-TESTS:
944 check-TESTS: $(check_PROGRAMS)
952945 @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
953946 @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
954947 @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
10191012 @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
10201013 @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
10211014
1022 distdir: $(DISTFILES)
1015 distdir: $(BUILT_SOURCES)
1016 $(MAKE) $(AM_MAKEFLAGS) distdir-am
1017
1018 distdir-am: $(DISTFILES)
10231019 @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
10241020 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
10251021 list='$(DISTFILES)'; \
10941090 mostlyclean-am
10951091
10961092 distclean: distclean-am
1097 -rm -rf ./$(DEPDIR)
1093 -rm -f ./$(DEPDIR)/redirect_test-redirect-test.Po
1094 -rm -f ./$(DEPDIR)/test-hotkeys.Po
1095 -rm -f ./$(DEPDIR)/test-monitor-alignment.Po
1096 -rm -f ./$(DEPDIR)/test-monitor-mapping.Po
1097 -rm -f ./$(DEPDIR)/test-version-compare.Po
10981098 -rm -f Makefile
10991099 distclean-am: clean-am distclean-compile distclean-generic \
11001100 distclean-tags
11401140 installcheck-am:
11411141
11421142 maintainer-clean: maintainer-clean-am
1143 -rm -rf ./$(DEPDIR)
1143 -rm -f ./$(DEPDIR)/redirect_test-redirect-test.Po
1144 -rm -f ./$(DEPDIR)/test-hotkeys.Po
1145 -rm -f ./$(DEPDIR)/test-monitor-alignment.Po
1146 -rm -f ./$(DEPDIR)/test-monitor-mapping.Po
1147 -rm -f ./$(DEPDIR)/test-version-compare.Po
11441148 -rm -f Makefile
11451149 maintainer-clean-am: distclean-am maintainer-clean-generic
11461150
11611165
11621166 .MAKE: check-am install-am install-strip
11631167
1164 .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
1165 clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
1166 ctags ctags-am distclean distclean-compile distclean-generic \
1167 distclean-libtool distclean-tags distdir dvi dvi-am html \
1168 html-am info info-am install install-am install-data \
1169 install-data-am install-dvi install-dvi-am install-exec \
1170 install-exec-am install-html install-html-am install-info \
1171 install-info-am install-man install-pdf install-pdf-am \
1172 install-ps install-ps-am install-strip installcheck \
1173 installcheck-am installdirs maintainer-clean \
1168 .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
1169 check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
1170 cscopelist-am ctags ctags-am distclean distclean-compile \
1171 distclean-generic distclean-libtool distclean-tags distdir dvi \
1172 dvi-am html html-am info info-am install install-am \
1173 install-data install-data-am install-dvi install-dvi-am \
1174 install-exec install-exec-am install-html install-html-am \
1175 install-info install-info-am install-man install-pdf \
1176 install-pdf-am install-ps install-ps-am install-strip \
1177 installcheck installcheck-am installdirs maintainer-clean \
11741178 maintainer-clean-generic mostlyclean mostlyclean-compile \
11751179 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
11761180 recheck tags tags-am uninstall uninstall-am
1010 %endif
1111
1212 %define with_govirt 0
13 %define with_bash_completion 0
1314 %if 0%{?fedora} > 19 || 0%{?rhel} >= 7
1415 %define with_govirt 1
16 %define with_bash_completion 1
1517 %endif
1618
1719 Name: virt-viewer
18 Version: 7.0
19 Release: 1%{?dist}%{?extra_release}
20 Version: 9.0
21 Release: 1%{?dist}
2022 Summary: Virtual Machine Viewer
21 Group: Applications/System
2223 License: GPLv2+
23 URL: http://virt-manager.org/
24 URL: http://gitlab.com/virt-viewer/virt-viewer
2425 Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
25 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2626 Requires: openssh-clients
2727 Requires(post): %{_sbindir}/update-alternatives
2828 Requires(postun): %{_sbindir}/update-alternatives
2929 Requires(post): desktop-file-utils
3030 Requires(postun): desktop-file-utils
31
32 %if %{with_bash_completion}
33 # Our bash completion script uses virsh to list domains
34 Requires: libvirt-client
35 %endif
36
3137
3238 %if 0%{?enable_autotools}
3339 BuildRequires: autoconf
3642 BuildRequires: libtool
3743 %endif
3844
39 BuildRequires: pkgconfig(glib-2.0) >= 2.38
45 BuildRequires: gcc
46 BuildRequires: pkgconfig(glib-2.0) >= 2.40
4047 BuildRequires: pkgconfig(gtk+-3.0) >= 3.12
4148 BuildRequires: pkgconfig(libvirt) >= 0.10.0
4249 BuildRequires: pkgconfig(libvirt-glib-1.0) >= 0.1.8
4754 BuildRequires: pkgconfig(spice-protocol) >= 0.12.7
4855 %endif
4956 BuildRequires: /usr/bin/pod2man
50 BuildRequires: intltool
57 BuildRequires: gettext
5158 %if %{with_govirt}
52 BuildRequires: pkgconfig(govirt-1.0) >= 0.3.2
59 BuildRequires: pkgconfig(govirt-1.0) >= 0.3.3
60 %endif
61 %if %{with_bash_completion}
62 BuildRequires: pkgconfig(bash-completion) >= 2.0
5363 %endif
5464
5565 %if 0%{?fedora} >= 20
90100 %__make install DESTDIR=$RPM_BUILD_ROOT
91101 %find_lang %{name}
92102
93 %clean
94 rm -rf $RPM_BUILD_ROOT
95
96 %post
97 %{_bindir}/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
98 %{_bindir}/touch --no-create %{_datadir}/mime/packages &> /dev/null || :
99 %{_bindir}/update-desktop-database -q %{_datadir}/applications
100
101 %postun
102 if [ $1 -eq 0 ] ; then
103 %{_bindir}/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
104 %{_bindir}/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
105 %{_bindir}/update-mime-database %{_datadir}/mime &> /dev/null
106 fi
107 %{_bindir}/update-desktop-database -q %{_datadir}/applications
108
109 %posttrans
110 %{_bindir}/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
111 %{_bindir}/update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || :
112103
113104 %files -f %{name}.lang
114 %defattr(-,root,root,-)
115105 %doc README.md COPYING AUTHORS ChangeLog NEWS
116106 %{_bindir}/%{name}
117107 %{_bindir}/remote-viewer
122112 %{_datadir}/mime/packages/virt-viewer-mime.xml
123113 %{_mandir}/man1/virt-viewer.1*
124114 %{_mandir}/man1/remote-viewer.1*
115 %if %{with_bash_completion}
116 %{_datadir}/bash-completion/completions/virt-viewer
117 %endif
125118
126119 %changelog
1010 %endif
1111
1212 %define with_govirt 0
13 %define with_bash_completion 0
1314 %if 0%{?fedora} > 19 || 0%{?rhel} >= 7
1415 %define with_govirt 1
16 %define with_bash_completion 1
1517 %endif
1618
1719 Name: @PACKAGE@
1820 Version: @VERSION@
19 Release: 1%{?dist}%{?extra_release}
21 Release: 1%{?dist}
2022 Summary: Virtual Machine Viewer
21 Group: Applications/System
2223 License: GPLv2+
23 URL: http://virt-manager.org/
24 URL: http://gitlab.com/virt-viewer/virt-viewer
2425 Source0: http://virt-manager.org/download/sources/%{name}/%{name}-%{version}.tar.gz
25 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2626 Requires: openssh-clients
2727 Requires(post): %{_sbindir}/update-alternatives
2828 Requires(postun): %{_sbindir}/update-alternatives
2929 Requires(post): desktop-file-utils
3030 Requires(postun): desktop-file-utils
31
32 %if %{with_bash_completion}
33 # Our bash completion script uses virsh to list domains
34 Requires: libvirt-client
35 %endif
36
3137
3238 %if 0%{?enable_autotools}
3339 BuildRequires: autoconf
3642 BuildRequires: libtool
3743 %endif
3844
45 BuildRequires: gcc
3946 BuildRequires: pkgconfig(glib-2.0) >= @GLIB2_REQUIRED@
4047 BuildRequires: pkgconfig(gtk+-3.0) >= @GTK_REQUIRED@
4148 BuildRequires: pkgconfig(libvirt) >= @LIBVIRT_REQUIRED@
4754 BuildRequires: pkgconfig(spice-protocol) >= @SPICE_PROTOCOL_REQUIRED@
4855 %endif
4956 BuildRequires: /usr/bin/pod2man
50 BuildRequires: intltool
57 BuildRequires: gettext
5158 %if %{with_govirt}
5259 BuildRequires: pkgconfig(govirt-1.0) >= @GOVIRT_REQUIRED@
60 %endif
61 %if %{with_bash_completion}
62 BuildRequires: pkgconfig(bash-completion) >= @BASH_COMPLETION_REQUIRED@
5363 %endif
5464
5565 %if 0%{?fedora} >= 20
90100 %__make install DESTDIR=$RPM_BUILD_ROOT
91101 %find_lang %{name}
92102
93 %clean
94 rm -rf $RPM_BUILD_ROOT
95
96 %post
97 %{_bindir}/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
98 %{_bindir}/touch --no-create %{_datadir}/mime/packages &> /dev/null || :
99 %{_bindir}/update-desktop-database -q %{_datadir}/applications
100
101 %postun
102 if [ $1 -eq 0 ] ; then
103 %{_bindir}/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
104 %{_bindir}/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
105 %{_bindir}/update-mime-database %{_datadir}/mime &> /dev/null
106 fi
107 %{_bindir}/update-desktop-database -q %{_datadir}/applications
108
109 %posttrans
110 %{_bindir}/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
111 %{_bindir}/update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || :
112103
113104 %files -f %{name}.lang
114 %defattr(-,root,root,-)
115105 %doc README.md COPYING AUTHORS ChangeLog NEWS
116106 %{_bindir}/%{name}
117107 %{_bindir}/remote-viewer
122112 %{_datadir}/mime/packages/virt-viewer-mime.xml
123113 %{_mandir}/man1/virt-viewer.1*
124114 %{_mandir}/man1/remote-viewer.1*
115 %if %{with_bash_completion}
116 %{_datadir}/bash-completion/completions/virt-viewer
117 %endif
125118
126119 %changelog